Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 151 for book (0.12 sec)

  1. staging/src/k8s.io/api/autoscaling/v1/generated.pb.go

    	return fileDescriptor_1972394c0c7aac8b, []int{0}
    }
    func (m *ContainerResourceMetricSource) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *ContainerResourceMetricSource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    	n, err := m.MarshalToSizedBuffer(b)
    	if err != nil {
    		return nil, err
    	}
    	return b[:n], nil
    }
    func (m *ContainerResourceMetricSource) XXX_Merge(src proto.Message) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 153K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/batch/v1/generated.pb.go

    func (*CronJob) Descriptor() ([]byte, []int) {
    	return fileDescriptor_79228dc2c4001a22, []int{0}
    }
    func (m *CronJob) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *CronJob) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    	n, err := m.MarshalToSizedBuffer(b)
    	if err != nil {
    		return nil, err
    	}
    	return b[:n], nil
    }
    func (m *CronJob) XXX_Merge(src proto.Message) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 133K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder_test.go

    		t.Fatalf("Expected (-) != actual (+):\n%s", v)
    	}
    }
    
    func TestBuildPassthroughClusters(t *testing.T) {
    	cases := []struct {
    		name         string
    		ips          []string
    		ipv4Expected bool
    		ipv6Expected bool
    	}{
    		{
    			name:         "both ipv4 and ipv6",
    			ips:          []string{"6.6.6.6", "::1"},
    			ipv4Expected: true,
    			ipv6Expected: true,
    		},
    		{
    			name:         "ipv4 only",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v2beta1/generated.pb.go

    	return fileDescriptor_ea74040359c1ed83, []int{0}
    }
    func (m *ContainerResourceMetricSource) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *ContainerResourceMetricSource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    	n, err := m.MarshalToSizedBuffer(b)
    	if err != nil {
    		return nil, err
    	}
    	return b[:n], nil
    }
    func (m *ContainerResourceMetricSource) XXX_Merge(src proto.Message) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 142.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm7.go

    }
    
    func isSTLXRop(op obj.As) bool {
    	switch op {
    	case ASTLXR, ASTLXRW, ASTLXRB, ASTLXRH,
    		ASTXR, ASTXRW, ASTXRB, ASTXRH:
    		return true
    	}
    	return false
    }
    
    func isSTXPop(op obj.As) bool {
    	switch op {
    	case ASTXP, ASTLXP, ASTXPW, ASTLXPW:
    		return true
    	}
    	return false
    }
    
    func isANDop(op obj.As) bool {
    	switch op {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  6. pkg/apis/apps/validation/validation_test.go

    			field.Invalid(field.NewPath("spec", "ordinals.start"), nil, ""),
    		},
    	},
    	}
    
    	cmpOpts := []cmp.Option{cmpopts.IgnoreFields(field.Error{}, "BadValue", "Detail"), cmpopts.SortSlices(func(a, b *field.Error) bool { return a.Error() < b.Error() })}
    	for _, testCase := range append(successCases, errorCases...) {
    		name := testCase.name
    		var testTitle string
    		if len(testCase.errs) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    }
    
    func hasPodReadyCondition(conditions []api.PodCondition) bool {
    	for _, condition := range conditions {
    		if condition.Type == api.PodReady && condition.Status == api.ConditionTrue {
    			return true
    		}
    	}
    	return false
    }
    
    func hasJobCondition(conditions []batch.JobCondition, conditionType batch.JobConditionType) bool {
    	for _, condition := range conditions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    				Clientset: fake.NewSimpleClientset(&v1.PodList{Items: []v1.Pod{*testutil.NewPod("pod0", "node0")}}),
    			},
    			updateReactor: func() func(action testcore.Action) (bool, runtime.Object, error) {
    				i := 0
    				return func(action testcore.Action) (bool, runtime.Object, error) {
    					if action.GetVerb() == "update" && action.GetResource().Resource == "pods" && action.GetSubresource() == "status" {
    						i++
    						switch i {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/validation/validation_test.go

    func strPtr(s string) *string { return &s }
    
    func int32Ptr(i int32) *int32 { return &i }
    
    func newValidatingWebhookConfiguration(hooks []admissionregistration.ValidatingWebhook, defaultAdmissionReviewVersions bool) *admissionregistration.ValidatingWebhookConfiguration {
    	// If the test case did not specify an AdmissionReviewVersions, default it so the test passes as
    	// this field will be defaulted in production code.
    	for i := range hooks {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/asm6.go

    // and hold assembly state.
    type AsmBuf struct {
    	buf      [100]byte
    	off      int
    	rexflag  int
    	vexflag  bool // Per inst: true for VEX-encoded
    	evexflag bool // Per inst: true for EVEX-encoded
    	rep      bool
    	repn     bool
    	lock     bool
    
    	evex evexBits // Initialized when evexflag is true
    }
    
    // Put1 appends one byte to the end of the buffer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top