Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 50 for vers (0.49 sec)

  1. staging/src/k8s.io/api/apps/v1/types.go

    )
    
    // +genclient
    // +genclient:method=GetScale,verb=get,subresource=scale,result=k8s.io/api/autoscaling/v1.Scale
    // +genclient:method=UpdateScale,verb=update,subresource=scale,input=k8s.io/api/autoscaling/v1.Scale,result=k8s.io/api/autoscaling/v1.Scale
    // +genclient:method=ApplyScale,verb=apply,subresource=scale,input=k8s.io/api/autoscaling/v1.Scale,result=k8s.io/api/autoscaling/v1.Scale
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  2. src/fmt/fmt_test.go

    	// Issue 8965.
    	{"%v", reflect.ValueOf(A{}).Field(0).String(), "<int Value>"}, // Equivalent to the old way.
    	{"%v", reflect.ValueOf(A{}).Field(0), "0"},                    // Sees inside the field.
    
    	// verbs apply to the extracted value too.
    	{"%s", reflect.ValueOf("hello"), "hello"},
    	{"%q", reflect.ValueOf("hello"), `"hello"`},
    	{"%#04x", reflect.ValueOf(256), "0x0100"},
    
    	// invalid reflect.Value doesn't crash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/rbac/v1/generated.pb.go

    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.APIGroups[iNdEx])))
    			i--
    			dAtA[i] = 0x12
    		}
    	}
    	if len(m.Verbs) > 0 {
    		for iNdEx := len(m.Verbs) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.Verbs[iNdEx])
    			copy(dAtA[i:], m.Verbs[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.Verbs[iNdEx])))
    			i--
    			dAtA[i] = 0xa
    		}
    	}
    	return len(dAtA) - i, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/rbac/v1beta1/generated.pb.go

    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.APIGroups[iNdEx])))
    			i--
    			dAtA[i] = 0x12
    		}
    	}
    	if len(m.Verbs) > 0 {
    		for iNdEx := len(m.Verbs) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.Verbs[iNdEx])
    			copy(dAtA[i:], m.Verbs[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.Verbs[iNdEx])))
    			i--
    			dAtA[i] = 0xa
    		}
    	}
    	return len(dAtA) - i, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/rbac/v1alpha1/generated.pb.go

    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.APIGroups[iNdEx])))
    			i--
    			dAtA[i] = 0x1a
    		}
    	}
    	if len(m.Verbs) > 0 {
    		for iNdEx := len(m.Verbs) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.Verbs[iNdEx])
    			copy(dAtA[i:], m.Verbs[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.Verbs[iNdEx])))
    			i--
    			dAtA[i] = 0xa
    		}
    	}
    	return len(dAtA) - i, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  6. pkg/controller/endpointslice/endpointslice_controller_test.go

    }
    
    func expectAction(t *testing.T, actions []k8stesting.Action, index int, verb, resource string) {
    	t.Helper()
    	if len(actions) <= index {
    		t.Fatalf("Expected at least %d actions, got %d", index+1, len(actions))
    	}
    
    	action := actions[index]
    	if action.GetVerb() != verb {
    		t.Errorf("Expected action %d verb to be %s, got %s", index, verb, action.GetVerb())
    	}
    
    	if action.GetResource().Resource != resource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  7. pkg/kubelet/server/server_test.go

    			}
    
    			var url string
    			if test.uid {
    				url = fw.testHTTPServer.URL + "/" + verb + "/" + podNamespace + "/" + podName + "/" + testUID + "/" + expectedContainerName + "?ignore=1"
    			} else {
    				url = fw.testHTTPServer.URL + "/" + verb + "/" + podNamespace + "/" + podName + "/" + expectedContainerName + "?ignore=1"
    			}
    			if verb == "exec" {
    				url += "&command=ls&command=-a"
    			}
    			if test.stdin {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	Kind string `json:"kind" protobuf:"bytes,3,opt,name=kind"`
    	// verbs is a list of supported kube verbs (this includes get, list, watch, create,
    	// update, patch, delete, deletecollection, and proxy)
    	Verbs Verbs `json:"verbs" protobuf:"bytes,4,opt,name=verbs"`
    	// shortNames is a list of suggested short names of the resource.
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  9. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')
      optional string kind = 3;
    
      // verbs is a list of supported kube verbs (this includes get, list, watch, create,
      // update, patch, delete, deletecollection, and proxy)
      optional Verbs verbs = 4;
    
      // shortNames is a list of suggested short names of the resource.
      repeated string shortNames = 5;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')
      optional string kind = 3;
    
      // verbs is a list of supported kube verbs (this includes get, list, watch, create,
      // update, patch, delete, deletecollection, and proxy)
      optional Verbs verbs = 4;
    
      // shortNames is a list of suggested short names of the resource.
      // +listType=atomic
      repeated string shortNames = 5;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
Back to top