Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,711 for completely (0.17 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. docs/en/docs/tutorial/static-files.md

    ### What is "Mounting"
    
    "Mounting" means adding a complete "independent" application in a specific path, that then takes care of handling all the sub-paths.
    
    This is different from using an `APIRouter` as a mounted application is completely independent. The OpenAPI and docs from your main application won't include anything from the mounted application, etc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 19:56:09 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. src/net/error_windows_test.go

    )
    
    func isPlatformError(err error) bool {
    	_, ok := err.(syscall.Errno)
    	return ok
    }
    
    func isENOBUFS(err error) bool {
    	// syscall.ENOBUFS is a completely made-up value on Windows: we don't expect
    	// a real system call to ever actually return it. However, since it is already
    	// defined in the syscall package we may as well check for it.
    	return errors.Is(err, syscall.ENOBUFS)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:59:22 UTC 2023
    - 757 bytes
    - Viewed (0)
Back to top