Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 183 for 123456M (0.1 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultSetPropertyTest.groovy

        def "discards duplicates values and retains iteration order of added elements"() {
            given:
            property.set(["123"] as Set)
            property.add("abc")
            property.addAll(Providers.of(["123", "abc", "123", "456"]))
            property.add("123")
            property.add("def")
    
            expect:
            property.get() as List == ["123", "abc", "456", "def"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 13:43:02 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. cmd/lock-rest-server-common_test.go

    	testPath, locker, _ := createLockTestServer(ctx, t)
    	defer os.RemoveAll(testPath)
    
    	lockRequesterInfo1 := lockRequesterInfo{
    		Owner:           "owner",
    		Writer:          true,
    		UID:             "0123-4567",
    		Timestamp:       UTCNow(),
    		TimeLastRefresh: UTCNow(),
    	}
    	lockRequesterInfo2 := lockRequesterInfo{
    		Owner:           "owner",
    		Writer:          true,
    		UID:             "89ab-cdef",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 23 17:26:21 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. android/guava-tests/benchmark/com/google/common/cache/ChainBenchmark.java

    /**
     * Benchmark for {@code LocalCache.Segment.removeEntryFromChain}.
     *
     * @author Charles Fry
     */
    @SuppressWarnings("CheckReturnValue")
    public class ChainBenchmark {
    
      @Param({"1", "2", "3", "4", "5", "6"})
      int length;
    
      private Segment<Object, Object> segment;
      private ReferenceEntry<Object, Object> head;
      private @Nullable ReferenceEntry<Object, Object> chain;
    
      @SuppressWarnings("GuardedBy")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 15:19:38 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/control_flow_upgrade_legacy_v1.py

    # CHECK: func private @"key/[[else]]"(
    # CHECK-SAME: tf._original_func_name
    # CHECK: func private @"key/[[then]]"(
    # CHECK-SAME: tf._original_func_name
    
    
    def Test():
      data = tf.constant([1, 2, 3, 4, 5, 6])
      # Create placeholders to prevent constant folding.
      x_op = tf.placeholder(dtype=tf.int32)
      y_op = tf.placeholder(dtype=tf.int32)
      less_op = tf.less(x_op, y_op)
      switch_op = control_flow_ops.switch(data, less_op)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 02:29:35 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/pjrt_tensor_buffer_util_test.cc

      Tensor dest_cpu_tensor(cpu_allocator(), tensorflow::DT_INT32,
                             tensorflow::TensorShape(dimensions));
      TF_ASSERT_OK_AND_ASSIGN(auto pjrt_client, GetPjRtClient(DEVICE_GPU));
      std::vector<int32_t> data{1, 2, 3, 4, 5, 6};
      xla::Shape xla_shape = xla::ShapeUtil::MakeShape(xla::S32, dimensions);
      TF_ASSERT_OK_AND_ASSIGN(
          auto pjrt_buffer,
          pjrt_client->BufferFromHostBuffer(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 14 18:14:47 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. test/codegen/arithmetic.go

    	out[1] = a + 0xFFFFFFFE00000000
    	// ppc64x/power10:"ADD\t[$]1234567,"
    	// ppc64x/power9:"ADDIS\t[$]19,", "ADD\t[$]-10617,"
    	// ppc64x/power8:"ADDIS\t[$]19,", "ADD\t[$]-10617,"
    	out[2] = a + 1234567
    	// ppc64x/power10:"ADD\t[$]-1234567,"
    	// ppc64x/power9:"ADDIS\t[$]-19,", "ADD\t[$]10617,"
    	// ppc64x/power8:"ADDIS\t[$]-19,", "ADD\t[$]10617,"
    	out[3] = a - 1234567
    	// ppc64x/power10:"ADD\t[$]2147450879,"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. src/net/mac_test.go

    	{"01:02:03:04:05006", nil, "invalid MAC address"},
    	{"01-02:03:04:05:06", nil, "invalid MAC address"},
    	{"01:02-03-04-05-06", nil, "invalid MAC address"},
    	{"0123:4567:89AF", nil, "invalid MAC address"},
    	{"0123-4567-89AF", nil, "invalid MAC address"},
    }
    
    func TestParseMAC(t *testing.T) {
    	match := func(err error, s string) bool {
    		if s == "" {
    			return err == nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 27 02:36:14 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  8. src/encoding/gob/encoder_test.go

    	var values = []any{
    		true,
    		int(123),
    		int8(123),
    		int16(-12345),
    		int32(123456),
    		int64(-1234567),
    		uint(123),
    		uint8(123),
    		uint16(12345),
    		uint32(123456),
    		uint64(1234567),
    		uintptr(12345678),
    		float32(1.2345),
    		float64(1.2345678),
    		complex64(1.2345 + 2.3456i),
    		complex128(1.2345678 + 2.3456789i),
    		[]byte("hello"),
    		string("hello"),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. src/log/slog/json_handler_test.go

    			for i := 0; i < b.N; i++ {
    				l.LogAttrs(ctx, LevelInfo, "this is a typical log message",
    					String("module", "github.com/google/go-cmp"),
    					String("version", "v1.23.4"),
    					Int("count", 23),
    					Int("number", 123456),
    				)
    			}
    		})
    	}
    }
    
    func BenchmarkPreformatting(b *testing.B) {
    	type req struct {
    		Method  string
    		URL     string
    		TraceID string
    		Addr    string
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 17:06:26 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/examples/pad/pad_ops_test.py

      @parameterized.named_parameters(('ReflectMode', 'REFLECT'),
                                      ('SymmetricMode', 'SYMMETRIC'))
      def test_mirror_pad(self, mode):
        input_ = tf.constant([[1, 2, 3], [4, 5, 6]], dtype=tf.float32)
        paddings = tf.constant([[
            1,
            1,
        ], [2, 2]])
        kwargs = {
            'input': input_,
            'paddings': paddings,
            'mode': mode,
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 3.4K bytes
    - Viewed (0)
Back to top