Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for rary (0.15 sec)

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

            thrownAtomicReferenceFieldUpdaterFailure = atomicReferenceFieldUpdaterFailure;
            helper = new SynchronizedHelper();
          }
        }
        ATOMIC_HELPER = helper;
    
        // Prevent rare disastrous classloading in first call to LockSupport.park.
        // See: https://bugs.openjdk.java.net/browse/JDK-8074773
        @SuppressWarnings("unused")
        Class<?> ensureLoaded = LockSupport.class;
    
    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

            thrownAtomicReferenceFieldUpdaterFailure = atomicReferenceFieldUpdaterFailure;
            helper = new SynchronizedHelper();
          }
        }
        ATOMIC_HELPER = helper;
    
        // Prevent rare disastrous classloading in first call to LockSupport.park.
        // See: https://bugs.openjdk.java.net/browse/JDK-8074773
        @SuppressWarnings("unused")
        Class<?> ensureLoaded = LockSupport.class;
    
    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. kotlin-js-store/yarn.lock

      resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
      integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=
    
    vary@^1:
      version "1.1.2"
      resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
      integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=
    
    void-elements@^2.0.0:
      version "2.0.1"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    func mProf_Malloc(mp *m, p unsafe.Pointer, size uintptr) {
    	if mp.profStack == nil {
    		// mp.profStack is nil if we happen to sample an allocation during the
    		// initialization of mp. This case is rare, so we just ignore such
    		// allocations. Change MemProfileRate to 1 if you need to reproduce such
    		// cases for testing purposes.
    		return
    	}
    	// Only use the part of mp.profStack we need and ignore the extra space
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. src/runtime/mgcpacer.go

    	//
    	// The maximum number of idle mark workers is used to prevent new workers
    	// from starting, but it is not a hard maximum. It is possible (but
    	// exceedingly rare) for the current number of idle mark workers to
    	// transiently exceed the maximum. This could happen if the maximum changes
    	// just after a GC ends, and an M with no P.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Sets.java

       * other, pass it first. Unfortunately, since this method sets the generic type of the returned
       * set based on the type of the first set passed, this could in rare cases force you to make a
       * cast, for example:
       *
       * <pre>{@code
       * Set<Object> aFewBadObjects = ...
       * Set<String> manyBadStrings = ...
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		// event.Object is not nil it can be used only for watchers for which
    		// selector was satisfied for its previous version and is no longer
    		// satisfied for the current version.
    		// This is rare enough that it doesn't justify making deep-copy of the
    		// object (done by newCachingObject) every time.
    	case watch.Deleted:
    		// Don't wrap Object for delete events - these are not to deliver any
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/crypto/tls/tls_test.go

    // behind the application data in the buffer.
    func TestConnReadNonzeroAndEOF(t *testing.T) {
    	// This test is racy: it assumes that after a write to a
    	// localhost TCP connection, the peer TCP connection can
    	// immediately read it. Because it's racy, we skip this test
    	// in short mode, and then retry it several times with an
    	// increasing sleep in between our final write (via srv.Close
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  9. src/math/big/float_test.go

    		}
    		if z2.Sign() != 0 {
    			t.Errorf("prec %d: got z2 = %v; want 0", prec, z2)
    		}
    	}
    }
    
    func TestFloatQuo(t *testing.T) {
    	// TODO(gri) make the test vary these precisions
    	preci := 200 // precision of integer part
    	precf := 20  // precision of fractional part
    
    	for i := 0; i < 8; i++ {
    		// compute accurate (not rounded) result z
    		bits := Bits{preci - 1}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

        private boolean doesNotHaveDependencies;
    
        @Nullable
        ExcludeSpec previousTraversalExclusions;
    
        // In opposite to outgoing edges, virtual edges are for now pretty rare, so they are created lazily
        private List<EdgeState> virtualEdges;
        private boolean queued;
        private boolean evicted;
        private int transitiveEdgeCount;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
Back to top