Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for logical (0.26 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. 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)
  5. 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)
  6. pkg/config/analysis/analyzers/analyzers_test.go

    	g := NewWithT(t)
    
    	for _, a := range All() {
    		g.Expect(a.Metadata().Description).ToNot(Equal(""))
    	}
    }
    
    func setupAnalyzerForCase(tc testCase, cr local.CollectionReporterFn) (*local.IstiodAnalyzer, error) {
    	sa := local.NewSourceAnalyzer(analysis.Combine("testCase", tc.analyzer), "", "istio-system", cr)
    
    	// If a mesh config file is specified, use it instead of the defaults
    	if tc.meshConfigFile != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. .github/CODEOWNERS

    .github/                                    @gradle/bt-developer-productivity @gradle/bt-support # This might need to be more finegrained in the future
    /build-logic/                               @gradle/bt-developer-productivity
    /build-logic-commons/                       @gradle/bt-developer-productivity
    /build-logic-settings/                      @gradle/bt-developer-productivity
    /build.gradle*                              @gradle/bt-developer-productivity
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. pkg/config/constants/constants.go

    	KubeNodeLeaseNamespace string = "kube-node-lease"
    
    	// LocalPathStorageNamespace is the namespace for dynamically provisioning persistent local storage with
    	// Kubernetes. Typically used with the Kind cluster: https://github.com/rancher/local-path-provisioner
    	LocalPathStorageNamespace string = "local-path-storage"
    
    	TestVMLabel = "istio.io/test-vm"
    
    	TestVMVersionLabel = "istio.io/test-vm-version"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/server_test.go

    			revision:         "",
    			sans: []string{
    				"a.com", "b.com", "c.com",
    				"istio-pilot.istio-system.svc",
    				"istiod-remote.istio-system.svc",
    				"istiod.istio-system.svc",
    				"istiod.istio-system.svc.cluster.local",
    			},
    		},
    		{
    			name:             "canary revision",
    			customHost:       "a.com,b.com,c.com",
    			discoveryAddress: "istiod.istio-system.svc.cluster.local",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

            DescriptorVisibilities.PRIVATE -> Visibilities.Private
            DescriptorVisibilities.PRIVATE_TO_THIS -> Visibilities.PrivateToThis
            DescriptorVisibilities.LOCAL -> Visibilities.Local
            DescriptorVisibilities.INVISIBLE_FAKE -> Visibilities.InvisibleFake
            DescriptorVisibilities.INHERITED -> Visibilities.Inherited
            else -> Visibilities.Unknown
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top