Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 106 for nextch (0.19 sec)

  1. src/runtime/pprof/pprof.go

    	fmt.Fprintf(w, "# BuckHashSys = %d\n", s.BuckHashSys)
    	fmt.Fprintf(w, "# GCSys = %d\n", s.GCSys)
    	fmt.Fprintf(w, "# OtherSys = %d\n", s.OtherSys)
    
    	fmt.Fprintf(w, "# NextGC = %d\n", s.NextGC)
    	fmt.Fprintf(w, "# LastGC = %d\n", s.LastGC)
    	fmt.Fprintf(w, "# PauseNs = %d\n", s.PauseNs)
    	fmt.Fprintf(w, "# PauseEnd = %d\n", s.PauseEnd)
    	fmt.Fprintf(w, "# NumGC = %d\n", s.NumGC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/a.out.go

    	ACRORN
    	ACRXOR
    	ADIVW
    	ADIVWCC
    	ADIVWVCC
    	ADIVWV
    	ADIVWU
    	ADIVWUCC
    	ADIVWUVCC
    	ADIVWUV
    	AMODUD
    	AMODUW
    	AMODSD
    	AMODSW
    	AEQV
    	AEQVCC
    	AEXTSB
    	AEXTSBCC
    	AEXTSH
    	AEXTSHCC
    	AFABS
    	AFABSCC
    	AFADD
    	AFADDCC
    	AFADDS
    	AFADDSCC
    	AFCMPO
    	AFCMPU
    	AFCTIW
    	AFCTIWCC
    	AFCTIWZ
    	AFCTIWZCC
    	AFDIV
    	AFDIVCC
    	AFDIVS
    	AFDIVSCC
    	AFMADD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. src/runtime/malloc_test.go

    		}
    		return
    	}
    	disallowed := [][2]uintptr{}
    	// Drop all but the next 3 hints. 64-bit has a lot of hints,
    	// so it would take a lot of memory to go through all of them.
    	KeepNArenaHints(3)
    	// Consume these 3 hints and force the runtime to find some
    	// fallback hints.
    	for i := 0; i < 5; i++ {
    		// Reserve memory at the next hint so it can't be used
    		// for the heap.
    		start, end, ok := MapNextArenaHint()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. src/fmt/scan.go

    			if i+w == len(format) {
    				s.errorString("missing verb: % at end of format string")
    			}
    			// %% acts like a real percent
    			nextc, _ := utf8.DecodeRuneInString(format[i+w:]) // will not match % if string is empty
    			if nextc != '%' {
    				return
    			}
    			i += w // skip the first %
    		}
    
    		// Literals.
    		inputc := s.mustReadRune()
    		if fmtc != inputc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top