Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,178 for completely (0.18 sec)

  1. platforms/documentation/docs/src/snippets/tasks/inputNormalizationMetaInf/groovy/build.gradle

            metaInf {
                ignoreManifest()
            }
        }
    }
    // end::ignore-metainf-manifest[]
    
    // tag::ignore-metainf-completely[]
    normalization {
        runtimeClasspath {
            metaInf {
                ignoreCompletely()
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 768 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tasks/inputNormalizationMetaInf/kotlin/build.gradle.kts

            metaInf {
                ignoreManifest()
            }
        }
    }
    // end::ignore-metainf-manifest[]
    
    // tag::ignore-metainf-completely[]
    normalization {
        runtimeClasspath {
            metaInf {
                ignoreCompletely()
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 763 bytes
    - Viewed (0)
  3. src/cmd/go/internal/robustio/robustio.go

    //
    // Errors are classified heuristically and retries are bounded, so the functions
    // in this package do not completely eliminate spurious errors. However, they do
    // significantly reduce the rate of failure in practice.
    //
    // If so, the error will likely wrap one of:
    // The functions in this package do not completely eliminate spurious errors,
    // but substantially reduce their rate of occurrence in practice.
    package robustio
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/profile/ProfileInjector.java

     *
     */
    public interface ProfileInjector {
    
        /**
         * Merges values from the specified profile into the given model. Implementations are expected to keep the profile
         * and model completely decoupled by injecting deep copies rather than the original objects from the profile.
         *
         * @param model The model into which to merge the values defined by the profile, must not be <code>null</code>.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 07 08:20:52 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ProfileInjector.java

     *
     */
    public interface ProfileInjector {
    
        /**
         * Merges values from the specified profile into the given model. Implementations are expected to keep the profile
         * and model completely decoupled by injecting deep copies rather than the original objects from the profile.
         *
         * @param model The model into which to merge the values defined by the profile, must not be <code>null</code>.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. platforms/jvm/language-jvm/src/testFixtures/groovy/org/gradle/api/tasks/compile/AbstractCachedCompileIntegrationTest.groovy

            withBuildCache().run compilationTask
            then:
            compileIsNotCached()
            remoteProjectDir.file(getCompiledFile()).exists()
    
            // Remove the project completely
            remoteProjectDir.deleteDir()
    
            when:
            // Move the dependencies around by using a new Gradle user home
            executer.requireOwnGradleUserHomeDir()
            withBuildCache().run compilationTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

              <description>
                Toolchain identification information, which will be matched against project requirements.
                &lt;p>Actual content structure is completely open: each toolchain type will define its own format and
                semantics.
                &lt;p>This is generally a properties format: {@code &lt;name&gt;value&lt;/name&gt;} with predefined
                properties names.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/AsyncStoppable.java

        /**
         * <p>Requests that this stoppable commence a graceful stop. Does not block. You should call {@link
         * Stoppable#stop} to wait for the stop process to complete.</p>
         *
         * <p>Generally, an {@code AsyncStoppable} should continue to complete existing work after this method has returned.
         * It should, however, stop accepting new work.</p>
         *
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_cache_disabled.txt

    # * go clean -modcache
    # * go env
    # * go fix
    # * go fmt
    # * go generate
    # * go get
    # * go list (without -export or -compiled)
    
    env GOCACHE=off
    
    # Commands that don't completely load packages should work.
    go doc fmt
    stdout Printf
    
    ! go tool compile -h
    stderr usage:
    
    go version
    stdout '^go version'
    
    
    # Module commands that don't load packages should work.
    go mod init m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 965 bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemOperations.java

         * For details see {@link ConfigurableFilePermissions#unix(String)}.
         * <p>
         * Doesn't have separate variants for files and directories, like other configuration methods,
         * because the Unix style permission input completely overwrites the default values, so
         * the distinction doesn't matter.
         *
         * @since 8.3
         */
        ConfigurableFilePermissions permissions(String unixNumericOrSymbolic);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top