Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 91 for 1025 (0.05 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. 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)
  3. 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)
  4. 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)
  5. 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)
  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. pkg/scheduler/framework/plugins/volumebinding/scorer_test.go

    							Requested: 60,
    							Capacity:  100,
    						},
    					},
    					5,
    				},
    				{
    					classResourceMap{
    						classHDD: &StorageResource{
    							Requested: 50,
    							Capacity:  100,
    						},
    						classSSD: &StorageResource{
    							Requested: 100,
    							Capacity:  100,
    						},
    					},
    					25,
    				},
    				{
    					classResourceMap{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 13 11:08:45 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  8. test/fixedbugs/bug385_64.go

    	var x12 [10<<20]byte
    	var x13 [10<<20]byte
    	var x14 [10<<20]byte
    	var x15 [10<<20]byte
    	var x16 [10<<20]byte
    	var x17 [10<<20]byte
    	var x18 [10<<20]byte
    	var x19 [10<<20]byte
    	var x20 [10<<20]byte
    	var x21 [10<<20]byte
    	var x22 [10<<20]byte
    	var x23 [10<<20]byte
    	var x24 [10<<20]byte
    	var x25 [10<<20]byte
    	var x26 [10<<20]byte
    	var x27 [10<<20]byte
    	var x28 [10<<20]byte
    	var x29 [10<<20]byte
    	var x30 [10<<20]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. test/cmplx.go

    	_ = complex() // ERROR "not enough arguments"
    
    	c128 = complex(f32, f32) // ERROR "cannot use"
    	c64 = complex(f64, f64)  // ERROR "cannot use"
    
    	c64 = complex(1.0, 2.0) // ok, constant is untyped
    	c128 = complex(1.0, 2.0)
    	C64 = complex(1.0, 2.0)
    	C128 = complex(1.0, 2.0)
    
    	C64 = complex(f32, f32)  // ERROR "cannot use"
    	C128 = complex(f64, f64) // ERROR "cannot use"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 21:00:20 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  10. cmd/batch-job-common-types_test.go

    		{
    			// 1Mib < 2Mib < 10MiB -> in range
    			objSize: 2 << 20,
    			sizeFilter: BatchJobSizeFilter{
    				UpperBound: 10 << 20,
    				LowerBound: 1 << 20,
    			},
    			want: true,
    		},
    		{
    			// 2KiB < 1 MiB -> out of range from left
    			objSize: 2 << 10,
    			sizeFilter: BatchJobSizeFilter{
    				UpperBound: 10 << 20,
    				LowerBound: 1 << 20,
    			},
    			want: false,
    		},
    		{
    			// 11MiB > 10 MiB -> out of range from right
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 08 23:22:28 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top