Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 364 for isDependent (0.27 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1beta1/types.go

    // IMPORTANT: PartialObjectMetadataList has different protobuf field ids in v1beta1 than
    // v1 because ListMeta was accidentally omitted prior to 1.15. Therefore this type must
    // remain independent of v1.PartialObjectMetadataList to preserve mappings.
    
    // PartialObjectMetadataList contains a list of objects containing only their metadata.
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 29 00:35:16 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_use_cases.adoc

    When multiple developers work on the same project, they don't just need to build their own changes: whenever they pull from version control, they end up having to build each other's changes as well.
    Whenever a developer is working on something independent of the pulled changes, they can safely reuse outputs already generated on CI.
    Say, you're working on module "A", and you pull in some changes to module "B" (which does not depend on your module).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolvedDependency.java

         */
        Set<ResolvedDependency> getParents();
    
        /**
         * Returns the module artifacts belonging to this ResolvedDependency. A module artifact is an artifact that belongs
         * to a ResolvedDependency independent of a particular parent. Returns never null. 
         */
        Set<ResolvedArtifact> getModuleArtifacts();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 3.3K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/MinimalIterable.java

     * <ul>
     *   <li>returning the same iterator again
     *   <li>throwing an exception of some kind
     *   <li>or the usual, <i>robust</i> behavior, which all known {@link Collection} implementations
     *       have, of returning a new, independent iterator
     * </ul>
     *
     * <p>Because of this situation, any public method accepting an iterable should invoke the {@code
     * iterator} method only once, and should be tested using this class. Exceptions to this rule should
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/plugins/jvm/internal/JvmEcosystemAttributesDetails.java

        /**
         * Provides or requires a runtime
         */
        JvmEcosystemAttributesDetails runtimeUsage();
    
        /**
         * Provides or requires a component which dependencies are found
         * as independent components (typically through external dependencies)
         */
        JvmEcosystemAttributesDetails withExternalDependencies();
    
        /**
         * Provides or requires a component which dependencies are bundled as part
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/task_basics.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[task_basics]]
    = Task Basics
    
    A task represents some *independent unit of work* that a build performs, such as compiling classes, creating a JAR, generating Javadoc, or publishing archives to a repository.
    
    image::gradle-basic-5.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:34:59 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/MinimalIterable.java

     * <ul>
     *   <li>returning the same iterator again
     *   <li>throwing an exception of some kind
     *   <li>or the usual, <i>robust</i> behavior, which all known {@link Collection} implementations
     *       have, of returning a new, independent iterator
     * </ul>
     *
     * <p>Because of this situation, any public method accepting an iterable should invoke the {@code
     * iterator} method only once, and should be tested using this class. Exceptions to this rule should
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/cover_coverprofile_multipkg.txt

    # Testcase for #63356. In this bug we're doing a "go test -coverprofile"
    # run for a collection of packages, mostly independent (hence tests can
    # be done in parallel) and in the original bug, temp coverage profile
    # files were not being properly qualified and were colliding, resulting
    # in a corrupted final profile. Actual content of the packages doesn't
    # especially matter as long as we have a mix of packages with tests and
    # multiple packages without tests.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 17:02:36 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformEcosystemIntegrationTest.groovy

         * should be sufficient to cover this case, which seems to apply to any configurations that has a project dependency constraint
         * and is independent of the involvement of the Java Platform plugin.  But I'll leave this test here just in case for now.
         *
         * Once the deprecation becomes an error, this test should be removed.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformExecutionResult.java

     * There are two kinds of outputs for a transform:
     * - Produced outputs in the workspace. Those are relative paths depending on the workspace root, independent of the input artifact.
     * - Selected parts of the input artifact. These are relative paths of locations selected in the input artifact, independent of the workspace directory.
     *
     * The workspace can be relocated for immutable transform executions, and the input artifact can change.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:31 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top