Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 925 for Machines (0.12 sec)

  1. src/time/tick_test.go

    	return pending
    }
    
    func testTimerChan(t *testing.T, tim timer, C <-chan Time, synctimerchan bool) {
    	_, isTimer := tim.(*Timer)
    	isTicker := !isTimer
    
    	// Retry parameters. Enough to deflake even on slow machines.
    	// Windows in particular has very coarse timers so we have to
    	// wait 10ms just to make a timer go off.
    	const (
    		sched      = 10 * Millisecond
    		tries      = 100
    		drainTries = 5
    	)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSingleProjectIntegrationTest.groovy

            settingsFile << """
                rootProject.name = 'app'
            """
    
            buildFile << """
                apply plugin: 'cpp-application'
    
                application {
                    targetMachines = [machines.os('os-family')]
                }
            """
    
            and:
            run "visualStudio"
    
            then:
            executedAndNotSkipped(":visualStudio", ":appVisualStudioSolution", *getProjectTasks("app"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/FastFallbackTest.kt

     *
     * By orchestrating two different servers with the same port but different IP addresses, we can
     * test what OkHttp does when both are reachable, or if only one is reachable.
     *
     * This test only runs on host machines that have both IPv4 and IPv6 addresses for localhost.
     */
    @Timeout(30)
    class FastFallbackTest {
      @RegisterExtension
      val clientTestRule = OkHttpClientTestRule()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. build/README.md

    All Docker names are suffixed with a hash derived from the file path (to allow concurrent usage on things like CI machines) and a version number.  When the version number changes all state is cleared and clean build is started.  This allows the build infrastructure to be changed and signal to CI systems that old artifacts need to be deleted.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 07:20:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. src/crypto/dsa/dsa.go

    // pick the largest recommended number from table C.1 of FIPS 186-3.
    const numMRTests = 64
    
    // GenerateParameters puts a random, valid set of DSA parameters into params.
    // This function can take many seconds, even on fast machines.
    func GenerateParameters(params *Parameters, rand io.Reader, sizes ParameterSizes) error {
    	// This function doesn't follow FIPS 186-3 exactly in that it doesn't
    	// use a verification seed to generate the primes. The verification
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/base/base.go

    	// There's a small risk that the finalizer will be slow to run after a GC
    	// that expands the goal to a huge value, and that this will lead to
    	// out-of-memory.  This doesn't seem to happen; in experiments on a variety
    	// of machines with a variety of extra loads to disrupt scheduling, the
    	// worst overshoot observed was 50% past requestedHeapGoal.
    
    	metrics.Read(sample)
    	for _, s := range sample {
    		if s.Value.Kind() == metrics.KindBad {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. src/html/template/context.go

    	// stateDead marks unreachable code after a {{break}} or {{continue}}.
    	stateDead
    )
    
    // isComment is true for any state that contains content meant for template
    // authors & maintainers, not for end-users or machines.
    func isComment(s state) bool {
    	switch s {
    	case stateHTMLCmt, stateJSBlockCmt, stateJSLineCmt, stateJSHTMLOpenCmt, stateJSHTMLCloseCmt, stateCSSBlockCmt, stateCSSLineCmt:
    		return true
    	}
    	return false
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  8. ci/official/README.md

        -   Uses `pycpp.sh`, `code_check_changed_files.sh`
    
    These "env" files match up with an environment matrix that roughly covers:
    
    -   Different Python versions
    -   Linux, MacOS, and Windows machines (these pool definitions are internal)
    -   x86 and arm64
    -   CPU-only, or with NVIDIA CUDA support (Linux only), or with TPUs
    
    ## How to Test Your Changes to TensorFlow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/netbios/NbtAddress.java

    /** 
     * A Hybrid node tries to resolve a name using the nameserver first. If
     * that fails use the broadcast address. This is the default if a nameserver
     * is provided. This is the behavior of Microsoft Windows machines.
     */ 
    
        public static final int H_NODE = 3;
    
        static final InetAddress[] NBNS = Config.getInetAddressArray( "jcifs.smb1.netbios.wins", ",", new InetAddress[0] );
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  10. src/syscall/syscall_freebsd.go

    	if basep == nil || unsafe.Sizeof(*basep) == 8 {
    		return getdirentries(fd, buf, (*uint64)(unsafe.Pointer(basep)))
    	}
    	// The syscall needs a 64-bit base. On 32-bit machines
    	// we can't just use the basep passed in. See #32498.
    	var base uint64 = uint64(*basep)
    	n, err = getdirentries(fd, buf, &base)
    	*basep = uintptr(base)
    	if base>>32 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top