Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 7,317 for Using$ (0.22 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithFileInputsIntegrationTest.groovy

    """
            file('a/a.txt').text = '123'
            file('a/b.txt').text = 'abc'
    
            when:
            run(":a:resolve")
    
            then:
            outputContains("processing b.jar using [a.txt, b.txt]")
            outputContains("processing c.jar using [a.txt, b.txt]")
            outputContains("result = [b.jar.green, c.jar.green]")
        }
    
        def "transform can receive a file collection containing external dependencies as parameter"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_patterns.h

    struct LowerPackIntoConcatReshape : public OpRewritePattern<TFL::PackOp> {
      using OpRewritePattern<TFL::PackOp>::OpRewritePattern;
    
      LogicalResult matchAndRewrite(TFL::PackOp pack_op,
                                    PatternRewriter& rewriter) const override;
    };
    
    struct SquaredDifference : public OpRewritePattern<TFL::SquaredDifferenceOp> {
      using OpRewritePattern<TFL::SquaredDifferenceOp>::OpRewritePattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 03 16:37:16 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/kotlinDsl/configuring-tasks-basics/kotlin/build.gradle.kts

    }
    
    // tag::namespace[]
    tasks.jar {
        archiveFileName = "foo.jar"
    }
    // end::namespace[]
    
    // tag::using-api[]
    tasks.named<Jar>("jar") {
        archiveFileName = "foo.jar"
    }
    // end::using-api[]
    
    // tag::using-eager-api[]
    tasks.getByName<Jar>("jar") {
        archiveFileName = "foo.jar"
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 336 bytes
    - Viewed (0)
  4. README.md

    root credentials. You can use the Browser to create buckets, upload objects, and browse the contents of the MinIO server.
    
    You can also connect using any S3-compatible tool, such as the MinIO Client `mc` commandline tool. See
    [Test using MinIO Client `mc`](#test-using-minio-client-mc) for more information on using the `mc` commandline tool. For application developers,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/fingerprinting_utils.cc

    namespace tensorflow::saved_model::fingerprinting {
    
    using ::tensorflow::proto_splitter::ChunkedField;
    using ::tensorflow::proto_splitter::ChunkedMessage;
    using ::tensorflow::proto_splitter::ChunkInfo;
    using ::tensorflow::proto_splitter::ChunkMetadata;
    using ::tensorflow::proto_splitter::FieldIndex;
    using tools::proto_splitter::Field;
    using tools::proto_splitter::FieldType;
    using tools::proto_splitter::GetChunkMetadata;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  6. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginAuxclasspathIntegrationTest.groovy

        }
    
        private void setupRuleUsingProject(String analyzedCode, String... dependencies) {
            includeProject("rule-using")
    
            String dependenciesString = dependencies.join('\n')
            buildFile << """
                project("rule-using") {
                    apply plugin: 'pmd'
    
                    dependencies {
                        $dependenciesString
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. tensorflow/cc/experimental/base/tests/tensor_types_test_util.h

    struct FloatType {
      using type = float;
      static constexpr TF_DataType kDType = TF_FLOAT;
    };
    
    struct DoubleType {
      using type = double;
      static constexpr TF_DataType kDType = TF_DOUBLE;
    };
    
    struct Int32Type {
      using type = int32_t;
      static constexpr TF_DataType kDType = TF_INT32;
    };
    
    struct UINT8Type {
      using type = uint8_t;
      static constexpr TF_DataType kDType = TF_UINT8;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 00:34:05 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/testdata/slices.go

    var limited1 = Map[int, byte](input, limiter)
    var limited2 = Map(input, limiter) // using type inference
    
    func reducer(x float64, y int) float64 {
    	return x + float64(y)
    }
    
    var reduced1 = Reduce[int, float64](input, 0, reducer)
    var reduced2 = Reduce(input, 1i, reducer) // using type inference
    var reduced3 = Reduce(input, 1, reducer) // using type inference
    
    func filter(x int) bool {
    	return x&1 != 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 18:02:18 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/utils/dialect_detection_utils_test.cc

    namespace tensorflow {
    namespace tf2xla {
    namespace internal {
    
    namespace {
    
    using mlir::MLIRContext;
    using mlir::OpBuilder;
    using mlir::Operation;
    using mlir::OperationState;
    using mlir::UnknownLoc;
    using mlir::chlo::ChloDialect;
    using mlir::TF::TensorFlowDialect;
    using tensorflow::tf2xla::internal::IsInBridgeAcceptableDialects;
    
    class SharedUtilsTest : public ::testing::Test {};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 08 20:33:37 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

      }
    
      protected Collection<Method> suppressForConcurrentSkipListSetWithComparator() {
        return Collections.emptySet();
      }
    
      public Test testsForCheckedNavigableSet() {
        return SortedSetTestSuiteBuilder.using(
                new TestStringSortedSetGenerator() {
                  @Override
                  public NavigableSet<String> create(String[] elements) {
                    NavigableSet<String> innerSet = new TreeSet<>();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top