Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 97 for GetPod (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. android/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)
  5. 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)
  6. guava/src/com/google/common/collect/MapMakerInternalMap.java

      /** The maximum number of segments to allow; used to bound constructor arguments. */
      static final int MAX_SEGMENTS = 1 << 16; // slightly conservative
    
      /** Number of (unsynchronized) retries in the containsValue method. */
      static final int CONTAINS_VALUE_RETRIES = 3;
    
      /**
       * Number of cache access operations that can be buffered per segment before the cache's recency
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    			return nil, err
    		}
    	}
    	if !isHTTP {
    		req.closeBody()
    		return nil, badStringError("unsupported protocol scheme", scheme)
    	}
    	if req.Method != "" && !validMethod(req.Method) {
    		req.closeBody()
    		return nil, fmt.Errorf("net/http: invalid method %q", req.Method)
    	}
    	if req.URL.Host == "" {
    		req.closeBody()
    		return nil, errors.New("http: no Host in request URL")
    	}
    
    	// Transport request context.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/parser.go

    	f := new(FuncDecl)
    	f.pos = p.pos()
    	f.Pragma = p.takePragma()
    
    	var context string
    	if p.got(_Lparen) {
    		context = "method"
    		rcvr := p.paramList(nil, nil, _Rparen, false)
    		switch len(rcvr) {
    		case 0:
    			p.error("method has no receiver")
    		default:
    			p.error("method has multiple receivers")
    			fallthrough
    		case 1:
    			f.Recv = rcvr[0]
    		}
    	}
    
    	if p.tok == _Name {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

      /** The maximum number of segments to allow; used to bound constructor arguments. */
      static final int MAX_SEGMENTS = 1 << 16; // slightly conservative
    
      /** Number of (unsynchronized) retries in the containsValue method. */
      static final int CONTAINS_VALUE_RETRIES = 3;
    
      /**
       * Number of cache access operations that can be buffered per segment before the cache's recency
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            if (!isProperUsage(allowDeprecated, properUsages)) {
                String msgTemplate = "Calling configuration method '%s' is deprecated for configuration '%s', which has permitted usage(s):\n" +
                    "%s\n" +
                    "This method is only meant to be called on configurations which allow the %susage(s): '%s'.";
                String currentUsageDesc = UsageDescriber.describeCurrentUsage(this);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
Back to top