Geometry.Net - the online learning center
Home  - Basic_P - Profiling
e99.com Bookstore
  
Images 
Newsgroups
Page 3     41-60 of 86    Back | 1  | 2  | 3  | 4  | 5  | Next 20
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  

         Profiling:     more books (100)
  1. Profiling Political Leaders: Cross-Cultural Studies of Personality and Behavior
  2. Profiling the European Citizen: Cross-Disciplinary Perspectives
  3. Careers in Criminal Profiling (Careers in Forensics) by Janey Levy, 2008-01-30
  4. Criminal Profiling: Principles and Practice by Richard N. Kocsis, 2010-11-02
  5. Against Prediction: Profiling, Policing, and Punishing in an Actuarial Age by Bernard E. Harcourt, 2006-12-15
  6. Offender Profiling: Theory, Research and Practice (Wiley Series in Psychology of Crime, Policing and Law)
  7. Racial Profiling and Borders: International, Interdisciplinary Perspectives
  8. Mapping Murder: The Secrets of Geographical Profiling by David Canter, 2007-10-25
  9. Valgrind 3.3 - Advanced Debugging and Profiling for GNU/Linux applications by J Seward, N Nethercote, et all 2008-03-01
  10. The Art of Profiling: Reading People Right the First Time by Dan Korem, 1997-10
  11. Investigative Psychology: Offender Profiling and the Analysis of Criminal Action by David Canter, Donna Youngs, 2009-11-23
  12. Vulture: Profiling Sadistic Serial Killers by Deborah Schurman-Kauflin, 2005-11-30
  13. Hit and Lead Profiling: Identification and Optimization of Drug-like Molecules (Methods and Principles in Medicinal Chemistry)
  14. Eliminating Racial Profiling in School Discipline: Cultures in Conflict by Martha R. Bireda, 2002-06

41. Chapter 8 Continued: Performance Analysis
The Java® 2 platform software provides much better profiling The heap analysis tool, as its name implies, lets you analyze profile reports of the heap.
http://java.sun.com/developer/onlineTraining/Programming/JDCBook/perf3.html
Skip to Content Sun Java Solaris ... Advanced Programming for the Java 2 Platform
Chapter 8 Continued: Performance Analysis
Print-friendly Version
Training Index
CONTENTS Another way to improve performance is with performance analysis. Performance analysis is looking at program execution to pinpoint where bottlenecks or other performance problems such as memory leaks might occur. Once you know where potential touble spots are, you can change your code to remove or reduce their impact. Profiling The Java Virtual Machines (VMs) have had the ability to provide simple profile reports since Java Development Kit (JDK) 1.0.2. However, the information they provided was limited to a sorted list of method calls a program had called. Download the Heap Analysis tool: Analyze a Program To analyze the program included in the demo/jfc/Table directory in the Java 2 platform download, you need to generate a profile report. The simplest report to generate is a text profile. To generate a text profile, run the application with the -Xhprof parameter. In the final release of the Java 2 platform software, this option was renamed

42. Reason Magazine - The Roots Of Racial Profiling
An article by Gene Callahan and William Anderson about the practice, the investigative shift from case probability to class probability, and the role of
http://www.reason.com/news/show/28138.html
@import "/media/css/tf.css"; /* layout - screen only*/ @import "/media/css/reason.css"; /* layout - screen only*/ Reason Magazine
Site Search
Site comments/questions:
Mike Alissi
Media Inquiries and Reprint Permissions:
Chris Mitchell
3415 S. Sepulveda Blvd. Suite 400 Los Angeles, CA 90034
The Roots of Racial Profiling
Why are police targeting minorities for traffic stops? William Anderson and Gene Callahan Print Edition It is early in the morning, and the well-dressed young African-American man driving his Ford Explorer on I-75 sees the blue lights of the Georgia State Patrol car behind him. The officer pulls behind the sport utility vehicle and the young man's heart begins to sink. He is on his way to Atlanta for a job interview. The stop, ostensibly for speeding, should not take long, he reasons, as the highway patrol officer walks cautiously toward the Explorer. But instead of simply asking for a driver's license and writing a speeding ticket, the trooper calls for backup. Another trooper soon arrives, his blue lights flashing as well. The young man is told to leave his vehicle, as the troopers announce their intention to search it. "Hey, where did you get the money for something like this?" one trooper asks mockingly while he starts the process of going through every inch of the Explorer. Soon, an officer pulls off an inside door panel. More dismantling of the vehicle follows. They say they are looking for drugs, but in the end find nothing. After ticketing the driver for speeding, the two officers casually drive off. Sitting in his now-trashed SUV, the young man weeps in his anger and humiliation.

