Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for 1e23 (0.05 sec)

  1. pkg/apis/certificates/validation/validation_test.go

    					Request:    newCSRPEM(t),
    					SignerName: "example.com/",
    				},
    			},
    			errs: field.ErrorList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  2. src/fmt/fmt_test.go

    	if s != "[]" {
    		t.Errorf("empty slice printed as %q not %q", s, "[]")
    	}
    	slice = []int{1, 2, 3}
    	s = Sprint(slice)
    	if s != "[1 2 3]" {
    		t.Errorf("slice: got %q expected %q", s, "[1 2 3]")
    	}
    	s = Sprint(&slice)
    	if s != "&[1 2 3]" {
    		t.Errorf("&slice: got %q expected %q", s, "&[1 2 3]")
    	}
    }
    
    // presentInMap checks map printing using substrings so we don't depend on the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  3. pkg/apis/networking/validation/validation_test.go

    			expectedErrs: field.ErrorList{},
    		},
    		"invalid name, valid controller": {
    			ingressClass: makeValidIngressClass("test*123", "foo.co/bar"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  4. pkg/apis/flowcontrol/validation/validation_test.go

    			field.Invalid(field.NewPath("spec").Child("rules").Index(0).Child("resourceRules").Index(0).Child("namespaces").Index(0), "-foo", nsErrIntro+`a lowercase RFC 1123 label must consist of lower case alphanumeric characters or '-', and must start and end with an alphanumeric character (e.g. 'my-name',  or '123-abc', regex used for validation is '[a-z0-9]([-a-z0-9]*[a-z0-9])?')`),
    		},
    	}, {
    		name: "MatchingPrecedence must not be greater than 10000",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  5. pkg/controller/disruption/disruption_test.go

    		updatePodOwnerToRc(t, pod, rc)
    		pod.Labels = labels
    		add(t, dc.podStore, pod)
    		dc.sync(ctx, pdbName)
    		if i < 2 {
    			ps.VerifyPdbStatus(t, pdbName, 0, i+1, 2, 3, map[string]metav1.Time{})
    		} else {
    			ps.VerifyPdbStatus(t, pdbName, 1, 3, 2, 3, map[string]metav1.Time{})
    		}
    	}
    
    	rogue, _ := newPod(t, "rogue")
    	add(t, dc.podStore, rogue)
    	dc.sync(ctx, pdbName)
    	ps.VerifyDisruptionAllowed(t, pdbName, 2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. pkg/kubelet/nodestatus/setters_test.go

    					},
    					Allocatable: v1.ResourceList{
    						v1.ResourceCPU:    *resource.NewMilliQuantity(1999, resource.DecimalSI),
    						v1.ResourceMemory: *resource.NewQuantity(1023, resource.BinarySI),
    						v1.ResourcePods:   *resource.NewQuantity(109, resource.DecimalSI),
    					},
    				},
    			},
    		},
    		{
    			desc: "allocatable memory does not double-count hugepages reservations",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    //   input = [1, 2]
    //   depth = 4
    //   filter = [[5, 7, 11, 13], [17, 19, 23, 29]]
    // then:
    //   onehot = [[0, 1, 0, 0], [0, 0, 1, 0]]
    //   result = [[ 7, 19],   # == 1st column in filter
    //             [11, 23]]   # == 2nd column in filter
    // This is exactly what the EmbeddedLookup operator is doing, on the transposed
    // matrix, without doing any arithmetic but only memcpy.
    def ReplaceOneHotFullyConnectedWithLookup : Pat<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  8. src/time/format.go

    	// 2-digit and 4-digit fields are the most common in time formats.
    	utod := func(u uint) byte { return '0' + byte(u) }
    	switch {
    	case width == 2 && u < 1e2:
    		return append(b, utod(u/1e1), utod(u%1e1))
    	case width == 4 && u < 1e4:
    		return append(b, utod(u/1e3), utod(u/1e2%1e1), utod(u/1e1%1e1), utod(u%1e1))
    	}
    
    	// Compute the number of decimal digits.
    	var n int
    	if u == 0 {
    		n = 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  9. src/math/all_test.go

    	}
    	for i := 0; i < len(vflogSC); i++ {
    		if f := Log2(vflogSC[i]); !alike(logSC[i], f) {
    			t.Errorf("Log2(%g) = %g, want %g", vflogSC[i], f, logSC[i])
    		}
    	}
    	for i := -1074; i <= 1023; i++ {
    		f := Ldexp(1, i)
    		l := Log2(f)
    		if l != float64(i) {
    			t.Errorf("Log2(2**%d) = %g, want %d", i, l, i)
    		}
    	}
    }
    
    func TestModf(t *testing.T) {
    	for i := 0; i < len(vf); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
Back to top