Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for 20something (0.39 sec)

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

    				"self.something == '25%' || self.something == 1",
    
    				// In Kubernetes 1.23 and earlier, all int-or-string access must be guarded by a type check to prevent
    				// a runtime error attempting an equality check between string and int types.
    				"type(self.something) == string && self.something == '25%'",
    				"type(self.something) == int ? self.something == 1 : self.something == '25%'",
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal_test.go

    			return true, &metricsapi.PodMetricsList{}, fmt.Errorf("something went wrong")
    		})
    		testCMClient.PrependReactor("get", "*", func(action core.Action) (handled bool, ret runtime.Object, err error) {
    			return true, &cmapi.MetricValueList{}, fmt.Errorf("something went wrong")
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    // a given user or group. getsubids produces a line for each mapping configured.
    // Here we expect that there is a single mapping, and the same values are used for the subordinate user and group ID ranges.
    // The output is something like:
    // $ getsubids kubelet
    // 0: kubelet 65536 2147483648
    // $ getsubids -g kubelet
    // 0: kubelet 65536 2147483648
    func parseGetSubIdsOutput(input string) (uint32, uint32, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    	}
    	if body2 == body3 {
    		t.Errorf("expected body2 and body3 to be different")
    	}
    }
    
    // Test for https://golang.org/issue/2616 (appropriate issue number)
    // This fails pretty reliably with GOMAXPROCS=100 or something high.
    func TestStressSurpriseServerCloses(t *testing.T) {
    	run(t, testStressSurpriseServerCloses, []testMode{http1Mode})
    }
    func testStressSurpriseServerCloses(t *testing.T, mode testMode) {
    	if testing.Short() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier_test.go

    			destIP:   svcLBIP2,
    			destPort: svcPort,
    			output:   fmt.Sprintf("%s:%d", epIP, svcPort),
    			masq:     true,
    		},
    
    		// The LB rules assume that when you connect from a node to a LB IP, that
    		// something external to kube-proxy will cause the connection to be
    		// SNATted to the LB IP, so if the LoadBalancerSourceRanges include the
    		// node IP, then we add a rule allowing traffic from the LB IP as well...
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    	if cfg.BuildN {
    		// In -n mode, print a banner between packages.
    		// The banner is five lines so that when changes to
    		// different sections of the bootstrap script have to
    		// be merged, the banners give patch something
    		// to use to find its context.
    		sh.Print("\n#\n# " + p.ImportPath + "\n#\n\n")
    	}
    
    	if cfg.BuildV {
    		sh.Print(p.ImportPath + "\n")
    	}
    
    	if p.Error != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

        "curl --fail --silent -H 'Metadata-Flavor: Google' \
          'http://metadata/computeMetadata/v1/instance/attributes/kube-master-certs'" 2>/dev/null
    }
    
    # Quote something appropriate for a yaml string.
    #
    # TODO(zmerlynn): Note that this function doesn't so much "quote" as
    # "strip out quotes", and we really should be using a YAML library for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

      |
      | o validators: there could be several levels of validation. Simple type validation could
      |   be done with a regex, but we need inter-field validation and rules which could be
      |   dealt with by something like drools.
      |
      | o i18n: would be good to be able to have names/descriptions/specifications
      |   in as many languages as possible. (see MNG-3626)
      |
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    	assertLockHeld(&sched.lock)
    
    	// Exclude extra M's, which are used for cgocallback from threads
    	// created in C.
    	//
    	// The purpose of the SetMaxThreads limit is to avoid accidental fork
    	// bomb from something like millions of goroutines blocking on system
    	// calls, causing the runtime to create millions of threads. By
    	// definition, this isn't a problem for threads created in C, so we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *
     * // later
     * try { // get() will throw if the operation failed or was cancelled.
     *   UserName userName = userNameValueAndCloser.get();
     *   // do something with userName
     * } finally {
     *   userNameValueAndCloser.closeAsync();
     * }
     * }</pre>
     *
     * In this example, when {@code userNameValueAndCloser.closeAsync()} is called, the transaction and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
Back to top