Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 7,317 for Using$ (0.18 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-minify/tests/artifactTransformMinify.out

    Nothing to minify - using producer.jar unchanged
    
    > Task :resolveRuntimeClasspath
    Minifying guava-27.1-jre.jar
    Nothing to minify - using listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar unchanged
    Nothing to minify - using jsr305-3.0.2.jar unchanged
    Nothing to minify - using checker-qual-2.5.2.jar unchanged
    Nothing to minify - using error_prone_annotations-2.2.0.jar unchanged
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 819 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

    namespace internal {
    
    namespace {
    
    using llvm::dyn_cast;
    using mlir::Attribute;
    using mlir::Block;
    using mlir::BlockArgument;
    using mlir::DenseIntElementsAttr;
    using mlir::failure;
    using mlir::Location;
    using mlir::LogicalResult;
    using mlir::OpBuilder;
    using mlir::Operation;
    using mlir::OperationPass;
    using mlir::OpOperand;
    using mlir::RankedTensorType;
    using mlir::StringAttr;
    using mlir::success;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/hoist_broadcast_read.cc

    namespace tf2xla {
    namespace internal {
    
    namespace {
    
    using mlir::BlockArgument;
    using mlir::failure;
    using mlir::LogicalResult;
    using mlir::Operation;
    using mlir::OperationPass;
    using mlir::OpOperand;
    using mlir::StringAttr;
    using mlir::success;
    using mlir::Value;
    using mlir::WalkResult;
    using mlir::func::FuncOp;
    using mlir::TF::ReadVariableOp;
    using mlir::tf_device::ReplicateOp;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/representative_dataset_test.cc

    namespace mlir::quant::stablehlo {
    namespace {
    
    using ::stablehlo::quantization::RepresentativeDatasetConfig;
    using ::tensorflow::quantization::RepresentativeDatasetFile;
    using ::testing::Contains;
    using ::testing::HasSubstr;
    using ::testing::Key;
    using ::testing::SizeIs;
    using ::testing::StrEq;
    using ::tsl::testing::IsOk;
    using ::tsl::testing::StatusIs;
    
    TEST(CreateRepresentativeDatasetFileMapTest,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 29 04:53:21 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizerTest.groovy

    Binaries
        Shared library 'hello:sharedLibrary'
            build using task: :helloSharedLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform 'current'
            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/hello/shared/libhello.dylib
        Static library 'hello:staticLibrary'
            build using task: :helloStaticLibrary
            build type: build type 'debug'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. tensorflow/cc/gradients/grad_helper.cc

    #include "tensorflow/cc/ops/data_flow_ops.h"
    #include "tensorflow/cc/ops/standard_ops.h"
    
    namespace tensorflow {
    
    using tensorflow::ops::Add;
    using tensorflow::ops::Const;
    using tensorflow::ops::DynamicStitch;
    using tensorflow::ops::Mod;
    using tensorflow::ops::OnesLike;
    using tensorflow::ops::Range;
    using tensorflow::ops::Size;
    
    Output ReducedShapeHelper(const Scope& scope, const Output& input_shape,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 07 23:11:54 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/files/file/kotlin/build.gradle.kts

    import java.nio.file.Paths
    
    // tag::simple-params[]
    // Using a relative path
    var configFile = file("src/config.xml")
    
    // Using an absolute path
    configFile = file(configFile.absolutePath)
    
    // Using a File object with a relative path
    configFile = file(File("src/config.xml"))
    
    // Using a java.nio.file.Path object with a relative path
    configFile = file(Paths.get("src", "config.xml"))
    
    // Using an absolute java.nio.file.Path object
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 546 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/files/file/groovy/build.gradle

    // tag::simple-params[]
    // Using a relative path
    File configFile = file('src/config.xml')
    
    // Using an absolute path
    configFile = file(configFile.absolutePath)
    
    // Using a File object with a relative path
    configFile = file(new File('src/config.xml'))
    
    // Using a java.nio.file.Path object with a relative path
    configFile = file(Paths.get('src', 'config.xml'))
    
    // Using an absolute java.nio.file.Path object
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 551 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.cc

    using ::stablehlo::quantization::io::GetLocalTmpFileName;
    using ::stablehlo::quantization::io::ListDirectory;
    using ::tensorflow::AssetFileDef;
    using ::tensorflow::SignatureDef;
    using ::tensorflow::calibrator::CalibrationStatistics;
    using ::tensorflow::quantization::ExportedModel;
    using ::tensorflow::quantization::PyFunctionLibrary;
    using ::tensorflow::quantization::RunPasses;
    using CalibrationStatisticsFlatMap =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. 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)
Back to top