Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 131 for B3 (0.02 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectSetSpec.groovy

        }
    
        def canChainFilteredCollections() {
            final Bean bean = new Bean("b1");
            final Bean bean2 = new Bean("b2");
            final Bean bean3 = new Bean("b3");
    
            when:
            Spec<Bean> spec = { it != bean } as Spec<Bean>
            Spec<Bean> spec2 = {it != bean2 } as Spec<Bean>
    
            container.add(bean);
            container.add(bean2);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/Longs.java

       * order; equivalent to {@code Longs.fromByteArray(new byte[] {b1, b2, b3, b4, b5, b6, b7, b8})}.
       *
       * @since 7.0
       */
      public static long fromBytes(
          byte b1, byte b2, byte b3, byte b4, byte b5, byte b6, byte b7, byte b8) {
        return (b1 & 0xFFL) << 56
            | (b2 & 0xFFL) << 48
            | (b3 & 0xFFL) << 40
            | (b4 & 0xFFL) << 32
            | (b5 & 0xFFL) << 24
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/primitives/Longs.java

       * order; equivalent to {@code Longs.fromByteArray(new byte[] {b1, b2, b3, b4, b5, b6, b7, b8})}.
       *
       * @since 7.0
       */
      public static long fromBytes(
          byte b1, byte b2, byte b3, byte b4, byte b5, byte b6, byte b7, byte b8) {
        return (b1 & 0xFFL) << 56
            | (b2 & 0xFFL) << 48
            | (b3 & 0xFFL) << 40
            | (b4 & 0xFFL) << 32
            | (b5 & 0xFFL) << 24
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

                        8e:07:69:a3:b6:d1:c7:72:d1:de:98:14:a5:61:9b:
                        83:03:1d:da:54:d1:d4:0d:7f:de:98:2e:cc:db:6f:
                        e4:19:c7:41:43:59:ff:34:7b:82:06:80:01:ab:79:
                        b3:40:d3:45:1f:52:2d:10:f9:55:40:a7:7a:61:f7:
                        fd:9c:41:eb:d1:ec:7e:30:ca:1a:fa:0e:9e:0f:1e:
                        50:93:9a:ca:55:ea:64:80:6e:bb:49:7d:12:15:d8:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  5. pkg/controller/podgc/gc_controller_test.go

    				{name: "d2", phase: v1.PodRunning, nodeName: "worker-1"},
    				{name: "e2", phase: v1.PodUnknown, nodeName: "worker-1"},
    
    				// pods a3, b3, c3, d3 and e3 are on node worker-2
    				{name: "a3", nodeName: "worker-2"},
    				{name: "b3", deletionTimeStamp: &metav1.Time{}, nodeName: "worker-2"},
    				{name: "c3", phase: v1.PodPending, nodeName: "worker-2"},
    				{name: "d3", phase: v1.PodRunning, nodeName: "worker-2"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/liveness/intervals.go

    //
    //          b1:
    //  0        VarDef abc
    //  1        memset(abc,0)
    //  2        VarDef xyz
    //  3        memset(xyz,0)
    //  4        abc.f1 = 2
    //  5        xyz.f3 = 9
    //  6        if q goto B4
    //  7 B3:    z = xyz.x
    //  8        goto B5
    //  9 B4:    z = abc.x
    //           // fallthrough
    // 10 B5:    z++
    //
    // To describe the lifetime of the variables above we might use these
    // intervals:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/regalloc.go

    // input must be a store (using StoreReg) at the end of the corresponding
    // predecessor block.
    //     b1: y = ... : AX        b2: z = ... : BX
    //         y2 = StoreReg y         z2 = StoreReg z
    //         goto b3                 goto b3
    //     b3: x = phi(y2, z2)
    // The stack allocator knows that StoreReg args of stack-allocated phis
    // must be allocated to the same stack slot as the phi that uses them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  8. docs/debugging/xl-meta/main.go

    						b2, err := decode(r, file.Name)
    						if err != nil {
    							return err
    						}
    						var tmp map[string]interface{}
    						if err := json.Unmarshal(b2, &tmp); err == nil {
    							if b3, err := json.Marshal(tmp); err == nil {
    								b2 = b3
    							}
    						}
    						toPrint = append(toPrint, fmt.Sprintf("\t%s: %s", string(b), string(b2)))
    					} else if c.Bool("combine") && isPart.MatchString(file.Name) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. src/net/ip_test.go

    	{"fe80::1%lo0", nil},
    	{"fe80::1%911", nil},
    	{"", nil},
    	//6 zeroes in one group
    	{"0:0:0:0:000000:ffff:127.1.2.3", nil},
    	//5 zeroes in one group edge case
    	{"0:0:0:0:00000:ffff:127.1.2.3", nil},
    	{"a1:a2:a3:a4::b1:b2:b3:b4", nil}, // Issue 6628
    	{"127.001.002.003", nil},
    	{"::ffff:127.001.002.003", nil},
    	{"123.000.000.000", nil},
    	{"1.2..4", nil},
    	{"0123.0.0.1", nil},
    }
    
    func TestParseIP(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    	X11
    	X12
    	X13
    	X14
    	X15
    	X16
    	X17
    	X18
    	X19
    	X20
    	X21
    	X22
    	X23
    	X24
    	X25
    	X26
    	X27
    	X28
    	X29
    	X30
    	XZR
    
    	B0
    	B1
    	B2
    	B3
    	B4
    	B5
    	B6
    	B7
    	B8
    	B9
    	B10
    	B11
    	B12
    	B13
    	B14
    	B15
    	B16
    	B17
    	B18
    	B19
    	B20
    	B21
    	B22
    	B23
    	B24
    	B25
    	B26
    	B27
    	B28
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top