Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,914 for based (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsProblemCollector.java

         * @param severity The severity of the problem, must not be {@code null}.
         * @param message The detail message of the problem, may be {@code null}.
         * @param line The one-based index of the line containing the problem or {@code -1} if unknown.
         * @param column The one-based index of the column containing the problem or {@code -1} if unknown.
         * @param cause The cause of the problem, may be {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParserException.java

    import org.apache.maven.api.services.MavenException;
    
    @Experimental
    public class ModelParserException extends MavenException {
    
        /**
         * The one-based index of the line containing the error.
         */
        private final int lineNumber;
    
        /**
         * The one-based index of the column containing the error.
         */
        private final int columnNumber;
    
        public ModelParserException() {
            this(null, null);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 07:25:10 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/doc/c4/C4_2_Container.puml

    @startuml
    !include lib/C4_Container.puml
    
    LAYOUT_TOP_DOWN
    
    title Container diagram for the Gradle Kotlin DSL
    
    Person(dev, "Developer", "Developer using a Kotlin DSL based Gradle build")
    
    System_Boundary(gradleBuildTool, "Gradle") {
    
        System_Ext(gradle, "Gradle Build Tool", "The Gradle Build Tool")
    
        System_Boundary(gradleKotlinDsl, "Gradle Kotlin DSL") {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top