Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 117 for 100xi1 (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope_test.go

    		{"dev.k8s.io": []byte("bar")},
    		{"dev.k8s.io.": []byte("bar")},
    		{"foo.example.com": []byte("bar")},
    		{"this.is.a.really.long.fqdn": []byte("bar")},
    		{"bbc.co.uk": []byte("bar")},
    		{"10.0.0.1": []byte("bar")}, // DNS labels can start with numbers and there is no requirement for letters.
    		{"hyphens-are-good.k8s.io": []byte("bar")},
    		{strings.Repeat("a", 63) + ".k8s.io": []byte("bar")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:50:20 UTC 2023
    - 47.2K bytes
    - Viewed (0)
  2. hack/local-up-cluster.sh

        echo "${gate}" | ${SED} -e 's/\(.*\)=\(.*\)/  \1: \2/'
      done
    }
    
    function parse_eviction {
      # Convert from memory.available<100Mi,nodefs.available<10%,nodefs.inodesFree<5% to
      #   memory.available: "100Mi"
      #   nodefs.available: "10%"
      #   nodefs.inodesFree: "5%"
      for eviction in $(echo "$1" | tr ',' ' '); do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation_test.go

    				s.Spec.ClusterIP = "10.0.0.1"
    				s.Spec.ClusterIPs = []string{"10.0.0.1", "2001::1"}
    				s.Spec.IPFamilies = []core.IPFamily{core.IPv4Protocol}
    			},
    			numErrs: 0,
    		}, {
    			name: "invalid, families don't match (v4=>v6)",
    			tweakSvc: func(s *core.Service) {
    				s.Spec.ClusterIP = "10.0.0.1"
    				s.Spec.ClusterIPs = []string{"10.0.0.1"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  4. src/fmt/fmt_test.go

    	{"%#g", -1e10 - 1.11e100i, "(-1.00000e+10-1.11000e+100i)"},
    	{"%#.0f", 1.23 + 1.0i, "(1.+1.i)"},
    	{"%#.0e", 1.23 + 1.0i, "(1.e+00+1.e+00i)"},
    	{"%#.0x", 1.23 + 1.0i, "(0x1.p+00+0x1.p+00i)"},
    	{"%#.0g", 1.23 + 1.0i, "(1.+1.i)"},
    	{"%#.0g", 0 + 100000i, "(0.+1.e+05i)"},
    	{"%#.0g", 1230000 + 0i, "(1.e+06+0.i)"},
    	{"%#.4f", 1 + 1.23i, "(1.0000+1.2300i)"},
    	{"%#.4e", 123 + 1i, "(1.2300e+02+1.0000e+00i)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  5. cmd/object-handlers_test.go

    				fmt.Sprintf("bytes=-%d", objLen/2),
    				// Read middle half of object
    				fmt.Sprintf("bytes=%d-%d", objLen/4, objLen*3/4),
    				// Read 100MiB of the object from the beginning
    				fmt.Sprintf("bytes=%d-%d", 0, 100*humanize.MiByte),
    				// Read 100MiB of the object from the end
    				fmt.Sprintf("bytes=-%d", 100*humanize.MiByte),
    			}
    			for _, rangeHdr := range rangeHdrs {
    				mkGetReq(oi, rangeHdr, caseNumber, sf)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.20.md

    ### Bug or Regression
    
    - Azurefile: Normalize share name to not include capital letters ([#100731](https://github.com/kubernetes/kubernetes/pull/100731), [@kassarl](https://github.com/kassarl)) [SIG Cloud Provider and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier_test.go

    			endpoints: []endpoint{
    				{"10.0.1.1", testHostname},
    				{"10.0.1.2", "host1"},
    				{"10.0.1.3", "host2"},
    			},
    		},
    		{
    			name:                  "externalTrafficPolicy is set and there are local endpoints",
    			externalTrafficPolicy: v1.ServiceExternalTrafficPolicyLocal,
    			endpoints: []endpoint{
    				{"10.0.1.1", testHostname},
    				{"10.0.1.2", "host1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    // Test invalid tf.ToBool
    func.func @testInvalidToBool(%arg0: tensor<i32>) -> tensor<1xi1> {
      // expected-error @+2 {{'tf.ToBool' op failed to infer returned types}}
      // expected-error @+1 {{op inferred type(s) 'tensor<i1>' are incompatible with return type(s) of operation 'tensor<1xi1>'}}
      %0 = "tf.ToBool"(%arg0) : (tensor<i32>) -> tensor<1xi1>
      func.return %0 : tensor<1xi1>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.emptyDoubles.isSorted()",
    				"self.unsortedDoubles.isSorted() == false",
    				"self.doubles.indexOf(2.0) == 1",
    				"self.doubles.lastIndexOf(2.0) == 2",
    				"self.doubles.indexOf(10.0) == -1",
    				"self.doubles.lastIndexOf(10.0) == -1",
    
    				"self.intBackedDoubles.sum() == 8.0",
    				"self.intBackedDoubles.min() == 1.0",
    				"self.intBackedDoubles.max() == 3.0",
    				"self.emptyIntBackedDDoubles.sum() == 0.0",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    			// 2. to fulfil "node" constraint, incoming pod can be placed on node-a or node-b
    			// intersection of (1) and (2) returns no node
    			name: "Constraints hold different labelSelectors, spreads = [1/0, 0/0/1/1]",
    			pod: st.MakePod().Name("p").Label("foo", "").Label("bar", "").
    				SpreadConstraint(1, "zone", v1.DoNotSchedule, fooSelector, nil, nil, nil, nil).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
Back to top