Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,047 for based (0.12 sec)

  1. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/JavaToolchainRepositoryHandler.java

    import java.util.List;
    
    /**
     * {@link org.gradle.api.NamedDomainObjectList} based handler for configuring an
     * ordered collection of <code>JavaToolchainRepository</code> implementations.
     *
     * @since 7.6
     */
    @Incubating
    public interface JavaToolchainRepositoryHandler {
    
        /**
         * Utility method for creating a named {@link JavaToolchainRepository} based on
         * a configuration block.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParallelBuildOperationsIntegrationTest.groovy

                """
            }
    
            withMultipleActionTaskTypeInBuildScript()
        }
    
        def "worker-based task completes as soon as work items are finished (while another task is executing in parallel)"() {
            when:
            createDirs("childProject")
            settingsFile << """
                include ':childProject'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/ir/QuantizeUtils.cc

                                     quantizedElementType, converter);
      if (!quantDenseAttr) {
        return nullptr;
      }
    
      // Cast from an expressed-type-based type to storage-type-based type,
      // preserving the sparse shape (i.e. tensor<4xf32> -> tensor<4xi8>).
      ShapedType newSparseType = mlir::dyn_cast_or_null<ShapedType>(
          quantizedElementType.castExpressedToStorageType(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/filelock/LockState.java

        @Override
        boolean isInInitialState();
    
        /**
         * Called after an update is complete, returns a new clean state based on this state.
         */
        LockState completeUpdate();
    
        /**
         * Called before an update is complete, returns a new dirty state based on this state.
         */
        LockState beforeUpdate();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/ContentFilterable.java

        /**
         * Adds a content filter based on the provided closure.  The Closure will be called with each line (stripped of line
         * endings) and should return a String to replace the line or {@code null} to remove the line.  If every line is
         * removed, the result will be an empty file, not an absent one.
         *
         * @param closure to implement line based filtering
         * @return this
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  6. docs/en/docs/how-to/graphql.md

    # GraphQL
    
    As **FastAPI** is based on the **ASGI** standard, it's very easy to integrate any **GraphQL** library also compatible with ASGI.
    
    You can combine normal FastAPI *path operations* with GraphQL on the same application.
    
    !!! tip
        **GraphQL** solves some very specific use cases.
    
        It has **advantages** and **disadvantages** when compared to common **web APIs**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_test_passes.td

      let summary = "Add remarks based on resource alias analysis result, for "
        "testing purpose.";
      let constructor = "::mlir::tf_test::CreateTestResourceAliasAnalysisPass()";
    }
    
    def TestClusteringPolicyPass : Pass<"tf-test-clustering-policy", "mlir::func::FuncOp"> {
      let summary = "Test pass for clustering based on the user defined policy";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 00:21:29 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubstitutorProvider.kt

        /**
         * Creates a [KaSubstitutor] based on the inheritance relationship between [subClass] and [superClass].
         *
         * The semantic of resulted [KaSubstitutor] is the substitutor that should be applied to a member of [superClass],
         * so it can be called on an instance of [subClass].
         *
         * Basically, it's a composition of inheritance-based substitutions for all the inheritance chain.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/MojoExecutionConfigurator.java

    import org.apache.maven.plugin.MojoExecution;
    import org.apache.maven.project.MavenProject;
    
    /**
     * <p>
     * A MojoExecutionConfigurator is responsible for creating the configuration for Mojo based on configuration for a Mojo
     * in the MavenProject and the default configuration for the Mojo from the containing plugin's plugin.xml descriptor.
     * </p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/cli/src/test/groovy/org/gradle/cli/AbstractPropertiesCommandLineConverterTest.groovy

            protected String getPropertyOptionDescription() {
                return "Test Description of a test property based option"
            }
        }
    
        def convert(String... args) {
            converter.convert(Arrays.asList(args), new HashMap<String, String>()).sort()
        }
    
        def "configures property based options"() {
            def parser = Mock(CommandLineParser);
            def option = Mock(CommandLineOption);
            setup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:00:57 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top