43. Chapter 6. Profiling
Glasgow Haskell comes with a time and space profiling system. Its purpose is to help you improve your understanding of your program s execution behaviour,
http://haskell.org/ghc/docs/latest/html/users_guide/profiling.html
Chapter 6. Profiling Prev Next
Chapter 6. Profiling
Table of Contents
6.1. Cost centres and cost-centre stacks
6.1.1. Inserting cost centres by hand 6.1.2. Rules for attributing costs
6.2. Compiler options for profiling ...
6.6.4. Caveats and Shortcomings of Haskell Program Coverage Glasgow Haskell comes with a time and space profiling system. Its purpose is to help you improve your understanding of your program's execution behaviour, so you can improve it. Profiling a program is a three-step process:
  • Re-compile your program for profiling with the -prof option, and probably one of the -auto or -auto-all options. These options are described in more detail in Run your program with one of the profiling options, eg. +RTS -p -RTS . This generates a file of profiling information. Examine the generated profiling information, using one of GHC's profiling tools. The tool to use will depend on the kind of profiling information generated.
  • 6.1. Cost centres and cost-centre stacks
    GHC's profiling system assigns costs to cost centres . A cost is simply the time or space required to evaluate an expression. Cost centres are program annotations around expressions; all costs incurred by the annotated expression are assigned to the enclosing cost centre. Furthermore, GHC will remember the stack of enclosing cost centres for any given expression at run-time and generate a call-graph of cost attributions.

    44. ASP Profiling Component
    Guessing speed of applications is never a good idea you need to have a performance baseline first. Use the Profiler component to establish that baseline
    http://www.alphasierrapapa.com/IisDev/Components/Profiler/
    IisDev Home
    News

    Notification Service

    Articles Code Samples
    ASP.NET

    Security

    Free Components
    ...
    CodeLook Program

    Service Links
    Advertising

    Contact us
    Search IISDEV:
    ASP Profiling Component - free
    Last updated: First release, MFC Version Guessing speed improvements of one piece of code to another is at best lost time. If you can't measure it, it isn't worth the effort. Just take into account database access: which cursor to choose for maximum speed? Or changing the order of For loops - which one is really faster and does it pay off to change it? Take the guessing out of your decisions: measure the runtime of your code (=profile it!). The component presented in this article helps you by providing functions to do exactly this-with two different methods (one less exact but well-known, one much more exact, however, less known). As there are only four functions, we dive into programming immediately. A small code snippet shows you how to measure the runtime of your code using the component: This script uses the four functions implemented in the component: the GetTickCount GetTickDifference pair and the other two you are encouraged to use because of the much higher resolution: ProfileStart and ProfileStop (fyi, these use QueryPerformanceCounter). Just to show you the difference in resolution, I have provided the numbers I got from running the component with the above code:

    45. WorkKeys, ACT : Job Profiling
    WorkKeys job profiling An ACTtrained facilitator works your employees to complete each job analysis and define the tasks and skills needed to perform a
    http://www.act.org/workkeys/analysis/profiling.html
    EDUCATION HOME WORKPLACE HOME
    The WorkKeys System Assessments Job Analysis Training About WorkKeys Case Studies Contact WorkKeys
    Job Profiling
    With ACT's Job Profiling process , an ACT-trained facilitator works collaboratively with groups of your employees to complete each job analysis. Job incumbents serve as the subject matter experts who define the tasks and skills needed to perform a specific job successfully. Job profiling consists of a task analysis to select the tasks most critical to a job and skill analysis to identify the skills and skill levels required to enter the job and perform effectively. By matching the job profile information with individual scores on the WorkKeys assessments, you can make reliable decisions about hiring, training, and program development needs. Job Profiling
    • Supports hiring, promotion, and training decisions Uses focus groups and ACT-trained facilitators Offers a proven methodology and reliable results Uses ACT's SkillPro software Meets requirements adopted by the EEOC
    Find more information about job profiling in our WorkKeys Job Aid Series publications.

    46. Criminal Profiling Agency: Criminal Profiler Pat Brown
    Criminal profiler Pat Brown offers criminal profiling advice concerning suspicious deaths, workplace violence, stalkers, serial killers, pedophiles,
    http://www.patbrownprofiling.com/
    Providing crime scene analysis, behavioral profiling, and life advice to attorneys, producers, businesses and individuals ABOUT biography
    articles

    book
    SERVICES profiling consultation PRESS media appearances
    in the news

    quote pat brown
    FEATURES let's face it!
    online radio show

    you be the profiler!
    CONTACT pat brown
    pat brown's publicist

    meet the staff
    Study Criminal Profiling and Investigative Analysis with Criminal Profiler Pat Brown! Starting May 5, 2008 at Excelsior College, the first of the five courses – Forensic Pathology CJ360 Criminal Profiling Student Information HOME
    Catch Pat Brown every week on Nancy Grace

    Welcome to The Pat Brown Criminal Profiling Agency! If you need critical advice from a criminal profiler concerning a loved one’s death (equivocal death and crime scene analysis), workplace violence (threat assessment), or personal and relationship issues (including stalking and domestic abuse), you will find the services here affordable and cost effective. If you want to learn more about profiling crimes and how to keep yourself and your family safe from pedophiles, serial killers, stalkers and dangerous predators, there is a lot of instructive information for free on this web site if you will take the time to browse and read. Are you a homicide investigator? You can get pro bono criminal profiling assistance with your casework through my nonprofit agency

    47. Racial Profiling In An Age Of Terrorism
    It is against this historical backdrop that we encounter post9/11 efforts to combat terrorist acts on American soil, and examine the role that race should
    http://www.scu.edu/ethics/publications/ethicalperspectives/profiling.html
    About the Center Staff Search
    • Ethics Home Page Focus Areas
      Racial Profiling in an Age of Terrorism
      By Peter Siggins
      Earl Warren, 14th Chief Justice of the United States, has become an icon to generations of Americans who believe in the gains for civil rights and personal freedom that were the hallmark of his tenure on the Supreme Court. In 1940, Earl Warren was the attorney general of California, and he delivered a speech where he cautioned against bigotry based upon national origin. He said, It should be remembered that practically all aliens have come to this country because they like our land and our institutions better than those from whence they came. They have attached themselves to the life of this country in a manner that they would hate to change and the vast majority of them will, if given a chance, remain the same good neighbors that they have been in the past regardless of what difficulties our nation may have with the country of their birth. History proves this to be true . . . .We must see to it that no race prejudices develop and that there are no petty persecutions of law-abiding people. Then, in the wake of the attack on Pearl Harbor, by January and February 1942, Attorney General Warren directed the preparation of maps showing all Japanese-owned lands in California, called upon the state's district attorneys to enforce the Alien Land Law against Japanese landowners, and said the presence of Japanese in California provided the opportunity for a repetition of Pearl Harbor. And by March he advocated the exclusion of all Japanese from within 200 miles of the California coast.

    48. EPodunk - Profiling 46,000 Cities, Villages, Towns, Townships And Podunks Across
    Community profiles, demographics and vintage post cards of cities, towns and villages across the country.
    http://www.epodunk.com/
    document.write(''); CITIES COUNTIES AIRPORTS CEMETERIES ... NEWSPAPERS USER BLOGS Jay is a good place to start a life REVIEWS Great teachers, bad cops in Oxford CITY TOURS See the sites in Sacramento MUCKETY! New web site maps connections REAL ESTATE ABC Understand local real estate trends FESTIVALS In October: Alabama Coastal BirdFest in Fairhope EPODUNK BLOG Nightlife abounds at historic cemeteries
    Mount Rushmore
    . (Photo submitted by ePodunk user KeithL Ancestry maps
    College towns
    Liberal cities ...
    More top 10 lists
    BROWSE COMMUNITY PROFILES AL AK AZ AR ... WY BROWSE COUNTY PROFILES AL AK AZ AR ... WY
    SEARCH FOR A TOWN!
    ANY CITY OR TOWN - ANYWHERE!
    State: Alabama Alaska Arizona Arkansas California Colorado Connecticut Delaware District of Columbia Florida Georgia Hawaii Idaho Illinois Indiana Iowa Kansas Kentucky Louisiana Maine Maryland Massachusetts Michigan Minnesota Mississippi Missouri Montana Nebraska Nevada New Hampshire New Jersey New Mexico New York North Carolina North Dakota Ohio Oklahoma Oregon Pennsylvania Rhode Island South Carolina South Dakota Tennessee Texas Utah Vermont Virginia Washington West Virginia Wisconsin Wyoming Include former names
    Advanced search
    Cemetery search POST CARDS Send a vintage post card
    Capitol
    Frankfort, KY

    49. Monitor Profiling
    The answer, put simply, is profile your monitor. Unless your monitor shows you accurate colours with proper brightness and contrast you can never hope to
    http://www.luminous-landscape.com/tutorials/monitor_profiling.shtml
    Home
    What's New

    Store

    Discussion Forum
    ...
    Endowment Fund

    Search the site:
    Content on this site:
    Michael Reichmann
    The Luminous Landscape Guide to

    Adobe Camera Raw

    7hr 45 min
    $39.95 Download Video Tutorial ... Only $14.95
    Monitor Profiling and Calibration
    This subject is featured in Issue #4 of The Luminous Landscape Video Journal
    Storm Over Mt. Hillers, Utah — April, 2001
    One of the most frequent question that I’m asked is, “My prints don’t look like what I see on my monitor. What should I do?” The answer, put simply, is profile your monitor . Unless your monitor shows you accurate colours with proper brightness and contrast you can never hope to achieve simple and straightforward colour printing. This is not optional in my opinion. Anyone who does photographic image processing on their desktop must calibrate and profile their system. Without doing so ( unless you're very lucky and all the variables cancel each other out ) you'll be sentenced to years of frustration trying to get your prints to look like your screen. There are several things that affect what you see on your monitor's screen;

    50. Lymphoma/Leukemia Molecular Profiling Project (LLMPP)
    Lymphoma/Leukemia Molecular profiling Project. Home. Welcome to the website companion to Alizadeh et al. Nature 403 503511 (2000).
    http://llmpp.nih.gov/lymphoma/

    Home

    Return to the LLMPP Homepage
    Explorer

    Interactively explore the figures
    Search

    Search the LLMPP Microarray dataset
    Figures

    View figures from the paper
    Analysis

    Data analysis methods and links Supplement Help Get help with interpretation of the data Download Download the primary data Authors List of authors
    Lymphoma/Leukemia Molecular Profiling Project
    Home
    Welcome to the website companion to Alizadeh et al. Nature 403: 503-511 (2000) The accompanying by Anton Berns from the same issue is also available here. Here you can find enhanced views of data presented in the paper, as well as additional enhanced content not found in the paper. Please make a selection from the following:
    • Explore figure details using GeneExplorer , a web application for online browsing of the clustered gene expression data A search function over the complete dataset, including BLAST Figures from the paper and web exclusive supplemental material Data analysis methods employed, along with relevant links. Web Supplement containing additional figures Help on how to interpret the figures Download the primary data The Authors involved in this publication
    • (This website is still under construction)
    Home Explore Search Figures ... Authors For questions and/or comments on this website, please send e-mail to

    51. Monitor Calibration And Profiling
    Monitor calibration and profiling, hardware and software reviews, and techniques.
    http://www.drycreekphoto.com/Learn/monitor_calibration.htm
    Monitor Calibration and Profiling Home Color Management Color Spaces ICC Profiles ... Resources
    Monitor Calibration
    Recommended methods and monitor calibration tool reviews.
    Monitor Calibration Methods
    If you can not trust the colors displayed on your monitor, all other color management is a waste of time. Calibrating and profiling your monitor should, therefore, be your first priority. Luckily, it is the easiest part of the image capture, editing, and printing system to profile. The cost to do this ranges from free to expensive. If color accuracy and the ability to match your prints to your monitor are important to you, a decent hardware calibration system is essential. With a little work you can get good color from your monitor. If digital photography is your business, or you simply want the best colors you can get, the expense of a high quality calibration system is more than justified. The most basic calibration tool, other than ignoring calibration altogether, is Adobe Gamma bottom of this page. Hardware based monitor calibrators provide far more accurate and repeatable results. The results of our ongoing tests and reviews of monitor calibrators is found here If you have a LCD screen and your calibration system allows using the native white point, do so. This preserves the maximum possible color range on LCD monitors.

    52. ONLamp.com -- Profiling And Optimizing Python
    Dec 15, 2005 Jeremy Jones shows how to use the Python profiler to find and fix bottlenecks in your Python programs.
    http://www.onlamp.com/pub/a/python/2005/12/15/profiling.html
    Sign In/My Account
    View Cart Articles Weblogs ... Subscribe to Newsletters
    Profiling and Optimizing Python
    by Jeremy Jones
    Most of the time, code that we write doesn't have to perform as fast as if we wrote it in C. Most of the time, the first pass at writing it is "fast enough" and we don't have to optimizebut there are times when a piece of code just has to meet a certain standard of performance. For those "it's gotta run like a scalded dog" moments, the Python profiler may lend some assistance. The Python standard library provides three libraries for performing code profiling profile hotshot , and timeit . The type of profiling performed in these modules involves tracing method and function calls and recording how long they took to run. profile provides detailed profiling information on all functions and methods in a code base, which are called at a specific runtime. hotshot is a replacement for the profile module. timeit provides less detailed profiling information for smaller pieces of code, where "less detailed" comprises overall execution time.
    Profiling Code
    One of the frequently repeated mantras I hear from Python veterans is, "Premature optimization is the root of all evil" (a quote from Donald Knuth, which apparently originated from Tony Hoare). The Pythonic approach to writing code that performs acceptably is:

    53. HP DCPI Tool
    The HP Digital Continuous profiling Infrastructure (DCPI) Advanced Development The Continuous profiling Infrastructure maintains a database of profile
    http://h30097.www3.hp.com/dcpi/
    summary of site-wide JavaScript functionality United States-English Contact HP Search: Tru64 UNIX site All of HP
    HP DCPI tool
    DCPI
    Site information
    Send us your comments
    Installation
    Download DCPI Installing DCPI
    Product information
    Frequently asked questions Documentation Publications Update, June 2004 DCPI kit V4.0.1 for Tru64 UNIX available for download
    Before you install

    Frequently asked questions

    Documentation
    Overview The HP Digital Continuous Profiling Infrastructure (DCPI) Advanced Development Kit for HP Alpha platforms permits continuous low-overhead profiling of entire systems, including the kernel, user programs, drivers, and shared libraries. The system is efficient enough that it can be left running all the time, allowing it to be used to drive online profile-based optimizations for production systems. The Continuous Profiling Infrastructure maintains a database of profile information that is incrementally updated for every executable image that runs. A suite of profile analysis tools analyzes the profile information at various levels. At one extreme, the tools show what fraction of cpu cycles were spent executing the kernel and each user program. At the other extreme, the tools show how long a particular instruction stalls on average, for example, because of a D-cache miss. If you would like to be notified of new releases and other developments, please send your full name, affiliation, mailing address, and preferred email address to to be added to our mailing list.

    54. The Political Profiling Of Elected Democratic Officials: When Rhetorical Vision
    The current Bush Republican Administration appears to be the first to have engaged in political profiling. The paper calls for new federal laws that would
    http://www.epluribusmedia.org/columns/2007/20070212_political_profiling.html

    op-ed
    columnists The Political Profiling of Elected Democratic Officials: When Rhetorical Vision Participation Runs Amok
    Donald C. Shields and John F. Cragan 18 February 2007 Our ongoing study of the Bush Justice Department (to be published in 2009) investigates the implications of the Bush/Ashcroft/Gonzales Justice Department's blended religious -fundamentalist and neo-conservative rhetorical vision. The study views the impact of the Justice Department's vision on the fight against public corruption and reveals the non-proportionate political profiling of elected Democratic officials.
    We presented the preliminary data through August 2004 at the Southern Speech Communication Annual meeting in April 2005 in Baton Rouge and as a refereed panel paper with data through December 2004 at the November 2005 annual meeting of the National Communication Association. We compare political profiling to racial profiling by presenting the results (January 2001 through December 2006) of the U.S. Attorneys' federal investigation and/or indictment of 375 elected officials. The distribution of party affiliation of the sample is compared to the available normative data (50% Dem, 41% GOP, and 9% Ind.). Data* indicate that the offices of the U.S. Attorneys across the nation investigate seven (7) times as many Democratic officials as they investigate Republican officials, a number that exceeds even the racial profiling of African Americans in traffic stops.

    55. Profiling The Canon D30  In Linear Raw Mode
    This tutorial endeavours to explain the reasons underlying the colour shifts in the highlight region, and will also present a camera profiling method that
    http://www.computer-darkroom.com/d30-profiling/d30_profile.htm
    Profiling the Canon EOS D30/60
    Raw Mode
    By Ian Lyons
    A Computer Darkroom Tutorial W ith current digital camera technology we find sensor behaviour at the extreme highlight end of the scale can be a lot less well-behaved than we would ideally like. The problem is actually one of sensor non-linearity, which often manifests itself as colour shifts in highlights. These colour shifts very often prove impossible to remove thus rendering otherwise acceptable images as unusable.
    Introduction This tutorial endeavours to explain the reasons underlying the colour shifts in the highlight region, and will also present a camera profiling method that provides a greater degree of success than can be obtained using traditional methods. The image shown below is typical in appearance to those many of you will already be familiar when working with the Linear Raw images; i.e. it's dark and ugly. A quick check using the Photoshop eye-dropper tools shows the maximum RGB values close to Level 220, although one channel (green) is about one level lower than the other two.
    Figure 1 - Linear Raw Capture of Original
    The Levels histogram for the above linear raw image is shown below (Figure 2). In theory, the original was correctly exposed, with the camera histogram falling just short of highlight cut-off point.

    56. Performance Profiling Tools For WPF
    WPF provides a suite of performance profiling tools that allow you to analyze the runtime behavior of your application and determine the types of
    http://msdn2.microsoft.com/en-us/library/aa969767.aspx
    var jsDomain='http://i2.msdn.microsoft.com';var jsBuildNumber='-bn1847.0'; United States - English Argentina (Espa±ol) Australia (English) Brasil (Portuguªs) ... Microsoft.com
    Product Families
    Office Windows Windows Server System Windows Mobile ... MSN
    Resources
    Microsoft Update Office Update Download Center Security ... Volume Licensing
    About Microsoft
    Company Information Investor Relations PressPass for journalists
    Popular Places
    MSDN (Developers) TechNet (IT Pros) Microsoft At Home Microsoft At Work ... Microsoft.com site map
    Popular Searches
    Templates ActiveSync Clip art
    Popular Downloads
    Windows Defender Beta 2 DirectX End-User Runtime More popular downloads Welcome Sign In Search MSDN Search Microsoft.com Live Search ... MSDN Home .NET Framework Developer Center Home Library Learn Downloads ... Community Printer Friendly Version Send Add Content... Click to Rate and Give Feedback Give feedback on this content MSDN Please Wait MSDN Library Please Wait .NET Development Please Wait .NET Framework Please Wait Tools (.NET Framework Technologies) Please Wait Windows Presentation Foundation Too...

    57. Digital Mars - Trace Dynamic Profiling
    Such dynamic profiling information can then be processed to yield an order in which functions should be placed by the linker.
    http://www.digitalmars.com/ctg/trace.html
    Home Search CTG RTL ... STL Last update Sat Apr 8 23:54:06 2006
    Compiling
    Compiling Code

    C Implementation

    C++ Implementation

    Language Extensions
    ...
    Runtime Messages

    Linking
    Optlink

    Switches

    Module Definition Files
    Operation and Design ... Error Messages Win32 Programming Win32 Programming DOS and Win16 Programming Memory Models 16 Bit Pointer Types and Type Modifiers Handle Pointers ... Win16 Prolog/Epilog C/C++ Extensions Contract Programming debug statement debug declaration Dynamic Profiling ... Embedding C in HTML Tools BCC CHMOD CL COFFIMPLIB ... WHEREIS Porting to DMC++ Switching to DMC++ from Microsoft from Borland Porting Guide
    Trace Dynamic Profiling
    Page swapping can cripple an otherwise fast program. Normally, code is written in such a manner as to group together functions that are conceptually related, not those that call each other. To minimize page swapping, functions must be grouped together that call each other a lot at runtime. Grouping functions that call each other has other benefits, even on machines that have sufficient memory to run the application without swapping:
    • Called functions will be more likely to be in the memory cache already.

    58. DCB - DIVISION OF COMPUTATIONAL BIOSCIENCE
    Over the past decade, Molecular profiling (MP) has emerged as a dynamic new discipline, capable of generating a global view of mRNA, protein patterns,
    http://cgap-mf.nih.gov/
    The Division of Computational Bioscience (DCB) engages in computational science and engineering collaborations with the NIH Intramural Research Program, and provides computational tools and resources for the NIH biomedical research staff. DCB conducts its research and development program through the following organizations: the Office of Director (OD), the High Performance Computing and Informatics Office (HPCIO), the Computational Bioscience and Engineering Laboratory (CBEL), the Center for Molecular Modeling (CMM), Imaging Sciences Laboratory (ISL) and the Mathematical and Statistical Computing Laboratory (MSCL). Division of Computational Bioscience
    Center for Information Technology
    National Institutes of Health
    Bethesda, Maryland 20892
    E-mail:
    Home
    NIH CIT Search ... Privacy National Institutes of Health Department of Health and Human Services

    59. The Java Community Process(SM) Program - JSRs: Java Specification Requests - Det
    The specification will be for APIs to extract profiling information from a running JavaTM virtual machine. Both time and memory profiling will be
    http://jcp.org/en/jsr/detail?id=163

    60. FindLaw Legal News - Lawyer News, Attorney News, Law News, Trial News, Bar News
    The muchmaligned profiler is the perfect illustration of this point. People, and some courts, have a very negative reaction to profiling selecting
    http://writ.news.findlaw.com/books/reviews/20040402_herrington.html
    FindLaw For the Public For Small Business For Legal Professionals ... Supreme Court Search Writ Front Page Special Coverage
    Hurricane Katrina

    Enron

    Tribunals

    Terrorism

    Archives
    Columnists

    Guest Columnists

    Law Students
    Book Reviews ... Email This
    Can Stereotyping, and Profiling, Ever Be Good Things?
    A Review of Frederick Schauer's New Book on the Virtues of Generalization By MATT HERRINGTON Friday, Apr. 02, 2004 Harvard's Frederick Schauer, author of Profiles, Probabilities and Stereotypes , sides with Burke and is the champion of, as he puts it, painting with a broad brush. I am generally against the wittingly iconoclastic, so I came to this book with some considerable skepticism. But Schauer is the real deal. This is a very provocative and interesting book. It is ideal book club material. Framing the Philosophical Issues Schauer Discusses Let's say our goal in arranging our society's affairs is complete (or, as one sometimes reads, thick) justice. It would be nice to have a perfectly just philosopher king (or queen) who would resolve every tough question that arose with incisive and thoughtful analysis. But such people are hard to find, and the transaction costs of such individuated decision making are considerable, and there is a lot to be said for knowing in advance how things will work out. Thus, humans have tended to adopt rules - and a rule is just one name to give to a generalization. But it is in the nature of rules that there will be circumstances where the rule produces a suboptimal, or even unjust, result.

    A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  

    Page 3     41-60 of 86    Back | 1  | 2  | 3  | 4  | 5  | Next 20

    free hit counter