Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for descriptor (0.17 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            0 * _
    
            where:
            getter      | _
            "get"       | _
            "getOrNull" | _
            "getOrElse" | _
        }
    
        def "runs side effect when getting #description"() {
            def valueSideEffect = Mock(ValueSupplier.SideEffect)
    
            when:
            property.put("some key", Providers.of("some value").withSideEffect(valueSideEffect))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route.go

    	if in.MaxAge != nil {
    		out.MaxAge = strconv.FormatInt(in.MaxAge.GetSeconds(), 10)
    	}
    	return &out
    }
    
    // GetRouteOperation returns readable route description for trace.
    func GetRouteOperation(in *route.Route, vsName string, port int) string {
    	path := "/*"
    	m := in.GetMatch()
    	ps := m.GetPathSpecifier()
    	if ps != nil {
    		switch ps.(type) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  3. src/go/types/expr.go

    	conversion exprKind = iota
    	expression
    	statement
    )
    
    // target represent the (signature) type and description of the LHS
    // variable of an assignment, or of a function result variable.
    type target struct {
    	sig  *Signature
    	desc string
    }
    
    // newTarget creates a new target for the given type and description.
    // The result is nil if typ is not a signature.
    func newTarget(typ Type, desc string) *target {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. tensorflow/BUILD

    # Description:
    # TensorFlow is a computational framework, primarily for use in machine
    # learning applications.
    
    load("@bazel_skylib//lib:selects.bzl", "selects")
    load("@bazel_skylib//rules:common_settings.bzl", "bool_flag", "bool_setting")
    load("@local_config_cuda//cuda:build_defs.bzl", "if_cuda")
    load(
        "//tensorflow:tensorflow.bzl",
        "VERSION",
        "VERSION_MAJOR",
        "check_deps",
        "if_google",
        "if_oss",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/expr.go

    	conversion exprKind = iota
    	expression
    	statement
    )
    
    // target represent the (signature) type and description of the LHS
    // variable of an assignment, or of a function result variable.
    type target struct {
    	sig  *Signature
    	desc string
    }
    
    // newTarget creates a new target for the given type and description.
    // The result is nil if typ is not a signature.
    func newTarget(typ Type, desc string) *target {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    // areas to minimize fragmentation while eliminating locks in the common case.
    //
    // The algorithm decomposes into several steps.
    // This is a high level description of the algorithm being used. For an overview of GC a good
    // place to start is Richard Jones' gchandbook.org.
    //
    // The algorithm's intellectual heritage includes Dijkstra's on-the-fly algorithm, see
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. cmd/test-utils_test.go

    	}
    }
    
    // ExecObjectLayerAPIAnonTest - Helper function to validate object Layer API handler
    // response for anonymous/unsigned and unknown signature type HTTP request.
    
    // Here is the brief description of some of the arguments to the function below.
    //
    //	apiRouter - http.Handler with the relevant API endPoint (API endPoint under test) registered.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  8. src/testing/testing.go

    		// With -v=json, stdout and stderr are pointing to the same pipe,
    		// which is leading into test2json. In general, operating systems
    		// do a good job of ensuring that writes to the same pipe through
    		// different file descriptors are delivered whole, so that writing
    		// AAA to stdout and BBB to stderr simultaneously produces
    		// AAABBB or BBBAAA on the pipe, not something like AABBBA.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        // the textual format (on the commandline for example).
        return "quant-quantize-composite-functions";
      }
    
      StringRef getDescription() const final {
        // This is a brief description of the pass.
        return "Quantize composite functions with QDQ input/outputs.";
      }
    
      void getDependentDialects(DialectRegistry& registry) const override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  10. hack/local-up-cluster.sh

    source "${KUBE_ROOT}/hack/lib/init.sh"
    kube::util::ensure-gnu-sed
    
    function usage {
                echo "This script starts a local kube cluster. "
                echo "Example 0: hack/local-up-cluster.sh -h  (this 'help' usage description)"
                echo "Example 1: hack/local-up-cluster.sh -o _output/dockerized/bin/linux/amd64/ (run from docker output)"
                echo "Example 2: hack/local-up-cluster.sh -O (auto-guess the bin path for your platform)"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top