Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for deploymentID (0.81 sec)

  1. cmd/generic-handlers.go

    	maxHeaderSize = 8 * 1024
    
    	// Maximum size for user-defined metadata - See: https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingMetadata.html
    	maxUserDataSize = 2 * 1024
    
    	// maxBuckets upto 500000 for any MinIO deployment.
    	maxBuckets = 500 * 1000
    )
    
    // ReservedMetadataPrefix is the prefix of a metadata key which
    // is reserved and for internal use only.
    const (
    	ReservedMetadataPrefix      = "X-Minio-Internal-"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

        }
    
        /**
         * Shortcut for <code>getService(ArtifactDeployer.class).deploy(...)</code>
         *
         * @throws ArtifactDeployerException if the artifacts deployment failed
         * @see ArtifactDeployer#deploy(Session, RemoteRepository, Collection)
         */
        @Override
        public void deployArtifact(RemoteRepository repository, Artifact... artifacts) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    // So far, this mirrors how out of clusters work (address set means to use existing IP, unset means to provision one),
    // and there has been growing consensus on this model for in cluster deployments.
    //
    // Currently, the supported options are:
    // * 1 Hostname value. This can be short Service name ingress, or FQDN ingress.ns.svc.cluster.local, example.com. If its a non-k8s FQDN it is a ServiceEntry.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/istio_ca.go

    	}, nil
    }
    
    // loadCACerts loads an existing `cacerts` Secret if the files aren't mounted locally.
    // By default, a cacerts Secret would be mounted during pod startup due to the
    // Istiod Deployment configuration. But with external Istiod, we want to be
    // able to load cacerts from a remote cluster instead.
    // TODO(costin): remove this method, it is not watching the files and the functionality is now available
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. docs/en/data/external_links.yml

    65/fastapi-docker-and-postgres-91943e71be92 title: Fastapi, Docker(Docker compose) and Postgres - author: Devon Ray author_link: https://devonray.com link: https://devonray.com/blog/deploying-a-fastapi-project-using-aws-lambda-aurora-cdk title: Deployment using Docker, Lambda, Aurora, CDK & GH Actions German: - author: Marcel Sander (actidoo) author_link: https://www.actidoo.com link: https://www.actidoo.com/de/blog/python-fastapi-domain-driven-design title: Domain-driven Design mit Python und FastAPI...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         *
         * @param repository the repository where to deploy artifacts
         * @param artifacts the artifacts to deploy
         * @throws org.apache.maven.api.services.ArtifactDeployerException if the artifacts deployment failed
         *
         * @see org.apache.maven.api.services.ArtifactDeployer#deploy(Session, RemoteRepository, Collection)
         */
        void deployArtifact(@Nonnull RemoteRepository repository, @Nonnull Artifact... artifacts);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  7. pkg/workloadapi/workload.pb.go

    	WorkloadType_JOB        WorkloadType = 3
    )
    
    // Enum value maps for WorkloadType.
    var (
    	WorkloadType_name = map[int32]string{
    		0: "DEPLOYMENT",
    		1: "CRONJOB",
    		2: "POD",
    		3: "JOB",
    	}
    	WorkloadType_value = map[string]int32{
    		"DEPLOYMENT": 0,
    		"CRONJOB":    1,
    		"POD":        2,
    		"JOB":        3,
    	}
    )
    
    func (x WorkloadType) Enum() *WorkloadType {
    	p := new(WorkloadType)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  8. cmd/object-multipart-handlers.go

    		dstRecords, err = globalDNSConfig.Get(dstBucket)
    		if err != nil {
    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    
    		// Send PutObject request to appropriate instance (in federated deployment)
    		core, rerr := getRemoteInstanceClient(r, getHostFromSrv(dstRecords))
    		if rerr != nil {
    			writeErrorResponse(ctx, w, toAPIError(ctx, rerr), r.URL)
    			return
    		}
    
    		popts := minio.PutObjectPartOptions{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  9. tests/integration/ambient/baseline_test.go

    			for _, p := range pods {
    				grace := p.Spec.TerminationGracePeriodSeconds
    				if grace != nil && *grace == want {
    					return true
    				}
    			}
    			return false
    		}
    		// check that waypoint deployment is unmodified
    		retry.UntilOrFail(t, func() bool {
    			return getGracePeriod(2)
    		})
    		// change the waypoint template
    		istio.GetOrFail(t, t).UpdateInjectionConfig(t, func(cfg *inject.Config) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  10. cmd/object-handlers.go

    }
    
    // Returns a minio-go Client configured to access remote host described by destDNSRecord
    // Applicable only in a federated deployment
    var getRemoteInstanceClient = func(r *http.Request, host string) (*miniogo.Core, error) {
    	cred := getReqAccessCred(r, globalSite.Region())
    	// In a federated deployment, all the instances share config files
    	// and hence expected to have same credentials.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top