Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 108 for 2345678 (0.1 sec)

  1. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    	}
    	return tile, nil
    }
    
    // To limit the size of any particular directory listing,
    // we encode the (possibly very large) number N
    // by encoding three digits at a time.
    // For example, 123456789 encodes as x123/x456/789.
    // Each directory has at most 1000 each xNNN, NNN, and NNN.p children,
    // so there are at most 3000 entries in any one directory.
    const pathBase = 1000
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    				}},
    				Endpoints: []discovery.Endpoint{{
    					Addresses: []string{"10.1.2.3", "2001:db8::1234:5678"},
    				}},
    			},
    			// Columns: Name, AddressType, Ports, Endpoints, Age
    			expected: []metav1.TableRow{{Cells: []interface{}{"abcslice.123", "IPv4", "80", "10.1.2.3,2001:db8::1234:5678", "0s"}}},
    		}, {
    			endpointSlice: discovery.EndpointSlice{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. src/net/http/requestwrite_test.go

    			URL:           mustParseURL("/"),
    			Host:          "example.com",
    			ProtoMajor:    1,
    			ProtoMinor:    1,
    			ContentLength: 4, // but we're going to try to send 8 bytes
    		},
    		Body:      []byte("12345678"),
    		WantError: errors.New("http: ContentLength=4 with Body length 8"),
    	},
    
    	// Request with a 5 ContentLength and nil body.
    	11: {
    		Req: Request{
    			Method:        "POST",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:07:32 UTC 2022
    - 23.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{decQuantity(10800, -4, DecimalSI), "1080m", ""},
    		{decQuantity(300, 6, DecimalSI), "300M", ""},
    		{decQuantity(1, 12, DecimalSI), "1T", ""},
    		{decQuantity(1234567, 6, DecimalSI), "1234567M", ""},
    		{decQuantity(1234567, -3, BinarySI), "1234567m", ""},
    		{decQuantity(3, 3, DecimalSI), "3k", ""},
    		{decQuantity(1025, 0, BinarySI), "1025", ""},
    		{decQuantity(0, 0, DecimalSI), "0", ""},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. src/internal/syscall/windows/registry/registry_test.go

    	}{
    		{registry.DWORD, "Dword1", nil},
    		{registry.DWORD, "Dword2", []byte{1, 2, 3}},
    		{registry.QWORD, "Qword1", nil},
    		{registry.QWORD, "Qword2", []byte{1, 2, 3}},
    		{registry.QWORD, "Qword3", []byte{1, 2, 3, 4, 5, 6, 7}},
    		{registry.MULTI_SZ, "MultiString1", nil},
    		{registry.MULTI_SZ, "MultiString2", []byte{0}},
    		{registry.MULTI_SZ, "MultiString3", []byte{'a', 'b', 0}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. tests/sql_builder_test.go

    	if !regexp.MustCompile(`.*age.*=false,`).MatchString(sql) {
    		t.Errorf("Failed to generate sql, got %v", sql)
    	}
    
    	stmt = dryRunDB.Model(&user).Where("id = ?", 1).Updates(map[string]interface{}{"age": ageFloat(0.12345678)}).Statement
    	sql = DB.Dialector.Explain(stmt.SQL.String(), stmt.Vars...)
    	if !regexp.MustCompile(`.*age.*=0.123457,`).MatchString(sql) {
    		t.Errorf("Failed to generate sql, got %v", sql)
    	}
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. pkg/registry/core/service/strategy_test.go

    			Ports: []api.ServicePort{
    				makeValidServicePort("p", "TCP", 8675),
    				makeValidServicePort("q", "TCP", 309),
    			},
    			ClusterIP:             "1.2.3.4",
    			ClusterIPs:            []string{"1.2.3.4", "5:6:7::8"},
    			IPFamilyPolicy:        &preferDual,
    			IPFamilies:            []api.IPFamily{"IPv4", "IPv6"},
    			InternalTrafficPolicy: &clusterInternalTrafficPolicy,
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

            IteratorTester.KnownOrder.KNOWN_ORDER) {
          @Override
          protected Iterator<List<Integer>> newTargetIterator() {
            Iterator<Integer> source = Iterators.forArray(1, 2, 3, 4, 5, 6, 7);
            return Iterators.partition(source, 3);
          }
        }.test();
      }
    
      public void testPartition_view() {
        List<Integer> list = asList(1, 2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  9. src/time/example_test.go

    	// representation of the time stamp,
    	//	Jan 2 15:04:05 2006 MST
    	// An easy way to remember this value is that it holds, when presented
    	// in this order, the values (lined up with the elements above):
    	//	  1 2  3  4  5    6  -7
    	// There are some wrinkles illustrated below.
    
    	// Most uses of Format and Parse use constant layout strings such as
    	// the ones defined in this package, but the interface is flexible,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  10. src/internal/bisect/bisect.go

    			start = i + 1
    			wid = 4
    			continue
    		}
    		switch c {
    		default:
    			return nil, &parseError{"invalid pattern syntax: " + pattern}
    		case '2', '3', '4', '5', '6', '7', '8', '9':
    			if wid != 4 {
    				return nil, &parseError{"invalid pattern syntax: " + pattern}
    			}
    			fallthrough
    		case '0', '1':
    			bits <<= wid
    			bits |= uint64(c - '0')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top