Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for restful (0.12 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    limitations under the License.
    */
    
    package v1beta1
    
    // This file contains a collection of methods that can be used from go-restful to
    // generate Swagger API documentation for its models. Please read this PR for more
    // information on the implementation: https://github.com/emicklei/go-restful/pull/215
    //
    // TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    		if retErr == jsonpatch.ErrBadJSONPatch {
    			return nil, nil, errors.NewBadRequest(retErr.Error())
    		}
    		return patchedJS, strictErrors, retErr
    	default:
    		// only here as a safety net - go-restful filters content-type
    		return nil, nil, fmt.Errorf("unknown Content-Type header for patch: %v", p.patchType)
    	}
    }
    
    type smpPatcher struct {
    	*patcher
    
    	// Schema
    	schemaReferenceObj runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	// It is set during PrepareRun if `openAPIConfig` is non-nil unless `skipOpenAPIInstallation` is true.
    	OpenAPIV3VersionedService *handler3.OpenAPIService
    
    	// StaticOpenAPISpec is the spec derived from the restful container endpoints.
    	// It is set during PrepareRun.
    	StaticOpenAPISpec *spec.Swagger
    
    	// PostStartHooks are each called after the server has started listening, in a separate go func for each
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  4. src/math/bits/bits_test.go

    		{_M32, _M32, _M32 - 1, 1, 42},
    	} {
    		testMul("Mul32", Mul32, a.x, a.y, a.hi, a.lo)
    		testMul("Mul32 symmetric", Mul32, a.y, a.x, a.hi, a.lo)
    		testDiv("Div32", Div32, a.hi, a.lo+a.r, a.y, a.x, a.r)
    		testDiv("Div32 symmetric", Div32, a.hi, a.lo+a.r, a.x, a.y, a.r)
    	}
    }
    
    func TestMulDiv64(t *testing.T) {
    	testMul := func(msg string, f func(x, y uint64) (hi, lo uint64), x, y, hi, lo uint64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 22 20:11:06 UTC 2020
    - 32.5K bytes
    - Viewed (0)
  5. pkg/controller/daemon/util/daemonset_util_test.go

    				featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, fg, f)
    				t.Run(fmt.Sprintf("%v (%t)", fg, f), tf)
    			}()
    		}
    	}
    }
    
    func TestGetTargetNodeName(t *testing.T) {
    	testFun := func(t *testing.T) {
    		tests := []struct {
    			pod         *v1.Pod
    			nodeName    string
    			expectedErr bool
    		}{
    			{
    				pod: &v1.Pod{
    					ObjectMeta: metav1.ObjectMeta{
    						Name:      "pod1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. src/runtime/mgcstack.go

    // (The first object that was not included in the binary search tree.)
    // If n == 0, returns nil, x.
    func binarySearchTree(x *stackObjectBuf, idx int, n int) (root *stackObject, restBuf *stackObjectBuf, restIdx int) {
    	if n == 0 {
    		return nil, x, idx
    	}
    	var left, right *stackObject
    	left, x, idx = binarySearchTree(x, idx, n/2)
    	root = &x.obj[idx]
    	idx++
    	if idx == len(x.obj) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. src/crypto/aes/aes_test.go

    		}
    
    		// i *= x in GF(2) modulo the polynomial
    		i <<= 1
    		if i&0x100 != 0 {
    			i ^= poly
    		}
    	}
    	return s
    }
    
    // Test all mul inputs against bit-by-bit n² algorithm.
    func TestMul(t *testing.T) {
    	for i := uint32(0); i < 256; i++ {
    		for j := uint32(0); j < 256; j++ {
    			// Multiply i, j bit by bit.
    			s := uint8(0)
    			for k := uint(0); k < 8; k++ {
    				for l := uint(0); l < 8; l++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 14:58:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/anames.go

    	"RDGSBASEQ",
    	"RDMSR",
    	"RDPID",
    	"RDPKRU",
    	"RDPMC",
    	"RDRANDL",
    	"RDRANDQ",
    	"RDRANDW",
    	"RDSEEDL",
    	"RDSEEDQ",
    	"RDSEEDW",
    	"RDTSC",
    	"RDTSCP",
    	"REP",
    	"REPN",
    	"RETFL",
    	"RETFQ",
    	"RETFW",
    	"ROLB",
    	"ROLL",
    	"ROLQ",
    	"ROLW",
    	"RORB",
    	"RORL",
    	"RORQ",
    	"RORW",
    	"RORXL",
    	"RORXQ",
    	"ROUNDPD",
    	"ROUNDPS",
    	"ROUNDSD",
    	"ROUNDSS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
Back to top