Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 280 for because3 (0.16 sec)

  1. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

      @CheckForNull
      private Listener clearListeners(@CheckForNull Listener onto) {
        // We need to
        // 1. atomically swap the listeners with TOMBSTONE, this is because addListener uses that
        //    to synchronize with us
        // 2. reverse the linked list, because despite our rather clear contract, people depend on us
        //    executing listeners in the order they were added
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  2. guava/src/com/google/common/util/concurrent/AbstractFuture.java

      @CheckForNull
      private Listener clearListeners(@CheckForNull Listener onto) {
        // We need to
        // 1. atomically swap the listeners with TOMBSTONE, this is because addListener uses that
        //    to synchronize with us
        // 2. reverse the linked list, because despite our rather clear contract, people depend on us
        //    executing listeners in the order they were added
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    However, because all artifacts are verified, such artifacts would in general easily be discovered by you, because they would cause a checksum verification failure (checksums would be _missing_ from verification metadata).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge.go

    // exceed the memory limit or whenever the heap grows in size, for some
    // definition of heap-growth. The intuition behind this second reason is that the
    // application had to grow the heap because existing fragments were not sufficiently
    // large to satisfy a page-level memory allocation, so we scavenge those fragments
    // eagerly to offset the growth in RSS that results.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

      - Variant 'api' declares a component, as well as attribute 'custom' with value 'c1':
          - Incompatible because this component declares a component for use during compile-time and the consumer needed a component for use during runtime
      - Variant 'runtime' declares a component for use during runtime:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. src/runtime/mbitmap.go

    // On a related note, small objects are always small enough that their bitmap
    // fits in goarch.PtrSize*8 bits, so writing out bitmap data takes two bitmap
    // writes at most (because object boundaries don't generally lie on
    // s.heapBits()[i] boundaries).
    //
    // For larger objects, if t is the type for the object starting at "start",
    // within some span whose mspan is s, then the bitmap at t.GCData is "tiled"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  7. src/internal/trace/order.go

    	pid := ProcID(ev.args[0])
    	seq := makeSeq(gen, ev.args[1])
    
    	// Try to advance. We might fail here due to sequencing, because the P hasn't
    	// had a status emitted, or because we already have a P and we're in a syscall,
    	// and we haven't observed that it was stolen from us yet.
    	state, ok := o.pStates[pid]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    				"spec.versions[0].schema.openAPIV3Schema.properties[a]: Required value: because it is defined in spec.versions[0].schema.openAPIV3Schema.not.properties[a]",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  9. src/testing/testing.go

    				if shouldUnlock {
    					c.mu.Unlock()
    				}
    				c = parent
    				// Remember to unlock c.mu when we no longer need it, either
    				// because we went up another nesting level, or because we
    				// returned.
    				shouldUnlock = true
    				c.mu.Lock()
    				continue
    			}
    			return prevFrame
    		}
    		// If more helper PCs have been added since we last did the conversion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. src/cmd/dist/test.go

    	// even if they are also registered separately by dist, because users often
    	// run go test directly. Use skips or build tags in preference to expanding
    	// this list.
    	registerStdTestSpecially := map[string]bool{
    		// testdir can run normally as part of "go test std cmd", but because
    		// it's a very large test, we register is specially as several shards to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top