Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 198 for thereby (0.85 sec)

  1. pilot/pkg/networking/core/listener.go

    		// If there are multiple filter chains and a match all chain, move it to DefaultFilterChain
    		// This ensures it will always be used as the fallback.
    		if opt.isMatchAll() {
    			l.DefaultFilterChain = chain
    		} else {
    			chain.FilterChainMatch = opt.toFilterChainMatch()
    			l.FilterChains = append(l.FilterChains, chain)
    		}
    	}
    	// If there is only one filter chain, no need to use DefaultFilterChain
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            e.message == 'Cannot create service of type String using method DefaultServiceRegistryTest$ProviderWithCycle.createString() as there is a problem with parameter #1 of type Integer.'
            e.cause.message == 'Cannot create service of type Integer using method DefaultServiceRegistryTest$ProviderWithCycle.createInteger() as there is a problem with parameter #1 of type String.'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    // and caches them for reuse by subsequent calls. It uses HTTP proxies
    // as directed by the environment variables HTTP_PROXY, HTTPS_PROXY
    // and NO_PROXY (or the lowercase versions thereof).
    var DefaultTransport RoundTripper = &Transport{
    	Proxy: ProxyFromEnvironment,
    	DialContext: defaultTransportDialContext(&net.Dialer{
    		Timeout:   30 * time.Second,
    		KeepAlive: 30 * time.Second,
    	}),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

        if (merged_set.contains(&op) || llvm::isa<func::ReturnOp>(op) ||
            op.hasAttr(kEmbeddingPipelining))
          continue;
        // Note, there should be no TPU ops left at this point. If this trips,
        // there's likely a bug in this pass.
        if (IsTPUOp(&op)) {
          loop_body_func.emitOpError()
              << "Unexpcted TPU op found while identifying non-TPU ops.";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  5. src/index/suffixarray/sais2.go

    	if len(text) == 0 {
    		return
    	}
    	if len(text) == 1 {
    		sa[0] = 0
    		return
    	}
    
    	// Establish slices indexed by text character
    	// holding character frequency and bucket-sort offsets.
    	// If there's only enough tmp for one slice,
    	// we make it the bucket offsets and recompute
    	// the character frequency each time we need it.
    	var freq, bucket []int64
    	if len(tmp) >= 2*textMax {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    	frame.varp = frame.fp
    	if !usesLR {
    		// On x86, call instruction pushes return PC before entering new function.
    		frame.varp -= goarch.PtrSize
    	}
    
    	// For architectures with frame pointers, if there's
    	// a frame, then there's a saved frame pointer here.
    	//
    	// NOTE: This code is not as general as it looks.
    	// On x86, the ABI is to save the frame pointer word at the
    	// top of the stack frame, so we have to back down over it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller.go

    			} else {
    				daemonPodsRunning = append(daemonPodsRunning, pod)
    			}
    		}
    
    		// When surge is not enabled, if there is more than 1 running pod on a node delete all but the oldest
    		if !util.AllowsSurge(ds) {
    			if len(daemonPodsRunning) <= 1 {
    				// There are no excess pods to be pruned, and no pods to create
    				break
    			}
    
    			sort.Sort(podByCreationTimestampAndPhase(daemonPodsRunning))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	//
    	// curl GET /apis/group/version/namespaces/my-ns/myresource
    	NewListFunc func() runtime.Object
    
    	// DefaultQualifiedResource is the pluralized name of the resource.
    	// This field is used if there is no request info present in the context.
    	// See qualifiedResourceFromContext for details.
    	DefaultQualifiedResource schema.GroupResource
    
    	// SingularQualifiedResource is the singular name of the resource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  9. cmd/iam.go

    	parentUsersMap := sys.store.GetAllParentUsers()
    	var expiredUsers []string
    	for parentUser, puInfo := range parentUsersMap {
    		// There are multiple role ARNs for parent user only when there
    		// are multiple openid provider configurations with the same ID
    		// provider. We lookup the provider associated with some one of
    		// the roleARNs to check if the user still exists. If they don't
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // header for each unknown field that is dropped from the object, and
      // for each duplicate field that is encountered. The request will
      // still succeed if there are no other errors, and will only persist
      // the last of any duplicate fields. This is the default in v1.23+
      // - Strict: This will fail the request with a BadRequest error if
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top