Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 94 for expiring (0.41 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/weight_only_ptq.cc

          CreateExportedModel(signature_keys, tags, quantization_config,
                              WeightOnlyPtqComponent::kName, *function_aliases,
                              *ctx, *module));
    
      // Remove the `tpu` tag for exporting because the output quantized model is
      // essentially a CPU model.
      tags.erase("tpu");
    
      py_function_library.SaveExportedModel(
          dst_saved_model_path, post_calibrated_exported_model,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependenciesExtensions.kt

     *
     * These extension functions allow an interface to implement a dependencies block in the Kotlin DSL by
     * - exposing an instance of [DependencyCollector] to add dependencies without explicitly calling [DependencyCollector.add] or [DependencyCollector.addConstraint]
     * - exposing an instance of [DependencyModifier] to modify dependencies without explicitly calling [DependencyModifier.modify]
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 18:51:29 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device_compiler_client.cc

        const xla::LocalExecutable& executable) {
      if (executable.executable() == nullptr) {
        return errors::FailedPrecondition(
            "Executable not found for serialization.");
      }
    
      VLOG(1)
          << "Exporting xla::LocalExecutable as an xla::AotCompilationResult and "
             "serializing it to string.";
      xla::Compiler* compiler = client_->backend().compiler();
      auto exported = compiler->Export(executable.executable());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. src/internal/weak/pointer.go

    semantics of the WeakReference type.
    
    Using go:linkname to access this package and the functions it references
    is explicitly forbidden by the toolchain because the semantics of this
    package have not gone through the proposal process. By exposing this
    functionality, we risk locking in the existing semantics due to Hyrum's Law.
    
    If you believe you have a good use-case for weak references not already
    covered by the standard library, file a proposal issue at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:13:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part4_gradle_plugins.adoc

      <modelVersion>4.0.0</modelVersion>
      <groupId>com.gradle.tutorial</groupId>
      <artifactId>tutorial</artifactId>
      <version>1.0</version>
      <packaging>pom</packaging>
    </project>
    ----
    
    == Step 5. Exploring Plugins
    Plugins are used to extend build capability and customize Gradle.
    
    Using plugins is the **primary mechanism for organizing build logic**.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 11:29:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationType.java

     * As such, these objects should be designed for serialization to non Java formats (e.g. JSON).
     *
     * - Should be practically immutable
     * - Should only expose primitive(ish) JDK types, or other structured types only exposing JDK types
     * - Collection like structures should have deterministic order - either sorted, or meaningful
     * - Should expose either java.util.List or java.util.Map over specialised collection types
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/getting_started_eng.adoc

    <<part2_gradle_tasks#part2_begin,Part 2.>> Running Tasks +
    <<part3_gradle_dep_man#part3_begin,Part 3.>> Understanding Dependencies +
    <<part4_gradle_plugins#part4_begin,Part 4.>> Applying Plugins +
    <<part5_gradle_inc_builds#part5_begin,Part 5.>> Exploring Incremental Builds +
    <<part6_gradle_caching#part6_begin,Part 6.>> Enabling the Cache +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/ClasspathWalker.java

                // However, this property is mostly an accident of the way this classpath entry was produced.
                // Exposing it may put unnecessary burden on clients if, for example, they try to keep the compression method
                // while repackaging entries.
                return CompressionMethod.UNDEFINED;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. platforms/software/antlr/src/integTest/groovy/org/gradle/api/plugins/antlr/Antlr2PluginIntegrationTest.groovy

            failure.assertHasDescription("Execution failed for task ':grammar-builder:generateGrammarSource'.")
            failure.assertHasCause("There were errors during grammar generation")
            failure.assertHasCause("ANTLR Panic: Exiting due to errors.")
        }
    
        def "uses antlr v2 if no explicit dependency is set"() {
            buildFile.text = buildFile.text.replace("antlr '$antlrDependency'", "")
    
            goodGrammar()
            goodProgram()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheConfigurationBuildOperationIntegrationTest.groovy

            then:
            def config = result().remote.config
            config.url == safeUri.toString() + '/'
            config.authenticated == "true"
        }
    
        def "--offline wins over DSL configuration when exposing remote enabled configuration"() {
            given:
            httpBuildCacheServer.start()
            def url = "${httpBuildCacheServer.uri}/"
            settingsFile << """
                buildCache {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top