Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,986 for naked (0.05 sec)

  1. 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)
  2. pkg/test/framework/components/echo/match/matchers_test.go

    	// headless
    	headless1 = &fakeInstance{Cluster: cls1, Namespace: namespace.Static("echo"), Service: "headless", Headless: true}
    	// naked pod (uninjected)
    	naked1 = &fakeInstance{Cluster: cls1, Namespace: namespace.Static("echo"), Service: "naked", Subsets: []echo.SubsetConfig{{
    		Annotations: map[string]string{annotation.SidecarInject.Name: "false"},
    	}}}
    	// external svc
    	external1 = &fakeInstance{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. tests/integration/pilot/headers_test.go

    				return nil
    			})
    
    			// Check request and responses have no proxy headers
    			instance.CallOrFail(t, echo.CallOptions{
    				To: apps.Naked,
    				Port: echo.Port{
    					Name: ports.HTTP.Name,
    				},
    				Check: check.And(check.OK(), checkNoProxyHeaders),
    			})
    			apps.Naked[0].CallOrFail(t, echo.CallOptions{
    				To: instance,
    				Port: echo.Port{
    					Name: ports.HTTP.Name,
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. tests/integration/security/util/framework.go

    	CSvc             = "c"
    	DSvc             = "d"
    	ESvc             = "e"
    	MultiversionSvc  = "multiversion"
    	VMSvc            = "vm"
    	HeadlessSvc      = "headless"
    	NakedSvc         = "naked"
    	HeadlessNakedSvc = "headless-naked"
    	ExternalSvc      = "external"
    )
    
    type EchoDeployments struct {
    	// TODO: Consolidate the echo config and reduce/reuse echo instances (https://github.com/istio/istio/issues/28599)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top