Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for methodSet (0.29 sec)

  1. 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)
  2. 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)
  3. 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)
  4. cmd/test-utils_test.go

    			// 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":
    			bucket.Methods(http.MethodPut).HandlerFunc(api.PutBucketLifecycleHandler).Queries("lifecycle", "")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  5. src/net/http/fs_test.go

    	//
    	// 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)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

                Method viewMethod = weakViewMethod.getMethod();
    
                // Don't generate method if it's not part of the view schema
                Wrapper<Method> methodKey = SIGNATURE_EQUIVALENCE.wrap(viewMethod);
                if (!viewMethods.contains(methodKey)) {
                    continue;
                }
    
                if (methodBinding instanceof DirectMethodBinding) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  7. 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)
Back to top