Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for idea (0.06 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //
    // Such code is NOT meant to be used by a user directly, and is subject
    // to CHANGE WITHOUT NOTICE.  Therefore DO NOT DEPEND ON IT in a user
    // program!
    //
    // Acknowledgment: Google Test borrowed the idea of automatic test
    // registration from Barthelemy Dagenais' (******@****.***)
    // easyUnit framework.
    
    #ifndef GTEST_INCLUDE_GTEST_GTEST_H_
    #define GTEST_INCLUDE_GTEST_GTEST_H_
    
    #include <limits>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    // 0x7F (stopped), or a signal number that caused an exit.
    // The 0x80 bit is whether there was a core dump.
    // An extra number (exit code, signal causing a stop)
    // is in the high bits.  At least that's the idea.
    // There are various irregularities.  For example, the
    // "continued" status is 0xFFFF, distinguishing itself
    // from stopped via the core dump bit.
    
    const (
    	mask    = 0x7F
    	core    = 0x80
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    		return false
    	}
    }
    
    // cloneToExternal takes the existing object file symbol (symIdx)
    // and creates a new external symbol payload that is a clone with
    // respect to name, version, type, relocations, etc. The idea here
    // is that if the linker decides it wants to update the contents of
    // a symbol originally discovered as part of an object file, it's
    // easier to do this if we make the updates to an external symbol
    // payload.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (MOVBstore [off] {sym} ptr (MOVBQZX x) mem) => (MOVBstore [off] {sym} ptr x mem)
    
    // fold constants into memory operations
    // Note that this is not always a good idea because if not all the uses of
    // the ADDQconst get eliminated, we still have to compute the ADDQconst and we now
    // have potentially two live values (ptr and (ADDQconst [off] ptr)) instead of one.
    // Nevertheless, let's do it!
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  5. src/html/template/exec_test.go

    	{"nil action", "{{nil}}", "", nil, false},
    
    	// Ideal constants.
    	{"ideal int", "{{typeOf 3}}", "int", 0, true},
    	{"ideal float", "{{typeOf 1.0}}", "float64", 0, true},
    	{"ideal exp float", "{{typeOf 1e1}}", "float64", 0, true},
    	{"ideal complex", "{{typeOf 1i}}", "complex128", 0, true},
    	{"ideal int", "{{typeOf " + bigInt + "}}", "int", 0, true},
    	{"ideal too big", "{{typeOf " + bigUint + "}}", "", 0, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  6. src/text/template/exec_test.go

    	{"nil action", "{{nil}}", "", nil, false},
    
    	// Ideal constants.
    	{"ideal int", "{{typeOf 3}}", "int", 0, true},
    	{"ideal float", "{{typeOf 1.0}}", "float64", 0, true},
    	{"ideal exp float", "{{typeOf 1e1}}", "float64", 0, true},
    	{"ideal complex", "{{typeOf 1i}}", "complex128", 0, true},
    	{"ideal int", "{{typeOf " + bigInt + "}}", "int", 0, true},
    	{"ideal too big", "{{typeOf " + bigUint + "}}", "", 0, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof_test.go

    	// Check that we got a reasonable number of samples.
    	// We used to always require at least ideal/4 samples,
    	// but that is too hard to guarantee on a loaded system.
    	// Now we accept 10 or more samples, which we take to be
    	// enough to show that at least some profiling is occurring.
    	if ideal := uintptr(duration * 100 / time.Second); samples == 0 || (samples < ideal/4 && samples < 10) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                                        e.getModelId(), e.getMessage(), pomFile != null ? pomFile.toFile() : null, e);
                            }
                            // validation error, continue project building and delay failing to help IDEs
                            error = e;
                        }
    
                        modelProblems = result.getProblems();
    
                        initProject(project, Collections.emptyMap(), result);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge.go

    	s.g = getg()
    
    	s.timer = new(timer)
    	f := func(s any, _ uintptr, _ int64) {
    		s.(*scavengerState).wake()
    	}
    	s.timer.init(f, s)
    
    	// input: fraction of CPU time actually used.
    	// setpoint: ideal CPU fraction.
    	// output: ratio of time worked to time slept (determines sleep time).
    	//
    	// The output of this controller is somewhat indirect to what we actually
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

        private static final String ANSI_RESET = "\u001B\u005Bm";
    
        private void configure(CliRequest cliRequest) throws Exception {
            //
            // This is not ideal but there are events specifically for configuration from the CLI which I don't
            // believe are really valid but there are ITs which assert the right events are published so this
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top