Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,240 for Supplied (0.16 sec)

  1. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publisher/ValidatingMavenPublisherTest.groovy

            "group-mod" | "artifact"     | "version"     | "supplied groupId (group) does not match value from POM file (group-mod). Cannot edit groupId directly in the POM file."
            "group"     | "artifact-mod" | "version"     | "supplied artifactId (artifact) does not match value from POM file (artifact-mod). Cannot edit artifactId directly in the POM file."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/componentconfigs/configset_test.go

    	if err := FetchFromCluster(clusterCfg, client); err != nil {
    		t.Fatalf("FetchFromCluster failed: %v", err)
    	}
    
    	if len(clusterCfg.ComponentConfigs) != len(objects) {
    		t.Fatalf("mismatch between supplied and loaded type numbers:\n\tgot: %d\n\texpected: %d", len(clusterCfg.ComponentConfigs), len(objects))
    	}
    }
    
    func TestFetchFromDocumentMap(t *testing.T) {
    	test := dedent.Dedent(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 01 14:17:07 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/MetadataSource.java

                 BuildableModuleComponentMetaDataResolveResult<ModuleComponentResolveMetadata> result);
    
        /**
         * Use the supplied patterns and version lister to list available versions for the supplied dependency/module.
         *
         * This method would encapsulates all version listing for a metadata source, supplying the result (if found) to the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/Base64.java

    public class Base64 {
    
        private static final String ALPHABET =
                "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
    
        /**
         * Base-64 encodes the supplied block of data.  Line wrapping is not
         * applied on output.
         *
         * @param bytes The block of data that is to be Base-64 encoded.
         * @return A <code>String</code> containing the encoded data.
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/QueryableExecutionPlan.java

         */
        ScheduledNodes getScheduledNodes();
    
        /**
         * Returns the node for the supplied task that is part of this execution plan.
         *
         * @throws IllegalStateException When no node for the supplied task is part of this execution plan.
         */
        TaskNode getNode(Task task);
    
        /**
         * Returns the number of work items in the plan.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/PublicationInternal.java

        void whenPublishableArtifactRemoved(Action<? super T> action);
    
        /**
         * Add a derived artifact for the supplied original artifact.
         *
         * <p>Derived artifacts are not mandatory, i.e. when the supplied file does not exist when this
         * publication is about to be published, they will simply be omitted from the file transfer.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/componentconfigs/configset.go

    		if gvk.Group == h.GroupVersion.Group {
    			cfg := h.CreateEmpty()
    			if err := cfg.Unmarshal(docmap); err != nil {
    				return nil, err
    			}
    			// consider all successfully loaded configs from a document map as user supplied
    			cfg.SetUserSupplied(true)
    			return cfg, nil
    		}
    	}
    	return nil, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

         * <ul>
         *     <li>A {@link org.gradle.api.artifacts.PublishArtifact} instance. Name, type, extension and classifier values are taken from the supplied instance.</li>
         *     <li>An {@link org.gradle.api.tasks.bundling.AbstractArchiveTask} instance. Name, type, extension and classifier values are taken from the supplied instance.</li>
         *     <li>Anything that can be resolved to a {@link java.io.File} via the {@link org.gradle.api.Project#file(Object)} method.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/ObjectBasedValueSource.java

    import org.apache.maven.model.interpolation.reflection.ReflectionValueExtractor;
    import org.codehaus.plexus.interpolation.AbstractValueSource;
    
    /**
     * Wraps an object, providing reflective access to the object graph of which the
     * supplied object is the root. Expressions like 'child.name' will translate into
     * 'rootObject.getChild().getName()' for non-boolean properties, and
     * 'rootObject.getChild().isName()' for boolean properties.
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentOverrideMetadata.java

    import javax.annotation.Nullable;
    
    /**
     * Metadata about a component that will override the information obtained when resolving, typically specified by a dependency descriptor.
     * Metadata supplied in this way is applied inconsistently, because multiple dependencies can point to the same component with different
     * override metadata, and only one of these overrides will be used during dependency resolution.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top