Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for index (0.07 sec)

  1. pkg/apis/core/validation/validation.go

    	allErrs := field.ErrorList{}
    	for i, hostAlias := range hostAliases {
    		allErrs = append(allErrs, validation.IsValidIP(fldPath.Index(i).Child("ip"), hostAlias.IP)...)
    		for j, hostname := range hostAlias.Hostnames {
    			allErrs = append(allErrs, ValidateDNS1123Subdomain(hostname, fldPath.Index(i).Child("hostnames").Index(j))...)
    		}
    	}
    	return allErrs
    }
    
    // ValidateTolerations tests if given tolerations have valid data.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    			}
    			a := s.expr(n.X)
    			i := s.expr(n.Index)
    			len := s.newValue1(ssa.OpStringLen, types.Types[types.TINT], a)
    			i = s.boundsCheck(i, len, ssa.BoundsIndex, n.Bounded())
    			ptrtyp := s.f.Config.Types.BytePtr
    			ptr := s.newValue1(ssa.OpStringPtr, ptrtyp, a)
    			if ir.IsConst(n.Index, constant.Int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    	return validationMatch{path: field.NewPath(path[0], path[1:]...), errorType: field.ErrorTypeTypeInvalid}
    }
    func invalidIndex(index int, path ...string) validationMatch {
    	return validationMatch{path: field.NewPath(path[0], path[1:]...).Index(index), errorType: field.ErrorTypeInvalid}
    }
    func unsupported(path ...string) validationMatch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Len  uint16
    	Type uint16
    }
    
    type IfInfomsg struct {
    	Family uint8
    	_      uint8
    	Type   uint16
    	Index  int32
    	Flags  uint32
    	Change uint32
    }
    
    type IfAddrmsg struct {
    	Family    uint8
    	Prefixlen uint8
    	Flags     uint8
    	Scope     uint8
    	Index     uint32
    }
    
    type IfaCacheinfo struct {
    	Prefered uint32
    	Valid    uint32
    	Cstamp   uint32
    	Tstamp   uint32
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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