Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 152 for circuit (0.24 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/token/union/union.go

    type unionAuthTokenHandler struct {
    	// Handlers is a chain of request authenticators to delegate to
    	Handlers []authenticator.Token
    	// FailOnError determines whether an error returns short-circuits the chain
    	FailOnError bool
    }
    
    // New returns a token authenticator that validates credentials using a chain of authenticator.Token objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 22 17:16:59 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  2. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    purple seemed more reddish than the violet in the former Circuit, and the green was much more conspicuous, being as brisk and copious as any of the other Colours, except the yellow, but the red began to be a little faded, inclining very much to purple. After this succeeded the fourth Circuit of green and red. The green was very copious and lively, inclining on the one side to blue, and on the other side to yellow. But in this fourth Circuit there was neither violet, blue, nor yellow, and the red was...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authentication/request/union/union.go

    type unionAuthRequestHandler struct {
    	// Handlers is a chain of request authenticators to delegate to
    	Handlers []authenticator.Request
    	// FailOnError determines whether an error returns short-circuits the chain
    	FailOnError bool
    }
    
    // New returns a request authenticator that validates credentials using a chain of authenticator.Request objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 22 17:16:59 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/routing.go

    			Count:  1,
    			Check:  check.GRPCStatus(codes.Unavailable),
    		},
    		workloadAgnostic: true,
    		sourceMatchers:   includeProxyless,
    	})
    	t.RunTraffic(TrafficTestCase{
    		name: "catch all route short circuit the other routes",
    		config: `
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: default
    spec:
      hosts:
      - {{ (index .dst 0).Config.Service }}
      http:
      - match:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. src/testdata/Isaac.Newton-Opticks.txt

    Circuit or Order was purple, blue, green, yellow, and red; in which the
    purple seemed more reddish than the violet in the former Circuit, and
    the green was much more conspicuous, being as brisk and copious as any
    of the other Colours, except the yellow, but the red began to be a
    little faded, inclining very much to purple. After this succeeded the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/isolated_projects.adoc

    Gradle starts by applying coarse-grained caching.
    To do this, Gradle caches the result of the entire sync operation and reuses it when nothing that affects the IDE model has changed.
    When the cache entry can be reused, Gradle short-circuits the entire sync operation and simply returns the cached result to the IDE.
    
    Generally, the settings and build scripts affect the IDE model, but the source code of the projects does not.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:53:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. releasenotes/notes/49620.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 06:41:35 UTC 2024
    - 225 bytes
    - Viewed (0)
  8. pkg/api/v1/pod/util.go

    // VisitContainers invokes the visitor function with a pointer to every container
    // spec in the given pod spec with type set in mask. If visitor returns false,
    // visiting is short-circuited. VisitContainers returns true if visiting completes,
    // false if visiting was short-circuited.
    func VisitContainers(podSpec *v1.PodSpec, mask ContainerType, visitor ContainerVisitor) bool {
    	if mask&InitContainers != 0 {
    		for i := range podSpec.InitContainers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 17:18:04 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  9. pkg/apis/core/pods/helpers.go

    // of every container in the given pod spec and the field.Path to that container.
    // If visitor returns false, visiting is short-circuited. VisitContainersWithPath returns true if visiting completes,
    // false if visiting was short-circuited.
    func VisitContainersWithPath(podSpec *api.PodSpec, specPath *field.Path, visitor ContainerVisitorWithPath) bool {
    	fldPath := specPath.Child("initContainers")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:35:30 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. pkg/api/v1/persistentvolume/util.go

    	}
    }
    
    // VisitPVSecretNames invokes the visitor function with the name of every secret
    // referenced by the PV spec. If visitor returns false, visiting is short-circuited.
    // Returns true if visiting completed, false if visiting was short-circuited.
    func VisitPVSecretNames(pv *corev1.PersistentVolume, visitor Visitor) bool {
    	visitor = skipEmptyNames(visitor)
    	source := &pv.Spec.PersistentVolumeSource
    	switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 05 03:36:23 UTC 2022
    - 5.5K bytes
    - Viewed (0)
Back to top