Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for index (0.15 sec)

  1. src/net/http/h2_bundle.go

    	scratchLen := cs.frameScratchBufferLen(maxFrameSize)
    	var buf []byte
    	index := http2bufPoolIndex(scratchLen)
    	if bp, ok := http2bufPools[index].Get().(*[]byte); ok && len(*bp) >= scratchLen {
    		defer http2bufPools[index].Put(bp)
    		buf = *bp
    	} else {
    		buf = make([]byte, scratchLen)
    		defer http2bufPools[index].Put(&buf)
    	}
    
    	var sawEOF bool
    	for !sawEOF {
    		n, err := body.Read(buf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// "spec.containers{name}" (where "name" refers to the name of the container that triggered
    	// the event) or if no container name is specified "spec.containers[2]" (container with
    	// index 2 in this pod). This syntax is chosen only to have some well-defined way of
    	// referencing a part of an object.
    	// TODO: this design is not final and this field is subject to change in the future.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (ObjectReference) SwaggerDoc() map[string]string {
    	return map_ObjectReference
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/proxier_test.go

    	itf := net.Interface{Index: 0, MTU: 0, Name: "lo", HardwareAddr: nil, Flags: 0}
    	addrs := []net.Addr{
    		&net.IPNet{IP: netutils.ParseIPSloppy("127.0.0.1"), Mask: net.CIDRMask(8, 32)},
    		&net.IPNet{IP: netutils.ParseIPSloppy("::1/128"), Mask: net.CIDRMask(128, 128)},
    	}
    	networkInterfacer.AddInterfaceAddr(&itf, addrs)
    	itf1 := net.Interface{Index: 1, MTU: 0, Name: "eth0", HardwareAddr: nil, Flags: 0}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  5. pkg/registry/core/service/storage/storage_test.go

    			}
    
    			for idx, clusterIP := range tc.newService.Spec.ClusterIPs {
    				if clusterIP != tc.expectedClusterIPs[idx] {
    					t.Fatalf("expected clusterIP [%v] at index[%v] got [%v]", tc.expectedClusterIPs[idx], idx, tc.newService.Spec.ClusterIPs[idx])
    
    				}
    			}
    		})
    	}
    }
    
    func TestPatchAllocatedValues(t *testing.T) {
    	testCases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// "spec.containers{name}" (where "name" refers to the name of the container that triggered
    	// the event) or if no container name is specified "spec.containers[2]" (container with
    	// index 2 in this pod). This syntax is chosen only to have some well-defined way of
    	// referencing a part of an object.
    	// TODO: this design is not final and this field is subject to change in the future.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top