Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of about 10,000 for returns_ (0.14 sec)

  1. android/guava/src/com/google/common/graph/GraphBuilder.java

        super(directed);
      }
    
      /** Returns a {@link GraphBuilder} for building directed graphs. */
      public static GraphBuilder<Object> directed() {
        return new GraphBuilder<>(true);
      }
    
      /** Returns a {@link GraphBuilder} for building undirected graphs. */
      public static GraphBuilder<Object> undirected() {
        return new GraphBuilder<>(false);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  2. src/net/http/request.go

    	return r.Header.Get("User-Agent")
    }
    
    // Cookies parses and returns the HTTP cookies sent with the request.
    func (r *Request) Cookies() []*Cookie {
    	return readCookies(r.Header, "")
    }
    
    // CookiesNamed parses and returns the named HTTP cookies sent with the request
    // or an empty slice if none matched.
    func (r *Request) CookiesNamed(name string) []*Cookie {
    	if name == "" {
    		return []*Cookie{}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. src/go/types/context.go

    		// TODO(rfindley): consider asserting on isGeneric(typ) here, if and when
    		// isGeneric handles *Signature types.
    		h.typeList(targs)
    	}
    
    	return strings.ReplaceAll(buf.String(), " ", "#")
    }
    
    // lookup returns an existing instantiation of orig with targs, if it exists.
    // Otherwise, it returns nil.
    func (ctxt *Context) lookup(h string, orig Type, targs []Type) Type {
    	ctxt.mu.Lock()
    	defer ctxt.mu.Unlock()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/library/authz.go

    //
    // Examples:
    //
    //	authorizer.group('apps') // returns a GroupCheck for the 'apps' API group
    //	authorizer.group('') // returns a GroupCheck for the core API group
    //	authorizer.group('example.com') // returns a GroupCheck for the custom resources in the 'example.com' API group
    //
    // serviceAccount
    //
    // Returns an Authorizer configured to check authorization for the provided service account namespace and name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/helper/helpers.go

    		return true
    	}
    	return strings.HasPrefix(string(medium), string(v1.StorageMediumHugePagesPrefix))
    }
    
    // HugePageSizeFromMedium returns the page size for the specified huge page medium.
    // If the specified input is not a valid huge page medium an error is returned.
    func HugePageSizeFromMedium(medium v1.StorageMedium) (resource.Quantity, error) {
    	if !IsHugePageMedium(medium) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/tag/tag.go

    		return x
    	}
    	return -1
    }
    
    // cmp returns an integer comparing a and b lexicographically.
    func cmp(a Index, b []byte) int {
    	n := len(a)
    	if len(b) < n {
    		n = len(b)
    	}
    	for i, c := range b[:n] {
    		switch {
    		case a[i] > c:
    			return 1
    		case a[i] < c:
    			return -1
    		}
    	}
    	switch {
    	case len(a) < len(b):
    		return -1
    	case len(a) > len(b):
    		return 1
    	}
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/graph/ValueGraphBuilder.java

        super(directed);
      }
    
      /** Returns a {@link ValueGraphBuilder} for building directed graphs. */
      public static ValueGraphBuilder<Object, Object> directed() {
        return new ValueGraphBuilder<>(true);
      }
    
      /** Returns a {@link ValueGraphBuilder} for building undirected graphs. */
      public static ValueGraphBuilder<Object, Object> undirected() {
        return new ValueGraphBuilder<>(false);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/mvs/mvs.go

    // the MVS algorithms parallelize the traversal to overlap network delays.
    type Reqs interface {
    	// Required returns the module versions explicitly required by m itself.
    	// The caller must not modify the returned list.
    	Required(m module.Version) ([]module.Version, error)
    
    	// Max returns the maximum of v1 and v2 (it returns either v1 or v2)
    	// in the module with path p.
    	//
    	// For all versions v, Max(v, "none") must be v,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/CacheLoader.java

      }
    
      /**
       * Returns a cache loader that uses {@code function} to load keys, without supporting either
       * reloading or bulk loading. This allows creating a cache loader using a lambda expression.
       *
       * <p>The returned object is serializable if {@code function} is serializable.
       *
       * @param function the function to be used for loading values; must never return {@code null}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 19 20:20:14 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Collections2.java

            sb.append(o);
          }
        }
        return sb.append(']').toString();
      }
    
      /** Returns best-effort-sized StringBuilder based on the given collection size. */
      static StringBuilder newStringBuilderForCollection(int size) {
        checkNonnegative(size, "size");
        return new StringBuilder((int) Math.min(size * 8L, Ints.MAX_POWER_OF_TWO));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top