Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 589 for Concept (0.2 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    When a task has been previously executed, and the only changes since that execution are to incremental input file properties, Gradle can intelligently determine which input files need to be processed, a concept known as incremental execution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. pkg/controller/namespace/deletion/namespaced_resources_deleter.go

    // retryOnConflictError retries the specified fn if there was a conflict error
    // it will return an error if the UID for an object changes across retry operations.
    // TODO RetryOnConflict should be a generic concept in client code
    func (d *namespacedResourcesDeleter) retryOnConflictError(ctx context.Context, namespace *v1.Namespace, fn updateNamespaceFunc) (result *v1.Namespace, err error) {
    	latestNamespace := namespace
    	for {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    [[sec:java_source_sets]]
    == Declaring your source files via source sets
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  4. doap_Maven.rdf

    http://www.apache.org/licenses/LICENSE-2.0.txt Apache Maven https://maven.apache.org/ https://maven.apache.org/ Maven is a project development management and comprehension tool. Maven is a project development management and comprehension tool. Based on the concept of a project object model: builds, dependency management, documentation creation, site publication, and distribution publication are all controlled from the declarative file. Maven can be extended by plugins to utilise a number of other development...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 01 11:47:44 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

            }
    
            override fun artifacts(configureAction: Action<in ArtifactHandler>) {
                onAccess("artifacts")
                delegate.artifacts(configureAction)
            }
    
            @Deprecated("The concept of conventions is deprecated. Use extensions instead.")
            override fun getConvention(): @Suppress("deprecation") org.gradle.api.plugins.Convention {
                onAccess("convention")
                @Suppress("deprecation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    ====
    
    
    [[sec:java_library_separation]]
    == API and implementation separation
    
    The key difference between the standard Java plugin and the Java Library plugin is that the latter introduces the concept of an _API_ exposed to consumers. A library is a Java component meant to be consumed by other components. It's a very common use case in multi-project builds, but also as soon as you have external dependencies.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    Out of these versions, it will select the _highest_ one. More information on version ordering
    <<single_versions#version_ordering,here>>.
    
    As you have seen, Gradle supports a concept of <<rich_versions.adoc#rich-version-constraints,rich version declaration>>, so what is the highest version depends on the way versions were declared:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    	gvk, ok := target.KindForGroupVersionKinds(kinds)
    	if !ok {
    		// try to see if this type is listed as unversioned (for legacy support)
    		// TODO: when we move to server API versions, we should completely remove the unversioned concept
    		if unversionedKind, ok := s.unversionedTypes[t]; ok {
    			if gvk, ok := target.KindForGroupVersionKinds([]schema.GroupVersionKind{unversionedKind}); ok {
    				return copyAndSetTargetKind(copy, in, gvk)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Sets.java

       *
       * <p>The returned set and its constituent sets use {@code equals} to decide whether two elements
       * are identical, even if the input set uses a different concept of equivalence.
       *
       * <p><i>Performance notes:</i> while the power set of a set with size {@code n} is of size {@code
       * 2^n}, its memory usage is only {@code O(n)}. When the power set is constructed, the input set
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    [[sec:dependency-bundles]]
    ==== Dependency bundles
    
    Because it's frequent that some dependencies are systematically used together in different projects, a version catalog offers the concept of a "dependency bundle".
    A bundle is basically an alias for several dependencies.
    For example, instead of declaring 3 individual dependencies like above, you could write:
    
    .Using a dependency bundle
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top