Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 206 for Shardz (0.12 sec)

  1. pkg/proxy/config/config_test.go

    	// if the consumer falls behind. Unittests will hard timeout in 5m.
    	var slices []*discoveryv1.EndpointSlice
    	for {
    		select {
    		case slices = <-h.updated:
    			if reflect.DeepEqual(slices, expectedSlices) {
    				return
    			}
    		// Unittests will hard timeout in 5m with a stack trace, prevent that
    		// and surface a clearer reason for failure.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/testing/GcFinalization.java

       * gigantic heap, in which case we scale by heap size.
       */
      private static long timeoutSeconds() {
        // This class can make no hard guarantees.  The methods in this class are inherently flaky, but
        // we try hard to make them robust in practice.  We could additionally try to add in a system
        // load timeout multiplier.  Or we could try to use a CPU time bound instead of wall clock time
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. hack/golangci.yaml

          path: _test.go$
    
        # TODO(oscr) Remove these excluded directories and fix findings. Due to large amount of findings in different components
        # with different owners it's hard to fix everything in a single pr. This will therefore be done in multiple prs.
        - path: (pkg/volume/*|test/*|azure/*|pkg/cmd/wait*|request/bearertoken/*|metrics/*|filters/*)
          linters:
            - gocritic
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. pkg/scheduler/testing/wrappers.go

    	NilPodAffinity PodAffinityKind = iota
    	// PodAffinityWithRequiredReq applies a HARD requirement to pod.spec.affinity.PodAffinity.
    	PodAffinityWithRequiredReq
    	// PodAffinityWithPreferredReq applies a SOFT requirement to pod.spec.affinity.PodAffinity.
    	PodAffinityWithPreferredReq
    	// PodAffinityWithRequiredPreferredReq applies HARD and SOFT requirements to pod.spec.affinity.PodAffinity.
    	PodAffinityWithRequiredPreferredReq
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/apiclient/dryrunclient.go

    // This just makes it easier to catch all actions that has a name; instead of hard-coding all request that has it associated
    type actionWithName interface {
    	core.Action
    	GetName() string
    }
    
    // actionWithObject is the generic interface for an action that has an object associated with it
    // This just makes it easier to catch all actions that has an object; instead of hard-coding all request that has it associated
    type actionWithObject interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    == Symbolic links
    
    When using symbolic links, Gradle does not store the link in the build cache but the actual file contents of the destination of the link.
    As a consequence you might have a hard time when trying to reuse outputs which heavily use symbolic links.
    There currently is no workaround for this behavior.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/testdata/half_plus_two_pbtxt/00000123/saved_model.pbtxt

            }
          }
          op {
            name: "ShardedFilename"
            input_arg {
              name: "basename"
              type: DT_STRING
            }
            input_arg {
              name: "shard"
              type: DT_INT32
            }
            input_arg {
              name: "num_shards"
              type: DT_INT32
            }
            output_arg {
              name: "filename"
              type: DT_STRING
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 01:10:27 UTC 2017
    - 46.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java

                public void onResponse(final SearchResponse searchResponse) {
                    if (searchResponse.getFailedShards() > 0) {
                        deferred.reject(new SuggesterException("Search failure. Failed shards num:" + searchResponse.getFailedShards()));
                    } else {
                        deferred.resolve(createResponse(searchResponse));
                    }
                }
    
                @Override
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/plan/Node.java

        public Iterable<Node> getAllSuccessors() {
            return getHardSuccessors();
        }
    
        /**
         * Returns all the nodes which are hard successors, i.e. which have a non-removable relationship to the current node.
         *
         * For example, for tasks `shouldRunAfter` isn't a hard successor while `mustRunAfter` is.
         */
        @OverridingMethodsMustInvokeSuper
        public Iterable<Node> getHardSuccessors() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 24 13:30:48 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/testing/GcFinalization.java

       * gigantic heap, in which case we scale by heap size.
       */
      private static long timeoutSeconds() {
        // This class can make no hard guarantees.  The methods in this class are inherently flaky, but
        // we try hard to make them robust in practice.  We could additionally try to add in a system
        // load timeout multiplier.  Or we could try to use a CPU time bound instead of wall clock time
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top