Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 159 for 2345 (0.26 sec)

  1. src/fmt/doc.go

    precision sets the number of places after the decimal, if appropriate,
    except that for %g/%G precision sets the maximum number of significant
    digits (trailing zeros are removed). For example, given 12.345 the format
    %6.3f prints 12.345 while %.3g prints 12.3. The default precision for %e, %f
    and %#g is 6; for %g it is the smallest number of digits necessary to identify
    the value uniquely.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. src/mime/multipart/writer.go

    // multipart/form-data with this [Writer]'s Boundary.
    func (w *Writer) FormDataContentType() string {
    	b := w.boundary
    	// We must quote the boundary if it contains any of the
    	// tspecials characters defined by RFC 2045, or space.
    	if strings.ContainsAny(b, `()<>@,;:\"/[]?= `) {
    		b = `"` + b + `"`
    	}
    	return "multipart/form-data; boundary=" + b
    }
    
    func randomBoundary() string {
    	var buf [30]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/informers_test.go

    	defer cancel()
    
    	enrolledNotRedirected := &corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "enrolled-not-redirected",
    			Namespace: "test",
    			UID:       "12345",
    			Labels:    map[string]string{constants.DataplaneModeLabel: constants.DataplaneModeAmbient},
    		},
    		Spec: corev1.PodSpec{
    			NodeName: NodeName,
    		},
    		Status: corev1.PodStatus{
    			PodIP: "11.1.1.12",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  4. pkg/serviceaccount/jwt_test.go

    func TestTokenGenerateAndValidate(t *testing.T) {
    	expectedUserName := "system:serviceaccount:test:my-service-account"
    	expectedUserUID := "12345"
    
    	// Related API objects
    	serviceAccount := &v1.ServiceAccount{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "my-service-account",
    			UID:       "12345",
    			Namespace: "test",
    		},
    	}
    	rsaSecret := &v1.Secret{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "my-rsa-secret",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/primitives/ShortsTest.java

        testRotate(new short[] {1, 2, 3, 4}, -9, new short[] {2, 3, 4, 1});
        testRotate(new short[] {1, 2, 3, 4}, -5, new short[] {2, 3, 4, 1});
        testRotate(new short[] {1, 2, 3, 4}, -1, new short[] {2, 3, 4, 1});
        testRotate(new short[] {1, 2, 3, 4}, 0, new short[] {1, 2, 3, 4});
        testRotate(new short[] {1, 2, 3, 4}, 1, new short[] {4, 1, 2, 3});
        testRotate(new short[] {1, 2, 3, 4}, 5, new short[] {4, 1, 2, 3});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  6. pkg/apis/resource/validation/validation_resourceslice_test.go

    			slice: func() *resource.ResourceSlice {
    				slice := testResourceSlice(goodName, goodName, driverName)
    				slice.Labels = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. pkg/registry/core/pod/storage/storage_test.go

    		},
    		{
    			pod: api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    				Status:     api.PodStatus{PodIPs: []api.PodIP{{IP: expectedIP}}},
    			},
    			query:    "foo:12345",
    			location: expectedIP + ":12345",
    		},
    		{
    			pod: api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    				Spec: api.PodSpec{
    					Containers: []api.Container{
    						{Name: "ctr"},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 07:18:44 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/primitives/ShortsTest.java

        testRotate(new short[] {1, 2, 3, 4}, -9, new short[] {2, 3, 4, 1});
        testRotate(new short[] {1, 2, 3, 4}, -5, new short[] {2, 3, 4, 1});
        testRotate(new short[] {1, 2, 3, 4}, -1, new short[] {2, 3, 4, 1});
        testRotate(new short[] {1, 2, 3, 4}, 0, new short[] {1, 2, 3, 4});
        testRotate(new short[] {1, 2, 3, 4}, 1, new short[] {4, 1, 2, 3});
        testRotate(new short[] {1, 2, 3, 4}, 5, new short[] {4, 1, 2, 3});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/primitives/LongsTest.java

        testRotate(new long[] {1, 2, 3, 4}, -9, new long[] {2, 3, 4, 1});
        testRotate(new long[] {1, 2, 3, 4}, -5, new long[] {2, 3, 4, 1});
        testRotate(new long[] {1, 2, 3, 4}, -1, new long[] {2, 3, 4, 1});
        testRotate(new long[] {1, 2, 3, 4}, 0, new long[] {1, 2, 3, 4});
        testRotate(new long[] {1, 2, 3, 4}, 1, new long[] {4, 1, 2, 3});
        testRotate(new long[] {1, 2, 3, 4}, 5, new long[] {4, 1, 2, 3});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 30K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/GeneralRangeTest.java

      private static final Ordering<@Nullable Integer> ORDERING =
          Ordering.<Integer>natural().<Integer>nullsFirst();
    
      private static final List<@Nullable Integer> IN_ORDER_VALUES = Arrays.asList(null, 1, 2, 3, 4, 5);
    
      public void testCreateEmptyRangeFails() {
        for (BoundType lboundType : BoundType.values()) {
          for (BoundType uboundType : BoundType.values()) {
            try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top