Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for Naked (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/kubelet/network/dns/dns_other_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package dns
    
    var (
    	defaultResolvConf = "/etc/resolv.conf"
    	// configurer.getHostDNSConfig is faked on Windows, while it is not faked on Linux.
    	fakeGetHostDNSConfigCustom = getHostDNSConfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 22:21:57 UTC 2023
    - 804 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top