Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for Naked (0.04 sec)

  1. tensorflow/compiler/jit/xla_compiler_options_util.cc

        bool has_ref_vars, bool may_alias_resource_update) {
      XlaCompiler::CompileOptions compile_options;
      compile_options.is_entry_computation = true;
      // Optimization: where possible, have the computation return a naked array
      // rather than a one-element tuple.
      compile_options.always_return_tuple = false;
      compile_options.alias_resource_update =
          !has_ref_vars && may_alias_resource_update;
      return compile_options;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. tests/integration/pilot/locality_test.go

    func TestLocality(t *testing.T) {
    	// nolint: staticcheck
    	framework.
    		NewTest(t).
    		RequiresSingleCluster().
    		Run(func(t framework.TestContext) {
    			destA := apps.B[0]
    			destB := apps.C[0]
    			destC := apps.Naked[0]
    			if !t.Settings().Skip(echo.VM) {
    				// TODO do we even need this to be a VM
    				destC = apps.VM[0]
    			}
    
    			cases := []struct {
    				name     string
    				input    LocalityInput
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/lostcancel/lostcancel.go

    			ast.Inspect(stmt, func(n ast.Node) bool {
    				switch n := n.(type) {
    				case *ast.Ident:
    					if pass.TypesInfo.Uses[n] == v {
    						found = true
    					}
    				case *ast.ReturnStmt:
    					// A naked return statement counts as a use
    					// of the named result variables.
    					if n.Results == nil && vIsNamedResult {
    						found = true
    					}
    				}
    				return !found
    			})
    		}
    		return found
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/LegacyTypesSupport.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.util.Set;
    
    /**
     * Enriches class loading with empty interfaces for certain types that have been removed,
     * but which are baked into the bytecode generated by the Groovy compiler.
     */
    @ServiceScope(Scope.Global.class)
    public interface LegacyTypesSupport {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. src/runtime/debug/stack_test.go

    	// (for whatever value of GOROOT is baked into the binary, not the one
    	// that may be set in the environment).
    	fileGoroot := ""
    	if envGoroot := os.Getenv("GOROOT"); envGoroot != "" {
    		// Since GOROOT is set explicitly in the environment, we can't be certain
    		// that it is the same GOROOT value baked into the binary, and we can't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/common/deployment/external.go

    		Ports:             ports.All(),
    		// Set up TLS certs on the server. This will make the server listen with these credentials.
    		TLSSettings: &common.TLSSettings{
    			// Echo has these test certs baked into the docker image
    			RootCert:   file.MustAsString(path.Join(env.IstioSrc, "tests/testdata/certs/dns/root-cert.pem")),
    			ClientCert: file.MustAsString(path.Join(env.IstioSrc, "tests/testdata/certs/dns/cert-chain.pem")),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/build_trimpath_goroot.txt

    ! exec ./example.test-trimpath.exe -test.v
    stdout '^GOROOT $'
    stderr 'cannot find package "runtime" in any of:\n\t\(\$GOROOT not set\)\n\t'$WORK${/}gopath${/}src${/}runtime' \(from \$GOPATH\)$'
    
    # If a correct GOROOT is baked in to the 'go' command itself, 'go run' and
    # 'go test' should not implicitly set GOROOT in the process environment
    # (because that could mask an unexpected production dependency on the GOROOT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/README.md

    So basically selecting the right binary for one of the above cases is a heuristic with 2 inputs:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. tests/integration/security/filebased_tls_origination/main_test.go

    				TLS:          true,
    			},
    		},
    		// Set up TLS certs on the server. This will make the server listen with these credentials.
    		TLSSettings: &common.TLSSettings{
    			// Echo has these test certs baked into the docker image
    			RootCert:   mustReadCert("root-cert.pem"),
    			ClientCert: mustReadCert("cert-chain.pem"),
    			Key:        mustReadCert("key.pem"),
    			// Override hostname to match the SAN in the cert we are using
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. src/net/ipsock_posix.go

    // IPv6 support too. So probe the kernel to figure it out.
    func (p *ipStackCapabilities) probe() {
    	switch runtime.GOOS {
    	case "js", "wasip1":
    		// Both ipv4 and ipv6 are faked; see net_fake.go.
    		p.ipv4Enabled = true
    		p.ipv6Enabled = true
    		p.ipv4MappedIPv6Enabled = true
    		return
    	}
    
    	s, err := sysSocket(syscall.AF_INET, syscall.SOCK_STREAM, syscall.IPPROTO_TCP)
    	switch err {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top