Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 114 for publishEar (0.12 sec)

  1. pkg/volume/csi/csi_block.go

    	publishDir := filepath.Dir(publishPath)
    	if err := os.MkdirAll(publishDir, 0750); err != nil {
    		return "", errors.New(log("blockMapper.publishVolumeForBlock failed to create dir %s:  %v", publishDir, err))
    	}
    	klog.V(4).Info(log("blockMapper.publishVolumeForBlock created directory for publishPath successfully [%s]", publishDir))
    
    	// Request to publish a block volume to publishPath.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/certificates.go

    		}
    	} else {
    		rootCA = controllerContext.ClientBuilder.ConfigOrDie("root-ca-cert-publisher").CAData
    	}
    
    	sac, err := rootcacertpublisher.NewPublisher(
    		controllerContext.InformerFactory.Core().V1().ConfigMaps(),
    		controllerContext.InformerFactory.Core().V1().Namespaces(),
    		controllerContext.ClientBuilder.ClientOrDie("root-ca-cert-publisher"),
    		rootCA,
    	)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/tasks/AbstractPublishToMaven.java

    import org.gradle.api.publish.maven.MavenPublication;
    import org.gradle.api.publish.maven.internal.publication.MavenPublicationInternal;
    import org.gradle.api.publish.maven.internal.publisher.MavenDuplicatePublicationTracker;
    import org.gradle.api.publish.maven.internal.publisher.MavenPublishers;
    import org.gradle.api.tasks.Internal;
    import org.gradle.api.tasks.PathSensitivity;
    import org.gradle.internal.serialization.Transient;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publisher/IvyPublisher.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.publish.ivy.internal.publisher;
    
    import org.gradle.api.artifacts.repositories.IvyArtifactRepository;
    
    /**
     * Used by the `ivy-publish` plugin to publish Ivy modules.
     */
    public interface IvyPublisher {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 934 bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/AuthenticatedPluginRepositorySpec.groovy

            pluginBuilder.addPluginWithPrintlnTask(taskName, message, "org.example.plugin")
    
            if (repoType == IVY) {
                return pluginBuilder.publishAs("org.example.plugin:plugin:1.0", ivyHttpRepo, executer)
            } else if (repoType == MAVEN) {
                return pluginBuilder.publishAs("org.example.plugin:plugin:1.0", mavenHttpRepo, executer)
            }
            return null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/MavenPublishServices.java

    import org.gradle.api.publish.maven.internal.dependencies.VersionRangeMapper;
    import org.gradle.api.publish.maven.internal.publisher.MavenDuplicatePublicationTracker;
    import org.gradle.api.publish.maven.internal.publisher.MavenPublishers;
    import org.gradle.internal.service.Provides;
    import org.gradle.internal.service.ServiceRegistration;
    import org.gradle.internal.service.ServiceRegistrationProvider;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsPluginIntegrationSpec.groovy

            given:
            def pluginBuilder = new PluginBuilder(file("plugin"))
            def message = "hello from settings plugin"
            pluginBuilder.addSettingsPlugin("println '$message'")
            pluginBuilder.publishAs("g", "a", "1.0", pluginPortal, createExecuter()).allowAll()
    
            when:
            relocatedSettingsFile.text = """
                plugins {
                    id "test-settings-plugin" version "1.0"
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. samples/bookinfo/swagger.yaml

        description: "Detailed information about a product"
        properties:
          id:
            type: "integer"
            format: "int32"
            description: "Product id"
          publisher:
            type: "string"
            description: "Publisher of the book"
          language:
            type: "string"
            description: "Language of the book"
          author:
            type: "string"
            description: "Author of the book"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 17:00:23 UTC 2017
    - 6.2K bytes
    - Viewed (0)
  9. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publisher/MavenPublicationCoordinates.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.publish.maven.internal.publisher;
    
    import org.gradle.api.provider.Property;
    
    public interface MavenPublicationCoordinates {
    
        Property<String> getGroupId();
    
        Property<String> getArtifactId();
    
        Property<String> getVersion();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 878 bytes
    - Viewed (0)
  10. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publisher/MavenPublishers.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.publish.maven.internal.publisher;
    
    import org.gradle.api.internal.artifacts.mvnsettings.LocalMavenRepositoryLocator;
    import org.gradle.api.internal.artifacts.repositories.transport.RepositoryTransportFactory;
    import org.gradle.internal.Factory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top