Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 85 for nextch (0.18 sec)

  1. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	// pvcLister is the shared PVC lister used to fetch and store PVC
    	// objects from the API server. It is shared with other controllers and
    	// therefore the PVC objects in its store should be treated as immutable.
    	pvcLister  corelisters.PersistentVolumeClaimLister
    	pvcsSynced kcache.InformerSynced
    
    	// pvLister is the shared PV lister used to fetch and store PV objects
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. pilot/pkg/security/authn/policy_applier.go

    		// cluster name, generate the jwt filter config using remote Jwks.
    		// If failed to parse the cluster name, only fallback to let istiod to fetch the jwksUri when
    		// remoteJwksMode is Hybrid.
    		if features.JwksFetchMode != jwt.Istiod && jwtRule.JwksUri != "" {
    			jwksInfo, err := security.ParseJwksURI(jwtRule.JwksUri)
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. src/crypto/x509/verify.go

    				(93 <= c && c <= 126):
    				// qtext
    				localPartBytes = append(localPartBytes, c)
    
    			default:
    				return mailbox, false
    			}
    		}
    	} else {
    		// Atom ("." Atom)*
    	NextChar:
    		for len(in) > 0 {
    			// atext from RFC 2822, Section 3.2.4
    			c := in[0]
    
    			switch {
    			case c == '\\':
    				// Examples given in RFC 3696 suggest that
    				// escaped characters can appear outside of a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/util/util.go

    	if isEphemeral {
    		claimName = ephemeral.VolumeClaimName(pod, &podVolume)
    	}
    	if claimName != "" {
    		logger.V(10).Info("Found PVC", "PVC", klog.KRef(pod.Namespace, claimName))
    
    		// If podVolume is a PVC, fetch the real PV behind the claim
    		pvc, err := getPVCFromCache(pod.Namespace, claimName, pvcLister)
    		if err != nil {
    			return nil, fmt.Errorf(
    				"error processing PVC %q/%q: %v",
    				pod.Namespace,
    				claimName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

        Object[] unused2 = set.toArray(new Object[2]);
      }
    
      interface Interface extends Comparable<Interface> {}
    
      static class Impl implements Interface {
        static int nextId;
        Integer id = nextId++;
    
        @Override
        public int compareTo(Interface other) {
          return id.compareTo(((Impl) other).id);
        }
      }
    
      public void testOf_ordering_dupes() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  6. pkg/kube/krt/collection.go

    	// These are keyed by the internal uid() function on collections.
    	// Note this does not include `parent`, which is the *primary* dependency declared outside of transformation functions.
    	collectionDependencies sets.Set[collectionUID]
    	// Stores a map of I -> secondary dependencies (added via Fetch)
    	objectDependencies map[Key[I]][]*dependency
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. tests/integration/security/egress_gateway_origination_test.go

    	ingressutil "istio.io/istio/tests/integration/security/sds_ingress/util"
    )
    
    // TestSimpleTlsOrigination test SIMPLE TLS mode with TLS origination happening at Gateway proxy
    // It uses CredentialName set in DestinationRule API to fetch secrets from k8s API server
    func TestSimpleTlsOrigination(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    		RequiresSingleNetwork(). // https://github.com/istio/istio/issues/37134
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/math/LongMath.java

            return (cmpXToRoundArbitrarily <= 0) ? roundArbitrarily : Math.nextUp(roundArbitrarily);
          case DOWN:
            if (x >= 0) {
              return (cmpXToRoundArbitrarily >= 0)
                  ? roundArbitrarily
                  : DoubleUtils.nextDown(roundArbitrarily);
            } else {
              return (cmpXToRoundArbitrarily <= 0) ? roundArbitrarily : Math.nextUp(roundArbitrarily);
            }
          case UP:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_tls.go

    		}
    		if tls.CredentialName != "" {
    			// If  credential name is specified at Destination Rule config and originating node is egress gateway, create
    			// SDS config for egress gateway to fetch key/cert at gateway agent.
    			sec_model.ApplyCustomSDSToClientCommonTLSContext(tlsContext.CommonTlsContext, tls, cb.credentialSocketExist)
    		} else {
    			// If CredentialName is not set fallback to files specified in DR.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. pkg/kubelet/images/image_manager_test.go

    				{[]string{"GetImageRef"}, ErrImageInspect, false, false},
    				{[]string{"GetImageRef"}, ErrImageInspect, false, false},
    			}},
    		// missing image, unable to fetch
    		{containerImage: "typo_image",
    			testName:   "image missing, unable to fetch",
    			policy:     v1.PullIfNotPresent,
    			inspectErr: nil,
    			pullerErr:  errors.New("404"),
    			qps:        0.0,
    			burst:      0,
    			expected: []pullerExpects{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top