Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 4,039 for 3$ (0.03 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/SitemapsHelperTest.java

            assertEquals("2004-12-23T18:00:15+00:00", sitemaps[3].getLastmod());
            assertEquals("http://www.example.com/catalog?item=74&desc=vacation_newfoundland", sitemaps[3].getLoc());
            assertNull(((SitemapUrl) sitemaps[3]).getChangefreq());
            assertEquals("0.3", ((SitemapUrl) sitemaps[3]).getPriority());
    
            assertEquals("2004-11-23", sitemaps[4].getLastmod());
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. test/fixedbugs/issue26616.go

    func f() {
    	var _ int = three() // ERROR "assignment mismatch: 1 variable but three returns 3 values|multiple-value function call in single-value context|multiple-value "
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 23 19:41:41 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/BuildEventsErrorIntegrationTest.groovy

            fails()
    
            then:
            failure.assertHasDescription("broken")
                    .assertHasNoCause()
                    .assertHasFileName("Build file '$buildFile'")
                    .assertHasLineNumber(3)
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "produces reasonable error message when taskGraph.whenReady action fails"() {
            buildFile << """
        def action = {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/CompactLinkedHashMapTest.java

        map.put(1, "a");
        map.put(4, "b");
        map.put(3, "d");
        map.put(2, "c");
        testHasMapEntriesInOrder(map, 1, "a", 4, "b", 3, "d", 2, "c");
      }
    
      public void testInsertionOrderAfterPutKeyTwice() {
        Map<Integer, String> map = CompactLinkedHashMap.create();
        map.put(1, "a");
        map.put(4, "b");
        map.put(3, "d");
        map.put(2, "c");
        map.put(1, "e");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 21:08:15 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/chacha20/chacha_s390x.s

    	VMRLF a, c, v \ // v = {a[2], c[2], a[3], c[3]}
    	VMRLF b, d, w \ // w = {b[2], d[2], b[3], d[3]}
    	VMRHF t, u, a \ // a = {a[0], b[0], c[0], d[0]}
    	VMRLF t, u, b \ // b = {a[1], b[1], c[1], d[1]}
    	VMRHF v, w, c \ // c = {a[2], b[2], c[2], d[2]}
    	VMRLF v, w, d // d = {a[3], b[3], c[3], d[3]}
    
    // func xorKeyStreamVX(dst, src []byte, key *[8]uint32, nonce *[3]uint32, counter *uint32)
    TEXT ·xorKeyStreamVX(SB), NOSPLIT, $0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. src/internal/byteorder/byteorder.go

    	)
    }
    
    func BeUint32(b []byte) uint32 {
    	_ = b[3] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint32(b[3]) | uint32(b[2])<<8 | uint32(b[1])<<16 | uint32(b[0])<<24
    }
    
    func BePutUint32(b []byte, v uint32) {
    	_ = b[3] // early bounds check to guarantee safety of writes below
    	b[0] = byte(v >> 24)
    	b[1] = byte(v >> 16)
    	b[2] = byte(v >> 8)
    	b[3] = byte(v)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 20:31:29 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/mul_v3.mlir

    ^bb0(%arg0: tensor<3x!quant.uniform<i8:f32, 1.0>>):
      // CHECK:      {
      // CHECK-NEXT:  version: 3,
      // CHECK-NEXT:  operator_codes: [ {
      // CHECK-NEXT:    deprecated_builtin_code: 18,
      // CHECK-NEXT:    version: 3,
      // CHECK-NEXT:    builtin_code: MUL
      // CHECK-NEXT:  } ],
      // CHECK-NEXT:  subgraphs: [ {
      // CHECK-NEXT:    tensors: [ {
      // CHECK-NEXT:      shape: [ 3 ],
      // CHECK-NEXT:      type: INT8,
      // CHECK-NEXT:      buffer: 1,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/HashBiMapTest.java

        map.remove("bar");
        assertThat(map.entrySet())
            .containsExactly(Maps.immutableEntry("foo", 1), Maps.immutableEntry("quux", 3))
            .inOrder();
      }
    
      public void testInsertionOrderAfterRemoveLast() {
        BiMap<String, Integer> map = HashBiMap.create();
        map.put("foo", 1);
        map.put("bar", 2);
        map.put("quux", 3);
    
        map.remove("quux");
        assertThat(map.entrySet())
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library_xla_weight_only.mlir

        %2 = "tf.Cast"(%identity) {Truncate = false} : (tensor<*xi8>) -> tensor<*xf32>
        %3 = "tf.DepthwiseConv2dNative"(%input, %2) {
          padding = "VALID", strides = [1, 1, 1, 1],
          attr_map = "strides:0,padding:1,explicit_paddings:2,dilations:3"
        } : (tensor<*xf32>, tensor<*xf32>) -> tensor<*xf32>
        func.return %3 : tensor<*xf32>
      }
    
      func.func private @internal_matmul_fn(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 15:43:38 UTC 2023
    - 7K bytes
    - Viewed (0)
  10. test/typeparam/equal.go

    	assert(f(3, 3))
    	assert(!f(3, 5))
    	assert(g(3, 3))
    	assert(!g(3, 5))
    	assert(h(myint(3), myint(3)))
    	assert(!h(myint(3), myint(5)))
    
    	type S struct{ a, b float64 }
    
    	assert(f(S{3, 5}, S{3, 5}))
    	assert(!f(S{3, 5}, S{4, 6}))
    	assert(g(S{3, 5}, S{3, 5}))
    	assert(!g(S{3, 5}, S{4, 6}))
    
    	assert(k(3, struct{ a, b int }{3, 3}))
    	assert(!k(3, struct{ a, b int }{3, 4}))
    }
    
    func assert(b bool) {
    	if !b {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top