Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for publishEar (0.17 sec)

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

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.publish.maven.internal.publisher
    
    import org.codehaus.plexus.util.xml.pull.XmlPullParserException
    import org.gradle.api.Action
    import org.gradle.api.XmlProvider
    import org.gradle.api.internal.artifacts.repositories.DefaultMavenArtifactRepository
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/CatalogPluginsKotlinDSLIntegrationTest.groovy

                .publishAs("some", "artifact", pluginVersion, pluginPortal, executer)
                .allowAll()
            String secondPluginId = 'com.acme.greeter2'
            new PluginBuilder(file("greeter-second"))
                .addPluginWithPrintlnTask('greet2', 'Hello from second plugin!', secondPluginId, "SecondPlugin")
                .publishAs("some", "artifact2", pluginVersion, pluginPortal, executer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisherTest.groovy

     * 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.Action
    import org.gradle.api.XmlProvider
    import org.gradle.api.artifacts.repositories.IvyArtifactRepository
    import org.gradle.api.internal.artifacts.DefaultImmutableModuleIdentifierFactory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 15K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/tasks/PublishToIvyRepository.java

    import org.gradle.api.publish.ivy.internal.publication.IvyPublicationInternal;
    import org.gradle.api.publish.ivy.internal.publisher.IvyDuplicatePublicationTracker;
    import org.gradle.api.publish.ivy.internal.publisher.IvyNormalizedPublication;
    import org.gradle.api.publish.ivy.internal.publisher.IvyPublisher;
    import org.gradle.api.tasks.Internal;
    import org.gradle.api.tasks.Nested;
    import org.gradle.api.tasks.Optional;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-role-bindings.yaml

        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: system:controller:root-ca-cert-publisher
      roleRef:
        apiGroup: rbac.authorization.k8s.io
        kind: ClusterRole
        name: system:controller:root-ca-cert-publisher
      subjects:
      - kind: ServiceAccount
        name: root-ca-cert-publisher
        namespace: kube-system
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRoleBinding
      metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingWithPluginManagementSpec.groovy

            if (repository instanceof MavenRepository) {
                pluginBuilder.publishAs("org.example.plugin:plugin:1.0", repository, executer)
            } else if (repository instanceof IvyRepository) {
                pluginBuilder.publishAs("org.example.plugin:plugin:1.0", repository, executer)
            }
        }
    
        private void useCustomRepository(String resolutionStrategy = "") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/UsingLockingOnNonProjectConfigurationsIntegrationTest.groovy

        def "can use plugins block with plugin management block"() {
            given:
            def message = "hello from settings plugin"
            pluginBuilder.addSettingsPlugin("println '$message'")
            pluginBuilder.publishAs("org", "settings-plugin", "1.0", pluginRepo, createExecuter()).allowAll()
    
            and:
            settingsFile.text = """
                pluginManagement {
                    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeDeclarationIntegrationTest.groovy

        }
    
        def 'can declare and configure a custom software type from published plugin'() {
            given:
            def pluginBuilder = withSoftwareTypePlugins()
            pluginBuilder.publishAs("com", "example", "1.0", pluginPortal, createExecuter()).allowAll()
    
            file("settings.gradle.dcl") << """
                plugins {
                    id("com.example.test-software-type").version("1.0")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 19 16:59:01 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top