Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,559 for necessarily (0.34 sec)

  1. docs/en/docs/advanced/index.md

    In the next sections you will see other options, configurations, and additional features.
    
    !!! tip
        The next sections are **not necessarily "advanced"**.
    
        And it's possible that for your use case, the solution is in one of them.
    
    ## Read the Tutorial first
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/jvm/toolchain/internal/operations/JavaToolchainUsageProgressDetails.java

            String getJavaVersion();
    
            /**
             * Returns the display name of the toolchain vendor such as {@code Eclipse Temurin}.
             * <p>
             * The value could be normalized for uniformity, and does not necessarily correspond to a system property value.
             */
            String getJavaVendor();
    
            /**
             * Returns Java runtime name such as {@code OpenJDK Runtime Environment}.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/PropertyValue.java

         */
        TaskDependencyContainer getTaskDependencies();
    
        /**
         * Finalizes the property value, if possible. This makes the value final, so that it no longer changes, but not necessarily immutable.
         */
        void maybeFinalizeValue();
    
        PropertyValue ABSENT = new PropertyValue() {
            @Nullable
            @Override
            public Object call() {
                return null;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ArtifactVariantSelector.java

    import org.gradle.internal.component.ResolutionFailureHandler;
    import org.gradle.internal.component.model.GraphVariantSelector;
    
    /**
     * Selects artifacts from a set of resolved variants. This can but does not necessarily require an additional
     * round of attribute matching to select a variant containing artifacts.
     *
     * This class is intentionally named similarly to {@link GraphVariantSelector}, as it has a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 00:51:35 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. platforms/software/resources/src/main/java/org/gradle/internal/resource/ExternalResourceReadResult.java

         * Or, it might be transfer encoded (e.g. HTTP chunked transfer, more bytes transferred).
         * Or, both.
         * Therefore, it is not necessarily an accurate input into transfer rate (a.k.a. throughput) calculations.
         * <p>
         * Moreover, it represents the content bytes <b>read</b>, not transferred.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/project/IsolatedProject.java

     *
     * @since 8.8
     */
    @Incubating
    public interface IsolatedProject {
    
        /**
         * <p>Returns the name of this project. The project's name is not necessarily unique within a project hierarchy. You
         * should use the {@link #getPath()} method for a unique identifier for the project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 18:34:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpEarAndWebAndEjbProjectIntegrationTest.groovy

            testImplementation "junit:junit:4.13"
        }
    }
    """
    
            when:
            run "eclipse"
    
            then:
            // This test covers actual behaviour, not necessarily desired behaviour
    
            // Builders and natures
            def javaProject = project('java')
            def webProject = project('web')
            def earProject = project('ear')
    
            // Classpath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. src/internal/poll/sock_cloexec_accept.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements accept for platforms that provide a fast path for
    // setting SetNonblock and CloseOnExec, but don't necessarily have accept4.
    // This is the code we used for accept in Go 1.17 and earlier.
    // On Linux the accept4 system call was introduced in 2.6.28 kernel,
    // and our minimum requirement is 2.6.32, so we simplified the function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 16 03:40:42 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ArtifactVisitor.java

            return FileCollectionStructureVisitor.VisitType.Visit;
        }
    
        /**
         * Visits an artifact. Artifacts are resolved but not necessarily available unless {@link #requireArtifactFiles()} returns true.
         *
         * <p>Note that a given artifact may be visited multiple times. The implementation is required to filter out duplicates.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/Task.java

         * @since 8.2
         */
        @Incubating
        String getBuildTreePath();
    
        /**
         * Returns the name of this task. Note that the name is not necessarily a unique identifier for the task.
         *
         * @return The name of this task.
         * @since 1.0-milestone-3
         */
        String getName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top