Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 749 for naked (0.04 sec)

  1. pkg/test/framework/components/echo/echotest/filters_test.go

    	// naked pod (uninjected)
    	naked1 = &fakeInstance{Cluster: cls1, Namespace: echo1NS, Service: "naked", Subsets: []echo.SubsetConfig{{
    		Annotations: map[string]string{annotation.SidecarInject.Name: "false"},
    	}}}
    	naked2 = &fakeInstance{Cluster: cls2, Namespace: echo1NS, Service: "naked", Subsets: []echo.SubsetConfig{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/config.go

    func (c Config) IsAllNaked() bool {
    	if len(c.Subsets) == 0 {
    		// No subsets - default to not-naked.
    		return false
    	}
    	// if ANY subset has a sidecar, not naked.
    	for _, s := range c.Subsets {
    		if s.Annotations == nil || s.Annotations[annotation.SidecarInject.Name] != "false" {
    			// Sidecar injection is enabled - it's not naked.
    			return false
    		}
    	}
    	// All subsets were annotated indicating no sidecar injection.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. tests/integration/telemetry/api/stats_test.go

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. tests/integration/security/pass_through_filter_chain_test.go

    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			type expect struct {
    				port echo.Port
    				// Plaintext will be sent from Naked pods.
    				plaintextSucceeds bool
    				// MTLS will be sent from all pods other than Naked.
    				mtlsSucceeds bool
    			}
    			cases := []struct {
    				name     string
    				config   string
    				expected []expect
    			}{
    				// There is no authN/authZ policy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  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. 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)
  10. src/cmd/compile/internal/types2/named.go

    //
    // GLOSSARY: Here are a few terms used in this file to describe Named types:
    //  - We say that a Named type is "instantiated" if it has been constructed by
    //    instantiating a generic named type with type arguments.
    //  - We say that a Named type is "declared" if it corresponds to a type
    //    declaration in the source. Instantiated named types correspond to a type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top