Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 52 for Truly (0.05 sec)

  1. src/unique/handle.go

    		}
    		// Now that we're sure there's a value in the map, let's
    		// try to get the pointer we need out of it.
    		ptr = wp.Strong()
    		if ptr != nil {
    			break
    		}
    		// The weak pointer is nil, so the old value is truly dead.
    		// Try to remove it and start over.
    		m.CompareAndDelete(value, wp)
    	}
    	runtime.KeepAlive(toInsert)
    	return Handle[T]{ptr}
    }
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. src/os/user/cgo_lookup_unix.go

    		// Additionally, not all Linux systems have it, either. For
    		// example, the musl libc returns -1.
    		return 1024
    	}
    	if !isSizeReasonable(int64(sz)) {
    		// Truncate.  If this truly isn't enough, retryWithBuffer will error on the first run.
    		return maxBufferSize
    	}
    	return _C_size_t(sz)
    }
    
    // retryWithBuffer repeatedly calls f(), increasing the size of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:08:14 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. docs/security/README.md

    ### Server-Side Encryption with client-provided Keys
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/list_work_estimator.go

    		return WorkEstimate{InitialSeats: maxSeats}
    	case err == ObjectCountNotFoundErr:
    		// there are multiple scenarios in which we can see this error:
    		//  a. the type is truly unknown, a typo on the caller's part.
    		//  b. the count has gone stale for too long and the pruner
    		//     has removed the type from the cache.
    		//  c. the type is an aggregated resource that is served by a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/Dispatcher.kt

       * callback has returned. Synchronous calls become idle once [execute()][Call.execute] returns.
       * This means that if you are doing synchronous calls the network layer will not truly be idle
       * until every returned [Response] has been closed.
       */
      var idleCallback: Runnable? = null
        get() = this.withLock { field }
        set(value) {
          this.withLock { field = value }
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/wait/wait.go

    )
    
    // For any test of the style:
    //
    //	...
    //	<- time.After(timeout):
    //	   t.Errorf("Timed out")
    //
    // The value for timeout should effectively be "forever." Obviously we don't want our tests to truly lock up forever, but 30s
    // is long enough that it is effectively forever for the things that can slow down a run on a heavily contended machine
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. plugin/pkg/admission/podtolerationrestriction/admission.go

    	namespace, err := p.namespaceLister.Get(nsName)
    	if errors.IsNotFound(err) {
    		// in case of latency in our caches, make a call direct to storage to verify that it truly exists or not
    		namespace, err = p.client.CoreV1().Namespaces().Get(context.TODO(), nsName, metav1.GetOptions{})
    		if err != nil {
    			if errors.IsNotFound(err) {
    				return nil, err
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 29 20:07:59 UTC 2020
    - 8.3K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/concurrent/TaskRunnerTest.kt

          "FINE: Q10000 starting              : task",
          "FINE: Q10000 finished run in   0 µs: task",
        )
      }
    
      /** Inspect how many runnables have been enqueued. If none then we're truly sequential. */
      @Test fun singleQueueIsSerial() {
        redQueue.execute("task one", 100.µs) {
          log += "one:run@${taskFaker.nanoTime} parallel=${taskFaker.isParallel}"
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableSet.java

         *
         * <p>Note that for a RegularImmutableSet with elements with truly random hash codes, contains
         * operations take expected O(1) time but with high probability take O(log n) for at least some
         * element. (https://en.wikipedia.org/wiki/Linear_probing#Analysis)
         *
         * <p>This method may return {@code true} even on truly random input, but {@code
         * ImmutableSetTest} tests that the probability of that is low.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/informers.go

    			// the CNI plugin chain, and have a PodIP.
    			//
    			// If PodIPs exists, it is preferred, otherwise fallback to PodIP.
    			//
    			// If we get to this point and have a pod that really and truly has no IP in either of those,
    			// it's not routable at this point and something is wrong/we should discard this event.
    			podIPs := util.GetPodIPsIfPresent(pod)
    			if len(podIPs) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top