Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 for Headless (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. cluster/addons/dns/nodelocaldns/nodelocaldns.yaml

              optional: true
          - name: config-volume
            configMap:
              name: node-local-dns
              items:
                - key: Corefile
                  path: Corefile.base
    ---
    # A headless service is a service with a service IP but instead of load-balancing it will return the IPs of our associated Pods.
    # We use this to expose metrics to Prometheus.
    apiVersion: v1
    kind: Service
    metadata:
      annotations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. pkg/api/service/testing/make.go

    	return api.ServicePort{
    		Name:       name,
    		Port:       int32(port),
    		TargetPort: tgtPort,
    		Protocol:   proto,
    	}
    }
    
    // SetHeadless sets the service as headless and clears other fields.
    func SetHeadless(svc *api.Service) {
    	SetTypeClusterIP(svc)
    	SetClusterIPs(api.ClusterIPNone)(svc)
    }
    
    // SetSelector sets the service selector.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. pkg/apis/core/helper/helpers_test.go

    		output bool
    		name   string
    	}{
    		{
    			name: "nil cluster ip",
    			input: core.ServiceSpec{
    				ClusterIPs: nil,
    			},
    
    			output: false,
    		},
    		{
    			name: "headless service",
    			input: core.ServiceSpec{
    				ClusterIP:  "None",
    				ClusterIPs: []string{"None"},
    			},
    			output: false,
    		},
    		// true cases
    		{
    			name: "one ipv4",
    			input: core.ServiceSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/conversion.go

    		}
    	}
    	if svc.Spec.InternalTrafficPolicy != nil && *svc.Spec.InternalTrafficPolicy == corev1.ServiceInternalTrafficPolicyLocal {
    		nodeLocal = true
    	}
    
    	if svc.Spec.ClusterIP == corev1.ClusterIPNone { // headless services should not be load balanced
    		resolution = model.Passthrough
    	} else if svc.Spec.ClusterIP != "" {
    		addrs[0] = svc.Spec.ClusterIP
    		if len(svc.Spec.ClusterIPs) > 1 {
    			addrs = svc.Spec.ClusterIPs
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/dashboard/admin_dashboard.jsp

            <iframe class="w-100 h-100 position-absolute" frameborder="0"
                    src="<%=request.getContextPath()%>${serverPath}<%= response.encodeURL("/_plugin/kopf/") %>"
                    seamless></iframe>
        </div>
    
        <jsp:include page="/WEB-INF/view/common/admin/footer.jsp"></jsp:include>
    </div>
    <jsp:include page="/WEB-INF/view/common/admin/foot.jsp"></jsp:include>
    </body>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 12:21:50 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  10. docs/orchestration/kubernetes/README.md

    ## MinIO Deployment on Kubernetes
    
    There are multiple options to deploy MinIO on Kubernetes:
    
    - MinIO-Operator: Operator offers seamless way to create and update highly available distributed MinIO clusters. Refer [MinIO Operator documentation](https://github.com/minio/minio-operator/blob/master/README.md) for more details.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top