Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 157 for 1025 (0.03 sec)

  1. src/crypto/tls/common_string.go

    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[PKCS1WithSHA256-1025]
    	_ = x[PKCS1WithSHA384-1281]
    	_ = x[PKCS1WithSHA512-1537]
    	_ = x[PSSWithSHA256-2052]
    	_ = x[PSSWithSHA384-2053]
    	_ = x[PSSWithSHA512-2054]
    	_ = x[ECDSAWithP256AndSHA256-1027]
    	_ = x[ECDSAWithP384AndSHA384-1283]
    	_ = x[ECDSAWithP521AndSHA512-1539]
    	_ = x[Ed25519-2055]
    	_ = x[PKCS1WithSHA1-513]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/os/removeall_test.go

    	}
    
    	dir, err := Open(path)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer dir.Close()
    
    	names, _ := dir.Readdirnames(1025)
    	if len(names) < 1025 {
    		t.Fatalf("RemoveAll(<read-only directory>) unexpectedly removed %d read-only files from that directory", 1025-len(names))
    	}
    }
    
    func TestRemoveAllNoFcntl(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping in short mode")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:21:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/util/NumberUtil.java

            }
            if (total == 0) {
                return 0;
            }
            float out = fraction * 100.0f / total;
            return (int) out;
        }
    
        /**
         * Formats bytes, e.g. 1010 -&gt; 1010 B, -1025 -&gt; -1 KiB, 1127 -&gt; 1.1 KiB
         */
        public static String formatBytes(@Nullable Long bytes) {
            if (bytes == null) {
                return "unknown size";
            } else if (bytes < 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. src/time/format_test.go

    	// issue 56730
    	{"2006-01-02", "22-10-25", `parsing time "22-10-25" as "2006-01-02": cannot parse "22-10-25" as "2006"`},
    	{"06-01-02", "a2-10-25", `parsing time "a2-10-25" as "06-01-02": cannot parse "a2-10-25" as "06"`},
    	{"03:04PM", "12:03pM", `parsing time "12:03pM" as "03:04PM": cannot parse "pM" as "PM"`},
    	{"03:04pm", "12:03pM", `parsing time "12:03pM" as "03:04pm": cannot parse "pM" as "pm"`},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/noderesources/balanced_allocation_test.go

    			// Memory Fraction: 0 / 10000 = 0
    			// Node1 std: (1 - 0) / 2 = 0.5
    			// Node1 Score: (1 - 0.5)*MaxNodeScore = 50
    			// Node1 Score: MaxNodeScore - (1 - 0) * MaxNodeScore = 0
    			// Node2 scores on 0-MaxNodeScore scale
    			// CPU Fraction: 6000 / 6000 = 1
    			// Memory Fraction 5000 / 10000 = 50%
    			// Node2 std: (1 - 0.5) / 2 = 0.25
    			// Node2 Score: (1 - 0.25)*MaxNodeScore = 75
    			pod:          &v1.Pod{Spec: cpuOnly},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Client-TLSv12-SCT

    000000a0  32 ab 18 60 74 de 08 da  05 91 4c 2f 02 20 73 54  |2..`t.....L/. sT|
    000000b0  1b 6e 7f a1 b0 7d 11 bc  e6 f3 85 2f 97 66 1a f7  |.n...}...../.f..|
    000000c0  8a e4 10 25 8f 12 f4 6f  39 0f d2 9e 18 f0 00 76  |...%...o9......v|
    000000d0  00 68 f6 98 f8 1f 64 82  be 3a 8c ee b9 28 1d 4c  |.h....d..:...(.L|
    000000e0  fc 71 51 5d 67 93 d4 44  d1 0a 67 ac bb 4f 4f fb  |.qQ]g..D..g..OO.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. cmd/post-policy_test.go

    			data:                bytes.Repeat([]byte("a"), 1025),
    			expectedRespStatus:  http.StatusNoContent,
    			accessKey:           credentials.AccessKey,
    			secretKey:           credentials.SecretKey,
    			malformedBody:       false,
    			ignoreContentLength: true,
    		},
    		// Failed with entity too small.
    		{
    			objectName:          "test",
    			data:                bytes.Repeat([]byte("a"), 1023),
    			expectedRespStatus:  http.StatusBadRequest,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    org:leaf2:2.5
    \\--- org:toplevel3:1.0
         \\--- conf
    
    org:leaf2:1.0 -> 2.5
    +--- org:middle1:1.0
    |    \\--- org:toplevel:1.0
    |         \\--- conf
    \\--- org:middle3:1.0
         \\--- org:toplevel4:1.0
              \\--- conf
    
    org:leaf2:1.5 -> 2.5
    \\--- org:toplevel2:1.0
         \\--- conf
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/inst.go

    	case AAMOMINW:
    		return &inst{0x2f, 0x2, 0x0, -2048, 0x40}
    	case AAMOMINUD:
    		return &inst{0x2f, 0x3, 0x0, -1024, 0x60}
    	case AAMOMINUW:
    		return &inst{0x2f, 0x2, 0x0, -1024, 0x60}
    	case AAMOORD:
    		return &inst{0x2f, 0x3, 0x0, 1024, 0x20}
    	case AAMOORW:
    		return &inst{0x2f, 0x2, 0x0, 1024, 0x20}
    	case AAMOSWAPD:
    		return &inst{0x2f, 0x3, 0x0, 128, 0x4}
    	case AAMOSWAPW:
    		return &inst{0x2f, 0x2, 0x0, 128, 0x4}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. src/sort/sort_test.go

    		sizes = []int{100, 127, 128, 129}
    	}
    	dists := []string{"sawtooth", "rand", "stagger", "plateau", "shuffle"}
    	modes := []string{"copy", "reverse", "reverse1", "reverse2", "sort", "dither"}
    	var tmp1, tmp2 [1025]int
    	for _, n := range sizes {
    		for m := 1; m < 2*n; m *= 2 {
    			for dist := 0; dist < _NDist; dist++ {
    				j := 0
    				k := 1
    				data := tmp1[0:n]
    				for i := 0; i < n; i++ {
    					switch dist {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:41:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top