Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for MethodGet (0.13 sec)

  1. cmd/test-utils_test.go

    		case "GetBucketPolicy":
    			// Register Get Bucket policy HTTP Handler.
    			bucket.Methods(http.MethodGet).HandlerFunc(api.GetBucketPolicyHandler).Queries("policy", "")
    		case "GetBucketLifecycle":
    			bucket.Methods(http.MethodGet).HandlerFunc(api.GetBucketLifecycleHandler).Queries("lifecycle", "")
    		case "PutBucketLifecycle":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  2. src/net/http/fs_test.go

    	}
    
    	// Get contents via various methods.
    	//
    	// See https://go.dev/issue/59471 for a proposal to limit the set of methods handled.
    	// For now, test the historical behavior.
    	for _, method := range []string{
    		MethodGet,
    		MethodPost,
    		MethodPut,
    		MethodPatch,
    		MethodDelete,
    		MethodOptions,
    		MethodTrace,
    	} {
    		req.Method = method
    		_, body := getBody(t, method, req, c)
    		if !bytes.Equal(body, file) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		longRunningFunc,
    		fakeFilter,
    		func(_ *http.Request, _, _ string) fcrequest.WorkEstimate { return workExpected },
    		time.Minute/4,
    	)
    
    	w := httptest.NewRecorder()
    	req, err := http.NewRequest(http.MethodGet, "/bar", nil)
    	if err != nil {
    		t.Fatalf("Failed to create new http request - %v", err)
    	}
    	req = req.WithContext(apirequest.WithRequestInfo(req.Context(), reqDigestExpected.RequestInfo))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

            private boolean needGroovyObject;
            private boolean providesOwnToString;
            private final List<PropertyMetadata> mutableProperties = new ArrayList<>();
            private final MethodSet actionMethods = new MethodSet();
            private final SetMultimap<String, Method> closureMethods = LinkedHashMultimap.create();
    
            public DslMixInPropertyType(ExtensibleTypePropertyHandler extensibleTypeHandler) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api_test.go

    		{"type ( E1[P any] struct{ f P }; E2[P any] struct{}; x struct{ E1[int]; *E2[int] }); func (E2[P]) f() {}", false, []int{1, 0}, false},
    
    		// outside methodset
    		// (*T).f method exists, but value of type T is not addressable
    		{"var x T; type T struct{}; func (*T) f() {}", false, nil, true},
    
    		// outside method set of a generic type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  6. src/go/types/api_test.go

    		{"type ( E1[P any] struct{ f P }; E2[P any] struct{}; x struct{ E1[int]; *E2[int] }); func (E2[P]) f() {}", false, []int{1, 0}, false},
    
    		// outside methodset
    		// (*T).f method exists, but value of type T is not addressable
    		{"var x T; type T struct{}; func (*T) f() {}", false, nil, true},
    
    		// outside method set of a generic type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top