Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for disambiguate (0.15 sec)

  1. cmd/endpoint.go

    				u.Path = u.Path[1:]
    			}
    		}
    
    	} else {
    		// Only check if the arg is an ip address and ask for scheme since its absent.
    		// localhost, example.com, any FQDN cannot be disambiguated from a regular file path such as
    		// /mnt/export1. So we go ahead and start the minio server in FS modes in these cases.
    		if isHostIP(arg) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway_simulation_test.go

    						RouteConfigMatched: "http.80",
    						VirtualHostMatched: "blackhole:80",
    					},
    				},
    			},
    		},
    		simulationTest{
    			name: "multiple wildcards with virtual service disambiguator",
    			config: createGateway("alpha", "", `
    hosts:
      - ns-1/*.example.com
    port:
      name: http
      number: 80
      protocol: HTTP`) +
    				createGateway("beta", "", `
    hosts:
      - ns-2/*.example.com
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    the slice becomes (2, 1, 5, 5, 2, 5).
    Let us walk step by step through each argument specification.
    
    1.  The first argument in the example slice is turned into `begin = 1` and
    `end = begin + 1 = 2`. To disambiguate from the original spec `2:4` we
    also set the appropriate bit in `shrink_axis_mask`.
    
    2. `2:4` is contributes 2, 4, 1 to begin, end, and stride. All masks have
    zero bits contributed.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. RELEASE.md

            `tf.data.Options.experimental_optimization.autotune_buffers`.
        *   Add support for user-defined names of tf.data core Python API, which can
            be used to disambiguate tf.data events in TF Profiler Trace Viewer.
        *   Promote `tf.data.experimental.sample_from_datasets` API to
            `tf.data.Dataset.sample_from_datasets` and deprecate the experimental
            endpoint.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	Param AST
    	Arg   AST
    }
    
    func (tpqa *TemplateParamQualifiedArg) print(ps *printState) {
    	// We only demangle the actual template argument.
    	// That is what the LLVM demangler does.
    	// The parameter disambiguates the argument,
    	// but is hopefully not required by a human reader.
    	ps.print(tpqa.Arg)
    }
    
    func (tpqa *TemplateParamQualifiedArg) Traverse(fn func(AST) bool) {
    	if fn(tpqa) {
    		tpqa.Param.Traverse(fn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top