Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 148 for METHOD (0.18 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    			routes = append(routes, route)
    		case "CONNECT":
    			for _, method := range connecter.ConnectMethods() {
    				connectProducedObject := storageMeta.ProducesObject(method)
    				if connectProducedObject == nil {
    					connectProducedObject = "string"
    				}
    				doc := "connect " + method + " requests to " + kind
    				if isSubresource {
    					doc = "connect " + method + " requests to " + subresource + " of " + kind
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	// Any top-level qualifiers belong to the function type.
    	if mwq != nil {
    		a = mwq.Method
    		mwq.Method = ft
    		ft = mwq
    	}
    	if q, ok := a.(*Qualified); ok && q.LocalName {
    		p := &q.Name
    		if da, ok := (*p).(*DefaultArg); ok {
    			p = &da.Arg
    		}
    		if mwq, ok := (*p).(*MethodWithQualifiers); ok {
    			*p = mwq.Method
    			mwq.Method = ft
    			ft = mwq
    		}
    	}
    
    	r := AST(&Typed{Name: a, Type: ft})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

          }
    
        /**
         * Sets the socket factory used to create connections. OkHttp only uses the parameterless
         * [SocketFactory.createSocket] method to create unconnected sockets. Overriding this method,
         * e. g., allows the socket to be bound to a specific local address.
         *
         * If unset, the [system-wide default][SocketFactory.getDefault] socket factory will be used.
         */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Multimaps.java

       * generated by {@code factory}.
       *
       * <p><b>Warning: do not use</b> this method when the collections returned by {@code factory}
       * implement either {@link List} or {@code Set}! Use the more specific method {@link
       * #newListMultimap}, {@link #newSetMultimap} or {@link #newSortedSetMultimap} instead, to avoid
       * very surprising behavior from {@link Multimap#equals}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Multimaps.java

       * generated by {@code factory}.
       *
       * <p><b>Warning: do not use</b> this method when the collections returned by {@code factory}
       * implement either {@link List} or {@code Set}! Use the more specific method {@link
       * #newListMultimap}, {@link #newSetMultimap} or {@link #newSortedSetMultimap} instead, to avoid
       * very surprising behavior from {@link Multimap#equals}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    // Note: Most users will want to immediately enable compression with the
    // EnableCompression method. See that method's comment for why you may or may
    // not want to enable compression.
    //
    // The DNS message is appended to the provided initial buffer buf (which may be
    // nil) as it is built. The final message is returned by the (*Builder).Finish
    // method, which includes buf[:len(buf)] and may return the same underlying
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Starting in Gradle 9.0, using a configuration inconsistently with its intended usage will be prohibited.
    
    Also note that although it is not currently restricted, the `getDependencies()` method is really only intended for use with DECLARABLE configurations.
    The `getAllDependencies()` method, which retrieves all declared dependencies on a configuration and any superconfigurations, will not be restricted to any particular usage.
    
    [[deprecated_access_to_conventions]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                        // If this part is in lower case, then we do not need a class
                        // check. other parts of the property expression will be tested
                        // by a different method call to this method, so foo.Bar.bar
                        // can still be resolved to the class foo.Bar and the static
                        // field bar.
                        if (!testVanillaNameForClass(varName)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // SetUpTestCase() method to shadow the one defined in the super
      // class.
      static void SetUpTestCase() {}
    
      // Tears down the stuff shared by all tests in this test case.
      //
      // Google Test will call Foo::TearDownTestCase() after running the last
      // test in test case Foo.  Hence a sub-class can define its own
      // TearDownTestCase() method to shadow the one defined in the super
      // class.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
                      if (!method.getDeclaringClass().equals(type)) {
                        return method.invoke(delegate, args);
                      }
                      checkState(started.getCount() == 1);
                      started.countDown();
                      try {
                        return method.invoke(delegate, args);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
Back to top