Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for 20something (0.3 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"type(self.something) == string && self.something == '25%'": 7,
    
    				// In Kubernetes 1.24 and later, the CEL type returns false for an int-or-string comparison against the
    				// other type, making it safe to write validation rules like:
    				"self.something == '25%'":                        3,
    				"self.something != 1":                            3,
    				"self.something == 1 || self.something == '25%'": 6,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/httproute_test.go

    						Number:   9000,
    						Protocol: "HTTP",
    						Name:     "something",
    					},
    					Bind:  "1.1.1.1",
    					Hosts: []string{"*/bookinfo.com"},
    				},
    				{
    					Port: &networking.SidecarPort{
    						// Unix domain socket listener
    						Number:   0,
    						Protocol: "HTTP",
    						Name:     "something",
    					},
    					Bind:  "unix://foo/bar/baz",
    					Hosts: []string{"*/bookinfo.com"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// - would make integration with cluster autoscaler harder because it would need
    	//   to trigger informer callbacks.
    	//
    	// When implementing cluster autoscaler support, this assume cache or
    	// something like it (see https://github.com/kubernetes/kubernetes/pull/112202)
    	// might have to be managed by the cluster autoscaler.
    	claimAssumeCache *assumecache.AssumeCache
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  4. istioctl/pkg/describe/describe.go

    	ss := re.FindStringSubmatch(path)
    	if ss == nil {
    		return "", "", fmt.Errorf("not a VS path: %s", path)
    	}
    	return ss[3], ss[2], nil
    }
    
    // getIstioVirtualServicePathForSvcFromRoute returns something like "/apis/networking/v1alpha3/namespaces/default/virtual-service/reviews"
    func getIstioVirtualServicePathForSvcFromRoute(cd *configdump.Wrapper, svc corev1.Service, port int32) (string, error) {
    	sPort := strconv.Itoa(int(port))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  5. pkg/controller/endpointslice/endpointslice_controller_test.go

    				discovery.LabelServiceName: "something-else",
    				discovery.LabelManagedBy:   controllerName,
    			},
    		},
    		AddressType: discovery.AddressTypeIPv4,
    	}, {
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "not-matching-2",
    			Namespace: ns,
    			Labels: map[string]string{
    				discovery.LabelServiceName: serviceName,
    				discovery.LabelManagedBy:   "something-else",
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

        def "link to report is not shown with --warn if there are no-CC problems"() {
            file("build.gradle") << """
                buildDir = 'out'
                tasks.register('doIt') {
                    // just so we had something for the CC report,
                    System.getenv('JAVA_HOME')
                    doLast {
                        println("Done")
                    }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/prove.go

    		//
    		//	enter_loop:
    		//		do something without using ind nor nxt
    		//		nxt = inc + ind
    		//		goto loop
    		//
    		//	exit_loop:
    		//
    		// is rewritten to:
    		//
    		//	loop:
    		//		ind = (Phi end nxt)
    		//		if (Const [x]) < ind
    		//		then goto enter_loop
    		//		else goto exit_loop
    		//
    		//	enter_loop:
    		//		do something without using ind nor nxt
    		//		nxt = ind - inc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  8. src/runtime/mgcscavenge.go

    	// This is reset once a GC cycle ends.
    	backgroundTime atomic.Int64
    }
    
    const (
    	// It doesn't really matter what value we start at, but we can't be zero, because
    	// that'll cause divide-by-zero issues. Pick something conservative which we'll
    	// also use as a fallback.
    	startingScavSleepRatio = 0.001
    
    	// Spend at least 1 ms scavenging, otherwise the corresponding
    	// sleep time to maintain our desired utilization is too low to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. pkg/registry/core/pod/strategy_test.go

    			pod: &api.Pod{
    				Spec:   api.PodSpec{NodeName: "something"},
    				Status: api.PodStatus{Phase: api.PodPending},
    			},
    			deleteGracePeriod: &defaultGracePeriod,
    			gracePeriod:       defaultGracePeriod,
    		},
    		{
    			name: "in failed phase with has node name",
    			pod: &api.Pod{
    				Spec:   api.PodSpec{NodeName: "something"},
    				Status: api.PodStatus{Phase: api.PodFailed},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    An important part of any build tool is the ability to avoid doing work that has already been done.
    Consider the process of compilation.
    Once your source files have been compiled, there should be no need to recompile them unless something has changed that affects the output, such as the modification of a source file or the removal of an output file.
    And compilation can take a significant amount of time, so skipping the step when it’s not needed saves a lot of time.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top