Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for 111111112 (0.08 sec)

  1. src/crypto/internal/nistec/fiat/p521_invert.go

    	//
    	//	_10       = 2*1
    	//	_11       = 1 + _10
    	//	_1100     = _11 << 2
    	//	_1111     = _11 + _1100
    	//	_11110000 = _1111 << 4
    	//	_11111111 = _1111 + _11110000
    	//	x16       = _11111111 << 8 + _11111111
    	//	x32       = x16 << 16 + x16
    	//	x64       = x32 << 32 + x32
    	//	x65       = 2*x64 + 1
    	//	x129      = x65 << 64 + x64
    	//	x130      = 2*x129 + 1
    	//	x259      = x130 << 129 + x129
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. pilot/pkg/model/addressmap_test.go

    	. "github.com/onsi/gomega"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/cluster"
    )
    
    const (
    	c1ID = "cluster-1"
    	c2ID = "cluster-2"
    )
    
    var (
    	c1Addresses = []string{"1.1.1.1", "1.1.1.2"}
    	c2Addresses = []string{"2.1.1.1", "2.1.1.2"}
    )
    
    func TestAddressMapLen(t *testing.T) {
    	cases := []struct {
    		name     string
    		newMap   func() *model.AddressMap
    		expected int
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p224_sqrt.go

    	//	_110     = 2*_11
    	//	_111     = 1 + _110
    	//	_111000  = _111 << 3
    	//	_111111  = _111 + _111000
    	//	_1111110 = 2*_111111
    	//	_1111111 = 1 + _1111110
    	//	x12      = _1111110 << 5 + _111111
    	//	x24      = x12 << 12 + x12
    	//	i36      = x24 << 7
    	//	x31      = _1111111 + i36
    	//	x48      = i36 << 17 + x24
    	//	x96      = x48 << 48 + x48
    	//	return     x96 << 31 + x31
    	//
    	var t0 = new(fiat.P224Element)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.1K bytes
    - Viewed (1)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/StaticVersionComparator.java

    import java.util.Map;
    
    /**
     * Allows for comparison of Version instances.
     * Note that this comparator only considers the 'parts' of a version, and does not consider the part 'separators'.
     * This means that it considers `1.1.1 == 1-1-1 == 1.1-1`, and should not be used in cases where this is important.
     * One example where this comparator is inappropriate is if versions should be retained in a TreeMap/TreeSet.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/podcgroupns_test.go

    			},
    			expectPodUID:      "",
    			expectContainerID: "",
    			expectMsg:         "multiple pod UIDs found in cgroups (11111111-b29f-11e7-9350-020968147796, 22222222-b29f-11e7-9350-020968147796)",
    		},
    	} {
    		tt := tt
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/MultiInputStreamTest.java

        joinHelper(1);
        joinHelper(0, 0, 0);
        joinHelper(10, 20);
        joinHelper(10, 0, 20);
        joinHelper(0, 10, 20);
        joinHelper(10, 20, 0);
        joinHelper(10, 20, 1);
        joinHelper(1, 1, 1, 1, 1, 1, 1, 1);
        joinHelper(1, 0, 1, 0, 1, 0, 1, 0);
      }
    
      public void testOnlyOneOpen() throws Exception {
        final ByteSource source = newByteSource(0, 50);
        final int[] counter = new int[1];
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbComTreeConnectAndX.java

         * 7 = SMB_COM_TRANSACTION
         * 8 = SMB_COM_QUERY_INFORMATION
         */
    
        /* All batch limits are single batch only until further notice
         */
    
        private static byte[] batchLimits = {
            1, 1, 1, 1, 1, 1, 1, 1, 0
        };
    
        static {
            String s;
    
            if(( s = Config.getProperty( "jcifs.smb1.smb.client.TreeConnectAndX.CheckDirectory" )) != null ) {
                batchLimits[0] = Byte.parseByte( s );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 6.8K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p256_ordinv.go

    	p256OrdSqr(x, _10101, 1)     // _101010
    	p256OrdMul(_101111, _101, x) // _101111
    	p256OrdMul(x, _10101, x)     // _111111 = x6
    	p256OrdSqr(t, x, 2)          // _11111100
    	p256OrdMul(t, t, _11)        // _11111111 = x8
    	p256OrdSqr(x, t, 8)          // _ff00
    	p256OrdMul(x, x, t)          // _ffff = x16
    	p256OrdSqr(t, x, 16)         // _ffff0000
    	p256OrdMul(t, t, x)          // _ffffffff = x32
    
    	p256OrdSqr(x, t, 64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. pkg/lazy/lazy_test.go

    			resCh <- res
    			wg.Done()
    		}()
    	}
    	wg.Wait()
    	close(resCh)
    	for r := range resCh {
    		results = append(results, r)
    	}
    	slices.Sort(results)
    	assert.Equal(t, results, []int32{1, 1, 1, 1, 1, 1, 1, 1, 1, 1})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 17:36:41 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. src/runtime/utf8.go

    	mask4 = 0x07 // 0000 0111
    
    	rune1Max = 1<<7 - 1
    	rune2Max = 1<<11 - 1
    	rune3Max = 1<<16 - 1
    
    	// The default lowest and highest continuation byte.
    	locb = 0x80 // 1000 0000
    	hicb = 0xBF // 1011 1111
    )
    
    // countrunes returns the number of runes in s.
    func countrunes(s string) int {
    	n := 0
    	for range s {
    		n++
    	}
    	return n
    }
    
    // decoderune returns the non-ASCII rune at the start of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 06 02:46:02 UTC 2020
    - 3.4K bytes
    - Viewed (0)
Back to top