Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 650 for necessarily (0.19 sec)

  1. 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)
  2. tensorflow/c/experimental/saved_model/core/tensor_spec.h

    // TensorSpecProto. From edloper@, "Names should really be associated with
    // parameters, not the tensors inside those parameters. This would be
    // inconsistent with the corresponding Python class, but I don't think that's
    // necessarily a problem. If it turns out later that we really need a name
    // attribute here, we can always add it back in; but let's see how far we can
    // get without it."
    class TensorSpec {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 29 23:11:59 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  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. 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)
  9. 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)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CompilationDetails.java

     *
     * @since 4.10
     */
    public interface CompilationDetails {
        /**
         * Returns the details of the compilation task for this binary. This is the task that should be run to produce the object files, but may not necessarily be the task that compiles the source files. For example, the task may perform some post processing of the object files.
         */
        Task getCompileTask();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top