Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 650 for necessarily (0.12 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ComponentResult.java

     *
     * @since 2.0
     */
    public interface ComponentResult {
        /**
         * <p>Returns the identifier of this component. This can be used to uniquely identify the component within the current build, but it is not necessarily unique between
         * different builds.
         *
         * <p>The return type is declared as an opaque {@link ComponentIdentifier}, however the identifier may also implement one of the following interfaces:</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Oct 28 14:22:52 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ResolvedDependencyResult.java

    /**
     * A dependency that was resolved successfully.
     */
    @UsedByScanPlugin
    public interface ResolvedDependencyResult extends DependencyResult {
        /**
         * Returns the selected component. This may not necessarily be the same as the requested component. For example, a dynamic version
         * may have been requested, or the version may have been substituted due to conflict resolution, or by being forced, or for some other reason.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/TaskNameResolver.java

                    return true;
                }
            }
    
            return false;
        }
    
        /**
         * Finds tasks that will have exactly the given name, without necessarily creating or configuring the tasks. Returns null if no such match found.
         */
        @Nullable
        public TaskSelectionResult selectWithName(final String taskName, final ProjectInternal project, boolean includeSubProjects) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/BuildLauncher.java

        BuildLauncher forTasks(String... tasks);
    
        /**
         * Sets the tasks to be executed. If no tasks are specified, the project's default tasks are executed.
         *
         * <p>Note that the supplied tasks do not necessarily need to belong to the project which this launcher was created for.
         *
         * @param tasks The tasks to be executed.
         * @return this
         * @since 1.0-milestone-3
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/PATENTS

    implementation of Go, where such license applies only to those patent
    claims, both currently owned or controlled by Google and acquired in
    the future, licensable by Google that are necessarily infringed by this
    implementation of Go.  This grant does not include claims that would be
    infringed only as a consequence of further modification of this
    implementation.  If you or your agent or exclusive licensee institute or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 19:01:58 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/PATENTS

    implementation of Go, where such license applies only to those patent
    claims, both currently owned or controlled by Google and acquired in
    the future, licensable by Google that are necessarily infringed by this
    implementation of Go.  This grant does not include claims that would be
    infringed only as a consequence of further modification of this
    implementation.  If you or your agent or exclusive licensee institute or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 21:40:49 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/sys/PATENTS

    implementation of Go, where such license applies only to those patent
    claims, both currently owned or controlled by Google and acquired in
    the future, licensable by Google that are necessarily infringed by this
    implementation of Go.  This grant does not include claims that would be
    infringed only as a consequence of further modification of this
    implementation.  If you or your agent or exclusive licensee institute or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  8. src/net/sock_cloexec_solaris.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements sysSocket for platforms that provide a fast path for
    // setting SetNonblock and CloseOnExec, but don't necessarily support it.
    // Support for SOCK_* flags as part of the type parameter was added to Oracle
    // Solaris in the 11.4 release. Thus, on releases prior to 11.4, we fall back
    // to the combination of socket(3c) and fcntl(2).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. src/internal/poll/sock_cloexec_solaris.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.
    // The accept4(3c) function was added to Oracle Solaris in the Solaris 11.4.0
    // release. Thus, on releases prior to 11.4, we fall back to the combination
    // of accept(3c) and fcntl(2).
    
    package poll
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/tooling/provider/model/internal/BuildScopeModelBuilder.java

    package org.gradle.tooling.provider.model.internal;
    
    import org.gradle.internal.build.BuildState;
    
    public interface BuildScopeModelBuilder {
        /**
         * Creates the model for the given target. The target build will not necessarily have been configured.
         * This method is responsible for transitioning the target into the appropriate state required to create the model.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 14 21:39:26 UTC 2021
    - 1.3K bytes
    - Viewed (0)
Back to top