Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for sticky (0.33 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            workingDir = null;
            projectDir = null;
            buildScript = null;
            settingsFile = null;
            ignoreMissingSettingsFile = false;
            // ignoreCleanupAssertions is intentionally sticky
            // ignoreCleanupAssertions = false;
            quiet = false;
            taskList = false;
            dependencyList = false;
            executable = null;
            javaHome = null;
            environmentVars.clear();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    type bodyEOFSignal struct {
    	body         io.ReadCloser
    	mu           sync.Mutex        // guards following 4 fields
    	closed       bool              // whether Close has been called
    	rerr         error             // sticky Read error
    	fn           func(error) error // err will be nil on Read io.EOF
    	earlyCloseFn func() error      // optional alt Close func used if io.EOF not seen
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/devicemanager/manager_test.go

    					// Such as: `throw("Concurrent map iteration and map writing")`.
    					// When this test ends quietly, no data race error occurs.
    					// Otherwise, the test process exits automatically and prints all goroutine call stacks.
    					test.testfunc(mimpl)
    				}
    			}()
    			wg.Wait()
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    	//
    	// However, N tends to be small, and most candidate sets will include only one
    	// candidate module (so they will be resolved in the first iteration), so for
    	// now we'll stick to the simple O(N²) approach.
    
    	resolved := 0
    	for {
    		prevResolved := resolved
    
    		// If we found modules that were too new, find the max of the required versions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Kotlin 1.9 dropped support for Kotlin language and API level 1.3.
    If you build Gradle plugins written in Kotlin with this version of Gradle and need to support Gradle <7.0 you need to stick to using the Kotlin Gradle Plugin <1.9.0 and configure the Kotlin language and API levels to 1.3.
    See the <<compatibility.adoc#compatibility, Compatibility Matrix>> for details about other versions.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top