Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,572 for naked (0.44 sec)

  1. pkg/test/framework/components/echo/common/deployment/echos.go

    		ServiceAccount:  true,
    		Headless:        true,
    		StatefulSet:     true,
    		Ports:           ports.Headless(),
    		Subsets:         []echo.SubsetConfig{{}},
    		IncludeExtAuthz: c.IncludeExtAuthz,
    	}
    
    	naked := echo.Config{
    		Service:        NakedSvc,
    		ServiceAccount: true,
    		Ports:          ports.All(),
    		Subsets: []echo.SubsetConfig{
    			{
    				Annotations: map[string]string{annotation.SidecarInject.Name: "false"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/check/checkers.go

    			return nil
    		}
    
    		allClusters := t.Clusters()
    		if isNaked(from) {
    			// Naked clients rely on k8s DNS to lookup endpoint IPs. This
    			// means that they will only ever reach endpoint in the same cluster.
    			return checkReachedSourceClusterOnly(result, allClusters)
    		}
    
    		if to.Config().IsAllNaked() {
    			// Requests to naked services will not cross network boundaries.
    			// Istio filters out cross-network endpoints.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 16:19:07 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/nodes_test.go

    	testPos(t, decls, "package p; ", "",
    		func(f *File) Node { return f.DeclList[0] },
    	)
    
    	// embed expressions in a composite literal so we can test key:value and naked composite literals
    	testPos(t, exprs, "package p; var _ = T{ ", " }",
    		func(f *File) Node { return f.DeclList[0].(*VarDecl).Values.(*CompositeLit).ElemList[0] },
    	)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 18:45:06 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

    XlaCompiler::CompileOptions GetCompileOptions(bool for_pjrt = false) {
      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;
      if (for_pjrt) {
        compile_options.use_tuple_arg = false;
        compile_options.always_return_tuple = true;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/lostcancel/lostcancel.go

    				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)
  6. cmd/prepare-storage.go

    // https://github.com/minio/minio/issues/5667
    var errErasureV3ThisEmpty = fmt.Errorf("Erasure format version 3 has This field empty")
    
    // isServerResolvable - checks if the endpoint is resolvable
    // by sending a naked HTTP request with liveness checks.
    func isServerResolvable(endpoint Endpoint, timeout time.Duration) error {
    	serverURL := &url.URL{
    		Scheme: endpoint.Scheme,
    		Host:   endpoint.Host,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 19 08:06:49 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. pkg/controller/disruption/disruption_test.go

    	add(t, dc.pdbStore, pdb)
    	dc.sync(ctx, pdbName)
    	// This verifies that when a PDB has 0 pods, disruptions are not allowed.
    	ps.VerifyDisruptionAllowed(t, pdbName, 0)
    
    	pod, _ := newPod(t, "naked")
    	add(t, dc.podStore, pod)
    	dc.sync(ctx, pdbName)
    
    	ps.VerifyDisruptionAllowed(t, pdbName, 0)
    	verifyEventEmitted(t, dc, "UnmanagedPods")
    
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/calloptions.go

    	HTTPProxy string
    }
    
    // TLS settings
    type TLS struct {
    	// Use the custom certificate to make the call. This is mostly used to make mTLS request directly
    	// (without proxy) from naked client to test certificates issued by custom CA instead of the Istio self-signed CA.
    	Cert, Key, CaCert string
    
    	// Use the custom certificates file to make the call.
    	CertFile, KeyFile, CaCertFile string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 13K bytes
    - Viewed (0)
  9. tests/integration/ambient/baseline_test.go

    			mtlsOnExpect := func(from echo.Instance, opts echo.CallOptions) bool {
    				if from.Config().IsNaked() || opts.To.Config().IsNaked() {
    					// If one of the two endpoints is naked, we don't send mTLS
    					return false
    				}
    				if opts.To.Config().IsHeadless() && opts.To.Instances().Contains(from) {
    					// pod calling its own pod IP will not be intercepted
    					return false
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  10. src/go/printer/printer_test.go

    	if noparen != original {
    		t.Errorf("got %q, want %q", noparen, original)
    	}
    }
    
    // Verify that we don't print a newline between "return" and its results, as
    // that would incorrectly cause a naked return.
    func TestIssue32854(t *testing.T) {
    	src := `package foo
    
    func f() {
            return Composite{
                    call(),
            }
    }`
    	fset := token.NewFileSet()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top