Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 194 for Headless (0.13 sec)

  1. pilot/pkg/networking/core/cluster_tls.go

    		cb.applyHBONETransportSocketMatches(c.cluster, tls, istioAutodetectedMtls)
    	} else if c.cluster.GetType() != cluster.Cluster_ORIGINAL_DST {
    		// For headless service, discovery type will be `Cluster_ORIGINAL_DST`
    		// Apply auto mtls to clusters excluding these kind of headless services.
    		if istioAutodetectedMtls {
    			// convert to transport socket matcher if the mode was auto detected
    			transportSocket := c.cluster.TransportSocket
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

            buildFile("""
                def oldValue = System.setProperty("java.awt.headless", "true")
                println("previous value = \$oldValue")
    
                // Attempt to capture the modified property value.
                println("configuration time value=\${System.getProperty("java.awt.headless")}")
    
                tasks.register("printProperty") {
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	esLabels := ep.GetLabels()
    	if !endpointSliceSelector.Matches(klabels.Set(esLabels)) {
    		return
    	}
    	// Update internal endpoint cache no matter what kind of service, even headless service.
    	// As for gateways, the cluster discovery type is `EDS` for headless service.
    	namespacedName := getServiceNamespacedName(ep)
    	log.Debugf("Handle EDS endpoint %s %s in namespace %s", namespacedName.Name, event, namespacedName.Namespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/RealLifeAndroidStudioPerformanceTest.groovy

         *
         * Additionally, you should also have ANDROID_SDK_ROOT env. variable set with Android SDK (normally on MacOS it's installed in "$HOME/Library/Android/sdk").
         *
         * To enable headless mode run with -PrunAndroidStudioInHeadlessMode=true.
         */
        def "run Android Studio sync"() {
            given:
            runner.args = [AndroidGradlePluginVersions.OVERRIDE_VERSION_CHECK]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. pilot/pkg/xds/nds.go

    	kind.TLSRoute,
    	kind.GRPCRoute,
    )
    
    func ndsNeedsPush(req *model.PushRequest) bool {
    	if req == nil {
    		return true
    	}
    	if !req.Full {
    		// NDS generally handles full push. We only allow partial pushes, when headless endpoints change.
    		return headlessEndpointsUpdated(req)
    	}
    	// If none set, we will always push
    	if len(req.ConfigsUpdated) == 0 {
    		return true
    	}
    	for config := range req.ConfigsUpdated {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.proto

      // a workload that backs a Kubernetes service will typically have only endpoints. A
      // workload that backs a headless Kubernetes service, however, will have both
      // addresses as well as a hostname used for direct access to the headless endpoint.
      // TODO: support this field
      string hostname = 21;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InstrumentedInputAccessListener.kt

        "os.name",
        "os.version",
        "os.arch",
        // TODO(https://github.com/gradle/gradle/issues/18432) Remove this from the list when a proper support for the modifications is in place.
        "java.awt.headless", // Some popular plugins modify this property at runtime.
        "java.version",
        "java.version.date",
        "java.vendor",
        "java.vendor.url",
        "java.vendor.version",
        "java.specification.version",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/sidecar_simulation_test.go

    		{Address: "1.2.3.4", Port: 82, Protocol: simulation.TCP, HostHeader: "headless.default.svc.cluster.local"},
    
    		// Use short host name
    		{Address: "1.2.3.4", Port: 83, Protocol: simulation.TCP, TLS: simulation.TLS, HostHeader: "headless.default"},
    		{Address: "1.2.3.4", Port: 84, Protocol: simulation.HTTP, TLS: simulation.TLS, HostHeader: "headless.default"},
    	} {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/kube/instance.go

    	if err != nil {
    		return nil, err
    	}
    
    	c.clusterIP = s.Spec.ClusterIP
    	c.clusterIPs = s.Spec.ClusterIPs
    	switch c.clusterIP {
    	case corev1.ClusterIPNone, "":
    		if !cfg.Headless {
    			return nil, fmt.Errorf("invalid ClusterIP %s for non-headless service %s/%s",
    				c.clusterIP,
    				c.cfg.Namespace.Name(),
    				c.cfg.Service)
    		}
    		c.clusterIP = ""
    	}
    
    	// Start the workload manager.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. pkg/registry/core/service/ipallocator/controller/repair_test.go

    				ClusterIP:  "2000::2",
    				ClusterIPs: []string{"2000::2"},
    				IPFamilies: []corev1.IPFamily{corev1.IPv6Protocol},
    			},
    		},
    
    		&corev1.Service{ // headless
    			ObjectMeta: metav1.ObjectMeta{Namespace: "x10", Name: "headless"},
    			Spec:       corev1.ServiceSpec{ClusterIP: "None"},
    		},
    	)
    
    	ipregistry := &mockRangeRegistry{
    		item: &api.RangeAllocation{
    			ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 21.1K bytes
    - Viewed (0)
Back to top