Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,337 for 3$ (0.26 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelConfigurationIntegrationTest.groovy

            when:
            executer.withArguments(ENABLE_CLI)
            def model = runBuildAction(new FetchCustomModelForEachProjectInParallel())
    
            then:
            model.size() == 3
            model[0].message == "It works from project :"
            model[1].message == "It works from project :a"
            model[2].message == "It works from project :b"
    
            and:
            fixture.assertStateStored {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiCoupledProjectsIntegrationTest.groovy

            """
    
            when:
            executer.withArguments(ENABLE_CLI, WARN_PROBLEMS_CLI_OPT)
            def model = runBuildAction(new FetchCustomModelForEachProject())
    
            then:
            model.size() == 3
            model[0].message == "project a"
            model[1].message == "project b"
            model[2].message == "It works from project :c"
    
            and:
            fixture.assertStateStoredWithProblems {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. src/crypto/md5/gen.go

    			{{rotate -}}
    		{{end}}
    
    		// round 3
    		{{range $i, $s := dup 4 .Shift3 -}}
    			{{printf "arg0 = arg1 + bits.RotateLeft32((arg1^arg2^arg3)+arg0+x%x+%#08x, %d)" (idx 3 $i) (index $.Table3 $i) $s | relabel}}
    			{{rotate -}}
    		{{end}}
    
    		// round 4
    		{{range $i, $s := dup 4 .Shift4 -}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      %2 = "tfl.sqrt"(%1) : (tensor<f32>) -> tensor<f32>
      %3 = "tfl.div"(%arg1, %2) {fused_activation_function = "NONE"} : (tensor<2xf32>, tensor<f32>) -> tensor<2xf32>
      func.return %3: tensor<2xf32>
      // CHECK: %3 = tfl.div([[INPUT:%.*]], %2) <{fused_activation_function = "NONE"}> : (tensor<2xf32>, tensor<f32>) -> tensor<2xf32>
      // CHECK: return %3
    }
    
    // CHECK-LABEL: @InvalidL2NormalizePattern2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  5. src/crypto/sha256/sha256.go

    }
    
    func (d *digest) Reset() {
    	if !d.is224 {
    		d.h[0] = init0
    		d.h[1] = init1
    		d.h[2] = init2
    		d.h[3] = init3
    		d.h[4] = init4
    		d.h[5] = init5
    		d.h[6] = init6
    		d.h[7] = init7
    	} else {
    		d.h[0] = init0_224
    		d.h[1] = init1_224
    		d.h[2] = init2_224
    		d.h[3] = init3_224
    		d.h[4] = init4_224
    		d.h[5] = init5_224
    		d.h[6] = init6_224
    		d.h[7] = init7_224
    	}
    	d.nx = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/archive/tar/writer_test.go

    		tests: []testFnc{
    			testWrite{"ab", 2, nil},
    			testRemaining{6, 4},
    			testWrite{"\x00\x00\x00", 3, nil},
    			testRemaining{3, 4},
    			testWrite{"cde", 3, errUnrefData},
    			testRemaining{0, 1},
    		},
    	}, {
    		maker: makeSparse{makeReg{3, "abc"}, sparseHoles{{0, 2}, {5, 2}}, 7},
    		tests: []testFnc{
    			testRemaining{7, 3},
    			testWrite{"\x00\x00abc\x00\x00", 7, nil},
    			testRemaining{0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/ifrt/sink_variable_as_named_array.mlir

        %2 = "tf.ReadVariableOp"(%0) : (tensor<!tf_type.resource<tensor<3x1xf32>>>) -> tensor<3x1xf32>
        %3 = "tf.MatMul"(%arg0, %2) : (tensor<1x3xf32>, tensor<3x1xf32>) -> tensor<1x1xf32>
        %result = "tf.IfrtCall"(%arg0, %2) <{program_id = 6515870160938153680 : i64, variable_arg_indices = []}> : (tensor<1x3xf32>, tensor<3x1xf32>) -> (tensor<1x1xf32>)
        return %result, %3 : tensor<1x1xf32>, tensor<1x1xf32>
      }
    }
    
    // -----
    // Variable tensor is only for host
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 15:33:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. src/net/http/cookie_test.go

    			{Name: "cookie-2", Value: "v$2"},
    			{Name: "cookie-3", Value: "v$3"},
    		},
    		"cookie-1=v$1; cookie-2=v$2; cookie-3=v$3",
    	},
    	// Quoted values (issue #46443)
    	{
    		[]*Cookie{
    			{Name: "cookie-1", Value: "quoted", Quoted: true},
    			{Name: "cookie-2", Value: "quoted with spaces", Quoted: true},
    			{Name: "cookie-3", Value: "quoted,with,commas", Quoted: true},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

                run ":aPing", ":bPing"
            }
        }
    
        def "independent tasks from multiple projects execute in parallel"() {
            given:
            withParallelThreads(3)
    
            expect:
            2.times {
                blockingServer.expectConcurrent(":a:aPing", ":a:bPing", ":b:aPing")
                run ":a:aPing", ":a:bPing", ":b:aPing"
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. android/guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java

            new IteratorTester<Integer>(
                3, MODIFIABLE, newArrayList(1, 2), IteratorTester.KnownOrder.KNOWN_ORDER) {
              @Override
              protected Iterator<Integer> newTargetIterator() {
                return ImmutableList.of(1, 2).iterator();
              }
            };
        assertFailure(tester);
      }
    
      public void testUnknownOrder() {
        new IteratorTester<Integer>(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top