Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 7,317 for Using$ (0.16 sec)

  1. platforms/documentation/docs/src/snippets/kotlinDsl/configuring-tasks-basics/groovy/build.gradle

    }
    
    // tag::namespace[]
    tasks.jar {
        archiveFileName = 'foo.jar'
    }
    // end::namespace[]
    
    // tag::using-api[]
    tasks.named('jar') {
        archiveFileName = 'foo.jar'
    }
    // end::using-api[]
    
    // tag::using-eager-api[]
    tasks.getByName('jar') {
        archiveFileName = 'foo.jar'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 329 bytes
    - Viewed (0)
  2. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Decoder.java

         * Reads a signed 64 bit long value. Can read any value that was written using {@link Encoder#writeLong(long)}.
         *
         * @throws EOFException when the end of the byte stream is reached before the long value can be fully read.
         */
        long readLong() throws EOFException, IOException;
    
        /**
         * Reads a signed 64 bit int value. Can read any value that was written using {@link Encoder#writeSmallLong(long)}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/runtime/runtime.cc

    namespace libtf {
    namespace runtime {
    
    using tensorflow::AbstractContext;
    using tensorflow::AbstractFunctionPtr;
    using tensorflow::DataType;
    using tensorflow::FunctionDef;
    using tensorflow::PartialTensorShape;
    using tensorflow::SavedConcreteFunction;
    using tensorflow::SavedObjectGraph;
    using tensorflow::Status;
    using tensorflow::StructuredValue;
    using tensorflow::TensorSpecProto;
    using tensorflow::libexport::TFPackage;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 11:18:25 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_attributes.h

    namespace mlir {
    namespace TF {
    
    // This all moved under tensorflow/core/ir/types and these using declaration are
    // to help with the transition.
    using mlir::tf_type::FuncAttr;         // NOLINT
    using mlir::tf_type::PlaceholderAttr;  // NOLINT
    using mlir::tf_type::ShapeAttr;        // NOLINT
    using mlir::tf_type::TensorProtoAttr;  // NOLINT
    
    }  // end namespace TF
    }  // end namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 05 09:05:10 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/TestsForMapsInJavaUtil.java

            MapEntrySetTester.getSetValueWithNullValuesAbsentMethod(),
            MapEntrySetTester.getSetValueWithNullValuesPresentMethod());
      }
    
      public Test testsForCheckedMap() {
        return MapTestSuiteBuilder.using(
                new TestStringMapGenerator() {
                  @Override
                  protected Map<String, String> create(Entry<String, String>[] entries) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  6. tensorflow/c/eager/c_api_unified_experimental_eager.cc

    // =============================================================================
    
    using tensorflow::AbstractContext;
    using tensorflow::AbstractTensorHandle;
    using tensorflow::dyn_cast;
    using tensorflow::ImmediateExecutionContext;
    using tensorflow::ImmediateExecutionTensorHandle;
    using tensorflow::string;
    using tensorflow::unwrap;
    using tensorflow::wrap;
    using tensorflow::strings::StrCat;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 25 04:40:46 UTC 2020
    - 3.2K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/fingerprinting_utils_test.cc

    using ::tensorflow::proto_splitter::ChunkedMessage;
    using ::tensorflow::proto_splitter::ChunkInfo;
    using ::tensorflow::proto_splitter::ChunkMetadata;
    using ::tensorflow::proto_splitter::FieldIndex;
    using ::tensorflow::proto_splitter_testdata::ManyFields;
    using ::tensorflow::protobuf::Message;
    using ::tensorflow::protobuf::RepeatedPtrField;
    using ::tensorflow::protobuf::TextFormat;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiUnsupportedVersionIntegrationTest.groovy

        }
    
        def "tooling api reports an error when requesting a model using a gradle version that does not implement the tooling api"() {
            when:
            toolingApi.withConnection { ProjectConnection connection -> connection.getModel(GradleProject.class) }
    
            then:
            UnsupportedVersionException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api_unified_experimental.cc

    using tensorflow::AbstractFunction;
    using tensorflow::AbstractTensorHandle;
    using tensorflow::DataType;
    using tensorflow::dyn_cast;
    using tensorflow::OutputList;
    using tensorflow::Status;
    using tensorflow::unwrap;
    using tensorflow::wrap;
    using tensorflow::tracing::CreateTracingExecutionContext;
    using tensorflow::tracing::SetDefaultTracingEngine;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 10:15:17 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/logging/project1/build.gradle

    julLogger.severe('A severe log message logged using JUL')
    julLogger.warning('A warning log message logged using JUL')
    julLogger.info('An info log message logged using JUL')
    julLogger.config('A config log message logged using JUL')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top