Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,240 for Supplied (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/JavaForkOptionsInternal.java

        /**
         * Sets extra JVM arguments to a Java process without checking debug configuration.
         */
        void setExtraJvmArgs(Iterable<?> jvmArgs);
    
    
        /**
         * Checks supplied JVM arguments with purpose to ignore debug configuration in favor of the supplied arguments.
         */
        void checkDebugConfiguration(Iterable<?> arguments);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 10 06:16:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/Jvm.java

         * This method is intended to be used for user supplied java homes.
         *
         * @param javaHome - location of your jdk or jre (jdk is safer), cannot be null
         * @return jvm for given java home
         * @throws org.gradle.internal.jvm.JavaHomeException when supplied javaHome does not seem to be a valid jdk or jre location
         * @throws IllegalArgumentException when supplied javaHome is not a valid folder
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:57:34 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. maven-settings-builder/src/main/java/org/apache/maven/settings/io/SettingsWriter.java

    import org.apache.maven.settings.Settings;
    
    /**
     * Handles serialization of settings into some kind of textual format like XML.
     *
     */
    public interface SettingsWriter {
    
        /**
         * Writes the supplied settings to the specified file. Any non-existing parent directories of the output file will
         * be created automatically.
         *
         * @param output The file to serialize the settings to, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/internal/typeconversion/NotationParser.java

     * instead.
     */
    public interface NotationParser<N, T> {
        /**
         * @throws UnsupportedNotationException When the supplied notation is not handled by this parser.
         * @throws TypeConversionException When the supplied notation cannot be converted to the target type.
         */
        T parseNotation(N notation) throws TypeConversionException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/specs/ExcludeSpec.java

    import org.gradle.internal.component.model.IvyArtifactName;
    
    public interface ExcludeSpec {
        /**
         * Determines if this exclude rule excludes the supplied module.
         */
        boolean excludes(ModuleIdentifier module);
    
        /**
         * Determines if this exclude rule excludes the supplied artifact, for the specified module.
         */
        boolean excludesArtifact(ModuleIdentifier module, IvyArtifactName artifactName);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultTransport.java

            if (relativeSource.isAbsolute()) {
                throw new IllegalArgumentException("Supplied URI is not relative");
            }
            URI source = baseURI.resolve(relativeSource);
            if (!source.toASCIIString().startsWith(baseURI.toASCIIString())) {
                throw new IllegalArgumentException("Supplied relative URI escapes baseUrl");
            }
            GetTask getTask = new GetTask(source);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/FilesFinder.java

    import java.io.FileFilter;
    
    /**
     * Encapsulates a criteria for finding files.
     */
    public interface FilesFinder {
        /**
         * Find files according to this finder's criteria within the supplied base
         * directory that pass the supplied {@link FileFilter}.
         */
        Iterable<File> find(File baseDir, FileFilter filter);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1002 bytes
    - Viewed (0)
  8. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileAccessTracker.java

     */
    
    package org.gradle.internal.file;
    
    import java.io.File;
    
    /**
     * Tracks access to files.
     */
    public interface FileAccessTracker {
        /**
         * Marks the supplied file as accessed.
         *
         * If the supplied file is unknown to this tracker, implementations must
         * simply ignore it instead of throwing an exception. However, depending
         * on the use case, implementations may throw an exception when marking a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/filesystem/modular_filesystem_registration.cc

            "operations on them have been supplied.");
    
      if ((ops->filesystem_ops->new_writable_file != nullptr ||
           ops->filesystem_ops->new_appendable_file != nullptr) &&
          ops->writable_file_ops == nullptr)
        return errors::FailedPrecondition(
            "Filesystem allows creation of writable files but no "
            "operations on them have been supplied.");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 07 22:08:43 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/SelectedArtifactSet.java

         */
        void visitArtifacts(ArtifactVisitor visitor, boolean continueOnSelectionFailure);
    
        /**
         * Visits the files of this set. Does not include any files that could not be selected. Failures to select or resolve artifacts are supplied to the visitor.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top