Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for itor (2.85 sec)

  1. pkg/proxy/iptables/proxier.go

    				"--dport", strconv.Itoa(svcInfo.Port()),
    				"-j", string(internalTrafficChain))
    		} else {
    			// No endpoints.
    			filterRules.Write(
    				"-A", string(kubeServicesChain),
    				"-m", "comment", "--comment", internalTrafficFilterComment,
    				"-m", protocol, "-p", protocol,
    				"-d", svcInfo.ClusterIP().String(),
    				"--dport", strconv.Itoa(svcInfo.Port()),
    				"-j", internalTrafficFilterTarget,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    					protocol,
    					strconv.Itoa(svcInfo.Port()),
    				},
    				Value: []string{
    					fmt.Sprintf("goto %s", internalTrafficChain),
    				},
    			})
    		} else {
    			// No endpoints.
    			tx.Add(&knftables.Element{
    				Map: noEndpointServicesMap,
    				Key: []string{
    					svcInfo.ClusterIP().String(),
    					protocol,
    					strconv.Itoa(svcInfo.Port()),
    				},
    				Value: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/MapsTest.java

        Iterator<Entry<String, String>> iter = copy.entrySet().iterator();
        assertTrue(iter.hasNext());
        Entry<String, String> entry = iter.next();
        assertEquals("Hello", entry.getKey());
        assertEquals("World", entry.getValue());
        assertTrue(iter.hasNext());
    
        entry = iter.next();
        assertEquals("first", entry.getKey());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers_test.go

    				Pod:        newNamedPod(strconv.Itoa(j), "ns", strconv.Itoa(i), false),
    				UpdateType: kubetypes.SyncPodCreate,
    			})
    		}
    	}
    	drainWorkers(podWorkers, numPods)
    
    	if len(processed) != numPods {
    		t.Fatalf("Not all pods processed: %v", len(processed))
    	}
    	for i := 0; i < numPods; i++ {
    		uid := types.UID(strconv.Itoa(i))
    		events := processed[uid]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    	iter := &span.specials
    	found := false
    	for {
    		s := *iter
    		if s == nil {
    			break
    		}
    		if offset == uintptr(s.offset) && kind == s.kind {
    			found = true
    			break
    		}
    		if offset < uintptr(s.offset) || (offset == uintptr(s.offset) && kind < s.kind) {
    			break
    		}
    		iter = &s.next
    	}
    	return iter, found
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	default:
    		return nil, ErrNotMangledName
    	}
    
    	var ctor bool
    	switch name[1] {
    	case 'I':
    		ctor = true
    	case 'D':
    		ctor = false
    	default:
    		return nil, ErrNotMangledName
    	}
    
    	if name[2] != '_' {
    		return nil, ErrNotMangledName
    	}
    
    	if !strings.HasPrefix(name[3:], "_Z") {
    		return &GlobalCDtor{Ctor: ctor, Key: &Name{Name: name}}, nil
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    		for i := 1; i <= 4; i *= 2 {
    			t.registerTest(fmt.Sprintf("GOMAXPROCS=2 runtime -cpu=%d -quick", i),
    				&goTest{
    					variant:   "cpu" + strconv.Itoa(i),
    					timeout:   300 * time.Second,
    					cpu:       strconv.Itoa(i),
    					short:     true,
    					testFlags: []string{"-quick"},
    					// We set GOMAXPROCS=2 in addition to -cpu=1,2,4 in order to test runtime bootstrap code,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    				"Namespace":         apps.Namespace.Name(),
    				"PortAllow":         strconv.Itoa(ports.HTTP.ServicePort),
    				"PortAllowWorkload": strconv.Itoa(ports.HTTP.WorkloadPort),
    				"PortDeny":          strconv.Itoa(ports.HTTP2.ServicePort),
    				"PortDenyWorkload":  strconv.Itoa(ports.HTTP2.WorkloadPort),
    			}, `
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		{
    			name:            "RV+1",
    			resourceVersion: lastRV + 1,
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			opts := storage.ListOptions{
    				ResourceVersion: strconv.Itoa(int(tt.resourceVersion)),
    				Predicate:       storage.Everything,
    			}
    			watcher, err := cacher.Watch(context.Background(), "/pods/test-ns", opts)
    			if err != nil {
    				t.Fatalf("Failed to create watch: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  10. src/reflect/type.go

    	for i, field := range fields {
    		if field.Name == "" {
    			panic("reflect.StructOf: field " + strconv.Itoa(i) + " has no name")
    		}
    		if !isValidFieldName(field.Name) {
    			panic("reflect.StructOf: field " + strconv.Itoa(i) + " has invalid name")
    		}
    		if field.Type == nil {
    			panic("reflect.StructOf: field " + strconv.Itoa(i) + " has no type")
    		}
    		f, fpkgpath := runtimeStructField(field)
    		ft := f.Typ
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top