Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,041 for 3$ (0.06 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictContainerTest.groovy

            container.newElement("c", [3], null)
    
            expect:
            container.conflicts.size() == 1
            container.popConflict().toString() == "a,b,c:3"
        }
    
        def "allows registering multiple elements with the same replacedBy after the replacedBy"() {
            container.newElement("c", [3], null)
            container.newElement("a", [1], "c")
            container.newElement("b", [2], "c")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. src/unicode/utf8/example_test.go

    	// l 1
    	// l 1
    	// o 1
    	// , 1
    	//   1
    	// 世 3
    	// 界 3
    }
    
    func ExampleDecodeRuneInString() {
    	str := "Hello, 世界"
    
    	for len(str) > 0 {
    		r, size := utf8.DecodeRuneInString(str)
    		fmt.Printf("%c %v\n", r, size)
    
    		str = str[size:]
    	}
    	// Output:
    	// H 1
    	// e 1
    	// l 1
    	// l 1
    	// o 1
    	// , 1
    	//   1
    	// 世 3
    	// 界 3
    }
    
    func ExampleEncodeRune() {
    	r := '世'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 05 21:29:18 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/nn.mlir

      // CHECK-NEXT:   metadata: [ {
      // CHECK-NEXT:   name: "min_runtime_version",
      // CHECK-NEXT:   buffer: 3
      // CHECK-NEXT:   } ]
      // CHECK-NEXT:   signature_defs: [ ]
      // CHECK-NEXT: }
    
      %0 = "tfl.average_pool_2d"(%arg0) {filter_height = 3 : i32, filter_width = 6 : i32, fused_activation_function = "NONE", padding = "VALID", stride_h = 3 : i32, stride_w = 1 : i32} : (tensor<1x6x6x16xf32>) -> tensor<1x1x1x16xf32> loc("avgpool")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/AMD64latelower.rules

    restriction on the shift input.
    L6:(SAR(Q|L) x y) && buildcfg.GOAMD64 >= 3 => (SARX(Q|L) x y)
    L7:(SHL(Q|L) x y) && buildcfg.GOAMD64 >= 3 => (SHLX(Q|L) x y)
    L8:(SHR(Q|L) x y) && buildcfg.GOAMD64 >= 3 => (SHRX(Q|L) x y)
    L9:
    L10:// See comments in ARM64latelower.rules for why these are here.
    L11:(MOVLQZX x) && zeroUpper32Bits(x,3) => x
    L12:(MOVWQZX x) && zeroUpper48Bits(x,3) => x
    L13:(MOVBQZX x) && zeroUpper56Bits(x,3) => x
    ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 636 bytes
    - Viewed (0)
  5. platforms/core-runtime/build-operations/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationListenerManagerTest.groovy

                start("3", id2),
                finished("3", id1),
                finished("2", id1),
                finished("1", id1),
                finished("3", id2),
                finished("2", id2),
                finished("1", id2),
            ]
        }
    
        def "does not forward progress notifications outside of start and finish"() {
            given:
            manager.addListener(recordingListener("1"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_status_updater_test.go

    		t.Errorf("UpdateStatefulSetStatus mutated the sets replicas %d", set.Status.Replicas)
    	}
    }
    
    func TestStatefulSetStatusUpdaterUpdatesObservedGeneration(t *testing.T) {
    	set := newStatefulSet(3)
    	status := apps.StatefulSetStatus{ObservedGeneration: 3, Replicas: 2}
    	fakeClient := &fake.Clientset{}
    	updater := NewRealStatefulSetStatusUpdater(fakeClient, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 13 15:37:10 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/misc/Base64Util.java

            final byte[] outData = new byte[num * 3 + lastBytes];
            for (int i = 0; i < num; i++) {
                decode(inData, i * 4, outData, i * 3);
            }
            switch (lastBytes) {
            case 1:
                decode1byte(inData, num * 4, outData, num * 3);
                break;
            case 2:
                decode2byte(inData, num * 4, outData, num * 3);
                break;
            default:
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/dict/kuromoji/KuromojiFileTest.java

                    20);
            assertEquals(4, itemList2.size());
            assertEquals("token4", itemList2.get(3).getToken());
            assertEquals("seg4", itemList2.get(3).getSegmentation());
            assertEquals("reading4", itemList2.get(3).getReading());
            assertEquals("pos4", itemList2.get(3).getPos());
    
            final KuromojiItem kuromojiItem2 = new KuromojiItem(0, "token5",
                    "seg5", "reading5", "pos5");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/tests/prepare_quantize_drq_per_channel.mlir

    // CHECK: %0 = "quantfork.qcast"(%[[CONST]]) : (tensor<2x1024xf32>) -> tensor<2x1024x!quant.uniform<i8<-127:127>:f32, 3.9370078740157481E-9>>
    // CHECK: %1 = "quantfork.dcast"(%0) : (tensor<2x1024x!quant.uniform<i8<-127:127>:f32, 3.9370078740157481E-9>>) -> tensor<2x1024xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/ProjectVersion3.java

     * model objects implement this interface. </p>
     *
     * @since 1.0-milestone-3
     */
    public interface ProjectVersion3 {
        /**
         * @since 1.0-milestone-3
         */
        String getPath();
    
        /**
         * @since 1.0-milestone-3
         */
        String getName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top