Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 96 for logical (0.16 sec)

  1. pilot/pkg/model/gateway.go

    // TLSServerInfo contains additional information for TLS Servers.
    type TLSServerInfo struct {
    	RouteName string
    	SNIHosts  []string
    }
    
    // MergedGateway describes a set of gateways for a workload merged into a single logical gateway.
    type MergedGateway struct {
    	// ServerPorts maintains a list of unique server ports, used for stable ordering.
    	ServerPorts []ServerPort
    
    	// MergedServers map from physical port to virtual servers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. pilot/pkg/networking/util/util.go

    		return host
    	}
    	return ""
    }
    
    func BuildTunnelMetadataStruct(address string, port int) *structpb.Struct {
    	m := map[string]interface{}{
    		// logical destination behind the tunnel, on which policy and telemetry will be applied
    		"local": net.JoinHostPort(address, strconv.Itoa(port)),
    	}
    	st, _ := structpb.NewStruct(m)
    	return st
    }
    
    func BuildStatefulSessionFilter(svc *model.Service) *hcm.HttpFilter {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

            when: "running with an empty file"
            file("local.properties") << ""
            configurationCacheRun "run"
    
            then:
            output.count("NOT CI") == 1
            configurationCache.assertStateLoaded()
    
            when: "running with the property present in the file"
            file("local.properties") << "ci=true"
            configurationCacheRun "run"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. internal/grid/grid_test.go

    		r := RemoteErr(req.String)
    		return nil, &r
    	}
    	errFatal(h1.Register(local, handler1))
    	errFatal(h2.Register(local, handler2))
    
    	errFatal(h1.Register(remote, handler1))
    	errFatal(h2.Register(remote, handler2))
    
    	// local to remote connection
    	remoteConn := local.Connection(remoteHost)
    	const testPayload = "Hello Grid World!"
    
    	start := time.Now()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/echotest/filters_test.go

    						"naked.echo1.svc.cluster.local":    2,
    						"vm.echo1.svc.cluster.local":       2,
    					},
    					"headless.echo1.svc.cluster.local": {
    						"b.echo1.svc.cluster.local":        2,
    						"external.echo1.svc.cluster.local": 2,
    						"headless.echo1.svc.cluster.local": 2,
    						"naked.echo1.svc.cluster.local":    2,
    						"vm.echo1.svc.cluster.local":       2,
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-kubeapiserver.sh

    function setup-etcd-encryption {
      local kube_apiserver_template_path
      local -n kube_api_server_params
      local default_encryption_provider_config_vol
      local default_encryption_provider_config_vol_mnt
      local encryption_provider_config_vol_mnt
      local encryption_provider_config_vol
      local default_kms_socket_dir
      local default_kms_socket_vol_mnt
      local default_kms_socket_vol
      local kms_socket_vol_mnt
      local kms_socket_vol
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/build.gradle

                sampleDirectory = samplesRoot.dir("build-organization/sharing-convention-plugins-with-build-logic")
                displayName = "Sharing convention plugins with build logic build"
                description = "Reuse convention plugins in both main build and build logic build"
                category = "Build organization"
                common {
                    from(templates.javaApplicationAsSubproject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  8. pilot/pkg/xds/delta_test.go

    		}
    	}
    
    	sendEDSReqAndVerify([]string{"outbound|80||local.default.svc.cluster.local"}, nil, []string{"outbound|80||local.default.svc.cluster.local"})
    	// Only send the one that is requested
    	sendEDSReqAndVerify([]string{"outbound|81||local.default.svc.cluster.local"}, nil, []string{"outbound|81||local.default.svc.cluster.local"})
    	ads.Request(&discovery.DeltaDiscoveryRequest{
    		ResponseNonce:            nonce,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. build/common.sh

      kube::util::ensure-docker-buildx
    
      local -r image=$1
      local -r context_dir=$2
      local -r pull="${3:-true}"
      local build_args
      IFS=" " read -r -a build_args <<< "$4"
      readonly build_args
      local -ra build_cmd=("${DOCKER[@]}" buildx build --load -t "${image}" "--pull=${pull}" "${build_args[@]}" "${context_dir}")
    
      kube::log::status "Building Docker image ${image}"
      local docker_output
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. internal/grid/manager.go

    		targets:     make(map[string]*Connection, len(o.Hosts)),
    		local:       o.Local,
    		authRequest: o.AuthRequest,
    	}
    	m.handlers.init()
    	if ctx == nil {
    		ctx = context.Background()
    	}
    	for _, host := range o.Hosts {
    		if host == o.Local {
    			if found {
    				return nil, fmt.Errorf("grid: local host found multiple times")
    			}
    			found = true
    			// No connection to local.
    			continue
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top