Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 254 for 1025 (0.13 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/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)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/streaming/streaming_test.go

    	if err != io.EOF {
    		t.Fatal(err)
    	}
    }
    
    func TestDecoder(t *testing.T) {
    	frames := [][]byte{
    		make([]byte, 1025),
    		make([]byte, 1024*5),
    		make([]byte, 1024*1024*17),
    		make([]byte, 1025),
    	}
    	pr, pw := io.Pipe()
    	fw := framer.NewLengthDelimitedFrameWriter(pw)
    	go func() {
    		for i := range frames {
    			fw.Write(frames[i])
    		}
    		pw.Close()
    	}()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 14 11:43:39 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  4. 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)
  5. test/ken/shift.go

    	for t3:=0; t3<2; t3++ {	// <<, >>
    		switch t1 {
    		case 0:	i =  1234;
    		case 1:	i = -1234;
    		case 2:	u =  5678;
    		}
    		switch t2 {
    		case 0:	c =    0;
    		case 1:	c =    5;
    		case 2:	c = 1025;
    		}
    		switch t3 {
    		case 0:	i <<= c; u <<= c;
    		case 1:	i >>= c; u >>= c;
    		}
    		switch t1 {
    		case 0:	testi(i,t1,t2,t3);
    		case 1:	testi(i,t1,t2,t3);
    		case 2:	testu(u,t1,t2,t3);
    		}
    	}
    	}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 2.3K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/compile/internal/test/testdata/zero_test.go

    	if a != want {
    		t.Errorf("zero1024 got=%v, want %v\n", a, want)
    	}
    }
    
    type Z1025 struct {
    	pre  [8]byte
    	mid  [1025]byte
    	post [8]byte
    }
    
    //go:noinline
    func zero1025_ssa(x *[1025]byte) {
    	*x = [1025]byte{}
    }
    func testZero1025(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 49.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/testdata/copy_test.go

    	if a != want {
    		t.Errorf("t1024copy got=%v, want %v\n", a, want)
    	}
    }
    
    type T1025 struct {
    	pre  [8]byte
    	mid  [1025]byte
    	post [8]byte
    }
    
    //go:noinline
    func t1025copy_ssa(y, x *[1025]byte) {
    	*y = *x
    }
    func testCopy1025(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 150.2K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/util/internal/DisconnectableInputStreamTest.groovy

            instr.close()
    
            assertThat(instr.read(), equalTo(-1))
            assertThat(instr.read(new byte[10]), equalTo(-1))
            assertThat(instr.read(new byte[10], 2, 5), equalTo(-1))
        }
    
        @Test
        void threadExecuterExecutesTheAction() {
            def e = new DisconnectableInputStream.ThreadExecuter()
            def latch = new CountDownLatch(1)
    
            e.execute {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 07 08:18:46 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  10. 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)
Back to top