Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 183 for 123456M (0.09 sec)

  1. pkg/wasm/cache_test.go

    				ociURLWithTag: {
    					checksum: dockerImageDigest,
    					resourceVersionByResource: map[string]string{
    						"namespace.resource": "123456",
    					},
    				},
    			},
    			fetchURL: ociURLWithTag,
    			getOptions: GetOptions{
    				ResourceName:    "namespace.resource",
    				ResourceVersion: "123456",
    				RequestTimeout:  time.Second * 10,
    				PullPolicy:      Always,
    			},
    			wantCachedModules: map[moduleKey]*cacheEntry{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/beans/converter/TimeConverterTest.java

            final TimeConverter converter = new TimeConverter("HH:mm:ss");
            final java.sql.Time result = (java.sql.Time) converter.getAsObject("12:34:56");
            System.out.println(result);
            assertThat(converter.getAsString(result), is("12:34:56"));
        }
    
        /**
         * @throws Exception
         */
        public void testIsTarget() throws Exception {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. src/internal/diff/testdata/start.txt

    -- old --
    e
    pi
    4
    5
    6
    7
    8
    9
    10
    -- new --
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    -- diff --
    diff old new
    --- old
    +++ new
    @@ -1,5 +1,6 @@
    -e
    -pi
    +1
    +2
    +3
     4
     5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 16:56:29 UTC 2022
    - 142 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/simple.mlir

      // CHECK: module attributes
      // CHECK-SAME: tfl.description = "MLIR Converted."
      // CHECK-SAME: tfl.schema_version = 3 : i32
    
      // CHECK:          %{{.*}} = "tfl.pseudo_const"() <{value = dense<{{\[\[1, 2\], \[3, 4\], \[5, 6\]\]}}> : tensor<3x2xi32>}>
      // CHECK-NEXT:     [[SUB:%.*]] = tfl.sub %{{.*}}, %{{.*}} {fused_activation_function = "RELU6"} : tensor<3x2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. src/internal/diff/testdata/end.txt

    -- old --
    1
    2
    3
    4
    5
    6
    7
    eight
    nine
    ten
    eleven
    -- new --
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    -- diff --
    diff old new
    --- old
    +++ new
    @@ -5,7 +5,6 @@
     5
     6
     7
    -eight
    -nine
    -ten
    -eleven
    +8
    +9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 16:56:29 UTC 2022
    - 178 bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cpumanager/policy_none_test.go

    	}
    }
    
    func TestNonePolicyAllocate(t *testing.T) {
    	policy := &nonePolicy{}
    
    	st := &mockState{
    		assignments:   state.ContainerCPUAssignments{},
    		defaultCPUSet: cpuset.New(1, 2, 3, 4, 5, 6, 7),
    	}
    
    	testPod := makePod("fakePod", "fakeContainer", "1000m", "1000m")
    
    	container := &testPod.Spec.Containers[0]
    	err := policy.Allocate(st, testPod, container)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. src/time/mono_test.go

    	if t3.Nanosecond() != 123456 {
    		t.Errorf("t3.Nanosecond() = %d, want 123456", t3.Nanosecond())
    	}
    	if GetMono(&t3) != 0 {
    		t.Errorf("t3.mono = %d, want 0 (wall time out of range for monotonic reading)", GetMono(&t3))
    	}
    
    	t4 := tm.Add(+9e18) // wall now out of range
    	if t4.Nanosecond() != 123456 {
    		t.Errorf("t4.Nanosecond() = %d, want 123456", t4.Nanosecond())
    	}
    	if GetMono(&t4) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 19 17:10:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  8. test/ken/interbasic.go

    	i16 = 994
    	ia[6] = i16
    	i32 = 3434
    	ia[7] = i32
    	i64 = 1234567
    	ia[8] = i64
    
    	u8 = 12
    	ia[9] = u8
    	u16 = 799
    	ia[10] = u16
    	u32 = 4455
    	ia[11] = u32
    	u64 = 765432
    	ia[12] = u64
    
    	s = ia[0].(string)
    	if s != "xxx" {
    		println(0, s)
    		panic("fail")
    	}
    	i32 = int32(ia[1].(int))
    	if i32 != 12345 {
    		println(1, i32)
    		panic("fail")
    	}
    	b = ia[2].(bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 2.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/collections/ImmutableFilteredListTest.groovy

            given:
            def list = ImmutableFilteredList.allOf([1, 2, 3, 4, 5, 6])
            def another = list.matching(x -> x % 2 == 0)
    
            expect:
            list.withoutIndexFrom(0, list) == [2, 3, 4, 5, 6]
            list.withoutIndexFrom(0, another) == [1, 3, 4, 5, 6]
            list.withoutIndexFrom(0, another).withoutIndexFrom(1, another).withoutIndexFrom(2, another) == [1, 3, 5]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. src/cmd/internal/notsha256/sha256block_386.s

    	SHA256ROUND0(5, 0x59f111f1, 3, 4, 5, 6, 7, 0, 1, 2)
    	SHA256ROUND0(6, 0x923f82a4, 2, 3, 4, 5, 6, 7, 0, 1)
    	SHA256ROUND0(7, 0xab1c5ed5, 1, 2, 3, 4, 5, 6, 7, 0)
    	SHA256ROUND0(8, 0xd807aa98, 0, 1, 2, 3, 4, 5, 6, 7)
    	SHA256ROUND0(9, 0x12835b01, 7, 0, 1, 2, 3, 4, 5, 6)
    	SHA256ROUND0(10, 0x243185be, 6, 7, 0, 1, 2, 3, 4, 5)
    	SHA256ROUND0(11, 0x550c7dc3, 5, 6, 7, 0, 1, 2, 3, 4)
    	SHA256ROUND0(12, 0x72be5d74, 4, 5, 6, 7, 0, 1, 2, 3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 8.2K bytes
    - Viewed (0)