Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 96 for aloop (0.06 sec)

  1. pkg/apis/admissionregistration/validation/validation.go

    var celIdentRegex = regexp.MustCompile("^[_a-zA-Z][_a-zA-Z0-9]*$")
    var celReserved = sets.NewString("true", "false", "null", "in",
    	"as", "break", "const", "continue", "else",
    	"for", "function", "if", "import", "let",
    	"loop", "package", "namespace", "return",
    	"var", "void", "while")
    
    func isCELIdentifier(name string) bool {
    	// IDENT          ::= [_a-zA-Z][_a-zA-Z0-9]* - RESERVED
    	// BOOL_LIT       ::= "true" | "false"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_attacher_test.go

    			nodeName:   "node000",
    			driverName: "driver000",
    			volumeName: "vol02",
    			attachID:   getAttachmentName("vol02", "driver02", "node02"),
    			shouldFail: true, // csi not enabled
    		},
    	}
    
    	// attacher loop
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			t.Logf("test case: %s", tc.name)
    			fakeClient := fakeclient.NewSimpleClientset()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    	if len(ld.pkgs) > 0 {
    		panic("buildStacks")
    	}
    	for _, pkg := range ld.roots {
    		pkg.stack = pkg // sentinel to avoid processing in next loop
    		ld.pkgs = append(ld.pkgs, pkg)
    	}
    	for i := 0; i < len(ld.pkgs); i++ { // not range: appending to ld.pkgs in loop
    		pkg := ld.pkgs[i]
    		for _, next := range pkg.imports {
    			if next.stack == nil {
    				next.stack = pkg
    				ld.pkgs = append(ld.pkgs, next)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route.go

    	mostSpecificWildcardVsIndex map[host.Name]types.NamespacedName,
    ) ([]string, []*model.Service) {
    	// TODO: A further optimization would be to completely rely on the index and not do the loop below
    	// However, that requires assuming that serviceRegistry never got filtered after the
    	// egressListener was created.
    	rule := virtualService.Spec.(*networking.VirtualService)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Iterators.java

       * iterable}. The iterator's {@code hasNext()} method returns {@code true} until {@code iterable}
       * is empty.
       *
       * <p><b>Warning:</b> Typical uses of the resulting iterator may produce an infinite loop. You
       * should use an explicit {@code break} or be certain that you will eventually remove all the
       * elements.
       */
      public static <T extends @Nullable Object> Iterator<T> cycle(Iterable<T> iterable) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Iterators.java

       * iterable}. The iterator's {@code hasNext()} method returns {@code true} until {@code iterable}
       * is empty.
       *
       * <p><b>Warning:</b> Typical uses of the resulting iterator may produce an infinite loop. You
       * should use an explicit {@code break} or be certain that you will eventually remove all the
       * elements.
       */
      public static <T extends @Nullable Object> Iterator<T> cycle(Iterable<T> iterable) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    }
    
    func ConvertGroupVersionIntoToDiscovery(list []metav1.APIResource) ([]apidiscoveryv2.APIResourceDiscovery, error) {
    	var apiResourceList []apidiscoveryv2.APIResourceDiscovery
    	parentResources := make(map[string]int)
    
    	// Loop through all top-level resources
    	for _, r := range list {
    		if strings.Contains(r.Name, "/") {
    			// Skip subresources for now so we can get the list of resources
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. pkg/proxy/winkernel/proxier.go

    	}
    	metrics.SyncProxyRulesLastQueuedTimestamp.SetToCurrentTime()
    	proxier.syncRunner.Run()
    }
    
    // SyncLoop runs periodic work.  This is expected to run as a goroutine or as the main loop of the app.  It does not return.
    func (proxier *Proxier) SyncLoop() {
    	// Update healthz timestamp at beginning in case Sync() never succeeds.
    	if proxier.healthzServer != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  9. src/syscall/zerrors_solaris_amd64.go

    	ELIBBAD         = Errno(0x54)
    	ELIBEXEC        = Errno(0x57)
    	ELIBMAX         = Errno(0x56)
    	ELIBSCN         = Errno(0x55)
    	ELNRNG          = Errno(0x29)
    	ELOCKUNMAPPED   = Errno(0x48)
    	ELOOP           = Errno(0x5a)
    	EMFILE          = Errno(0x18)
    	EMLINK          = Errno(0x1f)
    	EMSGSIZE        = Errno(0x61)
    	EMULTIHOP       = Errno(0x4a)
    	ENAMETOOLONG    = Errno(0x4e)
    	ENETDOWN        = Errno(0x7f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  10. src/testing/testing.go

    // benchmark function lasts long enough to be timed reliably.
    // The output
    //
    //	BenchmarkRandInt-8   	68453040	        17.8 ns/op
    //
    // means that the loop ran 68453040 times at a speed of 17.8 ns per loop.
    //
    // If a benchmark needs some expensive setup before running, the timer
    // may be reset:
    //
    //	func BenchmarkBigLen(b *testing.B) {
    //	    big := NewBig()
    //	    b.ResetTimer()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top