Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 928 for uploading (0.18 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_gradle_module_metadata.adoc

    [[sub:disabling-gmm-publication]]
    == Disabling Gradle Module Metadata publication
    
    There are situations where you might want to disable publication of Gradle Module Metadata:
    
    - the repository you are uploading to rejects the metadata file (unknown format)
    - you are using Maven or Ivy specific concepts which are not properly mapped to Gradle Module Metadata
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publisher/AbstractMavenPublisher.java

                publish(externalResource, content);
            }
    
            void publish(ExternalResourceName externalResource, File content) {
                if (!localRepo) {
                    LOGGER.info("Uploading {} to {}", externalResource.getShortDisplayName(), externalResource.getPath());
                }
                putResource(externalResource, new FileReadableContent(content));
                if (!localRepo) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 12:20:56 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishIssuesIntegTest.groovy

            shaOneFile.exists()
            shaOneFile.text == "00e14c6ef59816760e2c9b5a57157e8ac9de4012"
        }
    
        @Issue("GRADLE-2681")
        def "gradle ignores maven mirror configuration for uploading archives"() {
            given:
            m2.globalSettingsFile << """
    <settings>
      <mirrors>
        <mirror>
          <id>ACME</id>
          <name>ACME Central</name>
          <url>http://acme.maven.org/maven2</url>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/join/kubelet.go

    	if err := patchnodephase.AnnotateCRISocket(client, cfg.NodeRegistration.Name, cfg.NodeRegistration.CRISocket); err != nil {
    		return errors.Wrap(err, "error uploading crisocket")
    	}
    
    	return nil
    }
    
    // waitForTLSBootstrappedClient waits for the /etc/kubernetes/kubelet.conf file to be available
    func waitForTLSBootstrappedClient(timeout time.Duration) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

                    .build());
            options.addOption(Option.builder(NO_TRANSFER_PROGRESS)
                    .longOpt("no-transfer-progress")
                    .desc("Do not display transfer progress when downloading or uploading")
                    .build());
            options.addOption(Option.builder()
                    .longOpt(COLOR)
                    .hasArg()
                    .optionalArg(true)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    	if err := patchnodephase.AnnotateCRISocket(client, cfg.NodeRegistration.Name, cfg.NodeRegistration.CRISocket); err != nil {
    		errs = append(errs, errors.Wrap(err, "error uploading crisocket"))
    	}
    
    	// Create RBAC rules that makes the bootstrap tokens able to get nodes
    	if err := nodebootstraptoken.AllowBoostrapTokensToGetNodes(client); err != nil {
    		errs = append(errs, err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningPublicationsIntegrationSpec.groovy

            fails "signIvyPublication"
            failureDescriptionContains "Task 'signIvyPublication' not found"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/5099")
        def "disabling sign tasks skips uploading signature artifacts but does not break publishing"() {
            given:
            buildFile << """
                apply plugin: 'ivy-publish'
                apply plugin: 'maven-publish'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    This is useful when uploading to cache servers that routinely redirect or reject upload requests,
    as it avoids uploading the cache entry just to have it rejected (e.g. the cache entry is larger than the cache will allow) or redirected.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. cmd/server_test.go

    	newResponse = &InitiateMultipartUploadResponse{}
    
    	err = decoder.Decode(newResponse)
    	c.Assert(err, nil)
    	c.Assert(len(newResponse.UploadID) > 0, true)
    	// uploadID to be used for rest of the multipart operations on the object.
    	uploadID := newResponse.UploadID
    
    	// content for the part to be uploaded.
    	buffer1 := bytes.NewReader([]byte("hello world"))
    	// HTTP request for the part to be uploaded.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  10. docs/bucket/replication/README.md

    ### SSE-C Encryption
    
    MinIO does not support SSE-C encrypted objects on replicated buckets, any application uploading SSE-C encrypted objects will be rejected with an error on replicated buckets.
    
    #### Rationale
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 24 23:46:33 UTC 2023
    - 18.2K bytes
    - Viewed (0)
Back to top