Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 322 for hit (0.31 sec)

  1. src/runtime/map_fast64.go

    			inserti = i
    			goto done
    		}
    		ovf := b.overflow(t)
    		if ovf == nil {
    			break
    		}
    		b = ovf
    	}
    
    	// Did not find mapping for key. Allocate new cell & add entry.
    
    	// If we hit the max load factor or we have too many overflow buckets,
    	// and we're not already in the middle of growing, start growing.
    	if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/runtime/map_fast32.go

    			insertb = b
    			goto done
    		}
    		ovf := b.overflow(t)
    		if ovf == nil {
    			break
    		}
    		b = ovf
    	}
    
    	// Did not find mapping for key. Allocate new cell & add entry.
    
    	// If we hit the max load factor or we have too many overflow buckets,
    	// and we're not already in the middle of growing, start growing.
    	if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AggregateFutureState.java

          // getDeclaredField to throw a NoSuchFieldException when the field is definitely there.
          // For these users fallback to a suboptimal implementation, based on synchronized. This will
          // be a definite performance hit to those users.
          thrownReflectionFailure = reflectionFailure;
          helper = new SynchronizedAtomicHelper();
        }
        ATOMIC_HELPER = helper;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/BuildProfile.java

        }
    
        /*
         * When loading from configuration cache, the fields that are set on configuration time ain't initialized.
         * After configuration cache hit it's fair to use build start time value for them.
         * */
        private long valueOrBuildStartedTimeIfNotInitialized(long time) {
            return time == NOT_INITIALIZED_VALUE ? buildStartedTime.getStartTime() : time;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. pkg/apis/rbac/helpers_test.go

    			combinedRequestedResource: "foo/scale",
    			requestedSubresource:      "scale",
    			expected:                  true,
    		},
    		{
    			name:                      "doesn't match partial subresource hit",
    			ruleResources:             []string{"foo/bar", "*/other"},
    			combinedRequestedResource: "foo/other/segment",
    			requestedSubresource:      "other/segment",
    			expected:                  false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/lower_globals_to_ml_program.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h"
    
    namespace mlir {
    namespace tf_saved_model {
    
    // Trace upwards until we hit a (block) argument a value originates from.
    static LogicalResult traceUpwardsToArgument(Value v, llvm::DenseSet<Value> seen,
                                                BlockArgument *out) {
      if (seen.contains(v)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/proxy/websocket.go

    			break
    		}
    
    		select {
    		case channel <- size:
    		case <-ctx.Done():
    			// To avoid leaking this routine, exit if the http request finishes. This path
    			// would generally be hit if starting the process fails and nothing is started to
    			// ingest these resize events.
    			return
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. pilot/pkg/model/authentication_test.go

    		name              string
    		workloadNamespace string
    		workloadLabels    labels.Instance
    		wantRequestAuthn  []*config.Config
    		isWaypoint        bool
    	}{
    		{
    			name:              "single hit",
    			workloadNamespace: "foo",
    			workloadLabels:    nil,
    			wantRequestAuthn: []*config.Config{
    				{
    					Meta: config.Meta{
    						GroupVersionKind: gvk.RequestAuthentication,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/webhook/authentication.go

    			nickName := "*." + strings.Join(serverSteps[i:], ".")
    			if authConfig, ok := c.kubeconfig.AuthInfos[nickName]; ok {
    				return restConfigFromKubeconfig(authConfig)
    			}
    		}
    	}
    
    	// if we're trying to hit the kube-apiserver and there wasn't an explicit config, use the in-cluster config
    	if target == "kubernetes.default.svc:443" {
    		// if we can find an in-cluster-config use that.  If we can't, fall through.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/AggregateFutureState.java

          // getDeclaredField to throw a NoSuchFieldException when the field is definitely there.
          // For these users fallback to a suboptimal implementation, based on synchronized. This will
          // be a definite performance hit to those users.
          thrownReflectionFailure = reflectionFailure;
          helper = new SynchronizedAtomicHelper();
        }
        ATOMIC_HELPER = helper;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top