Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 90 for 1025 (0.2 sec)

  1. src/cmd/compile/internal/ssa/poset_test.go

    		{NonEqual, 10, 20},
    		{SetEqual_Fail, 10, 20},
    
    		// Undo again. Now we know nothing
    		{Undo, 0, 0},
    		{Equal_Fail, 10, 20},
    		{NonEqual_Fail, 10, 20},
    
    		// Learn 10==20
    		{Checkpoint, 0, 0},
    		{SetEqual, 10, 20},
    		{Equal, 10, 20},
    		{NonEqual_Fail, 10, 20},
    		{SetNonEqual_Fail, 10, 20},
    
    		// Learn again 10==20
    		{Checkpoint, 0, 0},
    		{SetEqual, 10, 20},
    		{Equal, 10, 20},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 26 07:52:35 UTC 2019
    - 18.1K 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. 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)
  4. 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)
  5. pkg/registry/core/service/ipallocator/ipallocator_test.go

    			address: netip.MustParseAddr("2001:db8:1::101"),
    			offset:  255,
    			want:    netip.MustParseAddr("2001:db8:1::200"),
    		},
    		{
    			name:    "IPv6 offset 1025",
    			address: netip.MustParseAddr("fd00:1:2:3::"),
    			offset:  1025,
    			want:    netip.MustParseAddr("fd00:1:2:3::401"),
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 25 13:14:46 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  6. 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)
  7. src/math/j0.go

    //      -1/8 s + 75/1024 s**3 - ..., where s = 1/x.
    // We approximate pzero by
    //      qzero(x) = s*(-1.25 + (R/S))
    // where R = qR0 + qR1*s**2 + qR2*s**4 + ... + qR5*s**10
    //       S = 1 + qS0*s**2 + ... + qS5*s**12
    // and
    //      | qzero(x)/s +1.25-R/S | <= 2**(-61.22)
    
    // for x in [inf, 8]=1/[0,0.125]
    var q0R8 = [6]float64{
    	0.00000000000000000000e+00, // 0x0000000000000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 13.6K bytes
    - Viewed (0)
  8. api/go1.8.txt

    pkg crypto/tls, const PKCS1WithSHA1 = 513
    pkg crypto/tls, const PKCS1WithSHA1 SignatureScheme
    pkg crypto/tls, const PKCS1WithSHA256 = 1025
    pkg crypto/tls, const PKCS1WithSHA256 SignatureScheme
    pkg crypto/tls, const PKCS1WithSHA384 = 1281
    pkg crypto/tls, const PKCS1WithSHA384 SignatureScheme
    pkg crypto/tls, const PKCS1WithSHA512 = 1537
    pkg crypto/tls, const PKCS1WithSHA512 SignatureScheme
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 05:25:57 UTC 2016
    - 16.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