Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 204 for returns_ (0.31 sec)

  1. src/net/http/server.go

    // stripHostPort returns h without any trailing ":<port>".
    func stripHostPort(h string) string {
    	// If no port on host, return unchanged
    	if !strings.Contains(h, ":") {
    		return h
    	}
    	host, _, err := net.SplitHostPort(h)
    	if err != nil {
    		return h // on error, return unchanged
    	}
    	return host
    }
    
    // Handler returns the handler to use for the given request,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework_test.go

    	if err := DecodeInto(injArgs, &inj); err != nil {
    		return nil, err
    	}
    	return &TestScoreWithNormalizePlugin{scoreWithNormalizePlugin2, inj}, nil
    }
    
    func newScorePlugin1(_ context.Context, injArgs runtime.Object, f framework.Handle) (framework.Plugin, error) {
    	var inj injectedResult
    	if err := DecodeInto(injArgs, &inj); err != nil {
    		return nil, err
    	}
    	return &TestScorePlugin{scorePlugin1, inj}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "type": "boolean"
              },
              "reason": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    				return vpath
    			}
    			return importPath[:len(importPath)-chopped] + "/" + vpath
    		}
    	}
    	return path
    }
    
    var (
    	modulePrefix   = []byte("\nmodule ")
    	goModPathCache par.Cache[string, string]
    )
    
    // goModPath returns the module path in the go.mod in dir, if any.
    func goModPath(dir string) (path string) {
    	return goModPathCache.Do(dir, func() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

              if (!attr.has_value()) return true;
              if (attr->getType().getShape()[0] != operand_type.getRank())
                return false;
              if (!attr->isSplat()) return false;
              if (attr->getElementType() != rewriter.getIntegerType(64))
                return false;
              if (attr->getSplatValue<APInt>().getSExtValue() != 1) return false;
              return true;
            };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__storagemigration.k8s.io__v1alpha1_openapi.json

    "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.3K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

    "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  8. cmd/storage-datatypes_gen.go

    				err = msgp.WrapError(err, "FilePath")
    				return
    			}
    		case "fi":
    			bts, err = z.FI.UnmarshalMsg(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "FI")
    				return
    			}
    		default:
    			bts, err = msgp.Skip(bts)
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	o = bts
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

        return refreshNanos > 0;
      }
    
      boolean usesAccessQueue() {
        return expiresAfterAccess() || evictsBySize();
      }
    
      boolean usesWriteQueue() {
        return expiresAfterWrite();
      }
    
      boolean recordsWrite() {
        return expiresAfterWrite() || refreshes();
      }
    
      boolean recordsAccess() {
        return expiresAfterAccess();
      }
    
      boolean recordsTime() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/LocalCache.java

        return refreshNanos > 0;
      }
    
      boolean usesAccessQueue() {
        return expiresAfterAccess() || evictsBySize();
      }
    
      boolean usesWriteQueue() {
        return expiresAfterWrite();
      }
    
      boolean recordsWrite() {
        return expiresAfterWrite() || refreshes();
      }
    
      boolean recordsAccess() {
        return expiresAfterAccess();
      }
    
      boolean recordsTime() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top