Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for facts (0.04 sec)

  1. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        // way for it to return a false negative would be for the target value to jump around in the map
        // such that none of the subsequent iterations observed it, despite the fact that at every point
        // in time it was present somewhere int the map. This becomes increasingly unlikely as
        // CONTAINS_VALUE_RETRIES increases, though without locking it is theoretically possible.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	}
    
    	// For barFirst, we first create it with key /pods/first/bar and then we update
    	// it by changing its spec.nodeName. The point of doing this is to be able to
    	// test that if a pod with key /pods/first/bar is in fact returned, the returned
    	// pod is the updated one (i.e. with spec.nodeName changed).
    	preset[0].storedObj = &example.Pod{}
    	if err := store.GuaranteedUpdate(ctx, computePodKey(barFirst), preset[0].storedObj, true, nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    			// we're using atomic mode (and not compiling
    			// sync/atomic package itself). See #18486 and #57445.
    			// Note that this needs to be done prior to any of the
    			// builderTest invocations below, due to the fact that
    			// a given package in the 'pkgs' list may import
    			// package Q which appears later in the list (if this
    			// happens we'll wind up building the Q compile action
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    * A `FileCollection` or `FileTree` — all files in the collection are included in the copy
    * A task — the files or directories that form a task's <<incremental_build.adoc#sec:task_inputs_outputs,defined outputs>> are included
    
    In fact, `from()` accepts all the same arguments as link:{groovyDslPath}/org.gradle.api.Project.html#org.gradle.api.Project:files(java.lang.Object++[]++)[Project.files(java.lang.Object...)] so see that method for a more detailed list of acceptable types.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  5. src/testing/testing.go

    //
    // When fuzzing is disabled, the fuzz target is called with the seed inputs
    // registered with F.Add and seed inputs from testdata/fuzz/<Name>. In this
    // mode, the fuzz test acts much like a regular test, with subtests started
    // with F.Fuzz instead of T.Run.
    //
    // See https://go.dev/doc/fuzz for documentation about fuzzing.
    //
    // # Skipping
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. src/runtime/mheap.go

    			// The scavenging algorithm requires the heap lock to be dropped so it
    			// can acquire it only sparingly. This is a potentially expensive operation
    			// so it frees up other goroutines to allocate in the meanwhile. In fact,
    			// they can make use of the growth we just created.
    			todo := growth
    			if overage := uintptr(retained + uint64(growth) - goal); todo > overage {
    				todo = overage
    			}
    			if todo > bytesToScavenge {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  7. src/cmd/go/go_test.go

    	tg.wantNotStale("p1", "", "./testgo list claims p1 is stale, incorrectly, before any changes")
    
    	// Changing mtime of runtime/internal/sys/sys.go
    	// should have no effect: only the content matters.
    	// In fact this should be true even outside a release branch.
    	sys := tg.path("goroot/src/runtime/internal/sys/sys.go")
    	tg.sleep()
    	restore := addVar(sys, 0)
    	restore()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top