Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 95 for MethodGet (0.16 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/TypeInspector.java

            }
    
            for (Method method : type.getDeclaredMethods()) {
                Set<Type> methodSet = new HashSet<Type>();
                visit(method.getGenericReturnType(), types, methodSet);
                for (TypeVariable<Method> typeVariable : method.getTypeParameters()) {
                    visit(typeVariable, types, methodSet);
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. src/net/http/routing_tree.go

    }
    
    // matchingMethods adds to methodSet all the methods that would result in a
    // match if passed to routingNode.match with the given host and path.
    func (root *routingNode) matchingMethods(host, path string, methodSet map[string]bool) {
    	if host != "" {
    		root.findChild(host).matchingMethodsPath(path, methodSet)
    	}
    	root.emptyChild.matchingMethodsPath(path, methodSet)
    	if methodSet["GET"] {
    		methodSet["HEAD"] = true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/MutableClassDetails.java

    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.util.TreeMap;
    
    class MutableClassDetails implements ClassDetails {
        private final Class<?> type;
        private final MethodSet instanceMethods = new MethodSet();
        private final Map<String, MutablePropertyDetails> properties = new TreeMap<String, MutablePropertyDetails>();
        private final List<Method> methods = new ArrayList<Method>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. src/go/doc/reader.go

    // function/method sets
    //
    // Internally, we treat functions like methods and collect them in method sets.
    
    // A methodSet describes a set of methods. Entries where Decl == nil are conflict
    // entries (more than one method with the same name at the same embedding level).
    type methodSet map[string]*Func
    
    // recvString returns a string representation of recv of the form "T", "*T",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/decls2/decls2a.go

    // Disabled for now: LookupFieldOrMethod will find Pointer even though
    // it's double-declared (it would cost extra in the common case to verify
    // this). But the MethodSet computation will not find it due to the name
    // collision caused by the double-declaration, leading to an internal
    // inconsistency while we are verifying one computation against the other.
    // var _ = T1c{}.Pointer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    		GotConn: func(httptrace.GotConnInfo) {
    			// tr.getConn should leave it for the HTTP/2 alt to call GotConn.
    			t.Error("GotConn called")
    		},
    	})
    	req, _ := NewRequestWithContext(ctx, MethodGet, "https://example.com", nil)
    	_, err := tr.RoundTrip(req)
    	if err != errFakeRoundTrip {
    		t.Errorf("got error: %v; want %q", err, errFakeRoundTrip)
    	}
    	wantIdle("after round trip", 1)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. api/go1.5.txt

    pkg go/types, method (*Map) String() string
    pkg go/types, method (*Map) Underlying() Type
    pkg go/types, method (*MethodSet) At(int) *Selection
    pkg go/types, method (*MethodSet) Len() int
    pkg go/types, method (*MethodSet) Lookup(*Package, string) *Selection
    pkg go/types, method (*MethodSet) String() string
    pkg go/types, method (*Named) AddMethod(*Func)
    pkg go/types, method (*Named) Method(int) *Func
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  8. src/go/types/example_test.go

    	//
    	// Method set of *temperature.Celsius:
    	// method (*temperature.Celsius) SetF(f float64)
    	// method (*temperature.Celsius) String() string
    	//
    	// Method set of temperature.S:
    	// MethodSet {}
    }
    
    // ExampleInfo prints various facts recorded by the type checker in a
    // types.Info struct: definitions of and references to each named object,
    // and the type, value, and mode of every expression in the package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. 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)
  10. src/net/http/h2_bundle.go

    		// followed by the query production, see Sections 3.3 and 3.4 of
    		// [RFC3986]).
    		f(":authority", host)
    		m := req.Method
    		if m == "" {
    			m = MethodGet
    		}
    		f(":method", m)
    		if req.Method != "CONNECT" {
    			f(":path", path)
    			f(":scheme", req.URL.Scheme)
    		}
    		if trailers != "" {
    			f("trailer", trailers)
    		}
    
    		var didUA bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top