Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 148 for deploymentID (0.22 sec)

  1. docs/ru/docs/async.md

    отличным вариантом (среди многих других) для разработки веб-API и приложений
    в области дата-сайенс / машинного обучения.
    
    Как добиться такого параллелизма в эксплуатации описано в разделе [Развёртывание](deployment/index.md){.internal-link target=_blank}.
    
    ## `async` и `await`
    
    В современных версиях Python разработка асинхронного кода реализована очень интуитивно.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 39.9K bytes
    - Viewed (0)
  2. 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)
  3. cluster/log-dump/log-dump.sh

    set -o nounset
    set -o pipefail
    
    readonly report_dir="${1:-_artifacts}"
    readonly gcs_artifacts_dir="${2:-}"
    readonly logexporter_namespace="${3:-logexporter}"
    
    # In order to more trivially extend log-dump for custom deployments,
    # check for a function named log_dump_custom_get_instances. If it's
    # defined, we assume the function can me called with one argument, the
    # role, which is either "master" or "node".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. pkg/kube/inject/inject.go

    	case *corev1.Pod:
    		pod := v
    		metadata = &pod.ObjectMeta
    		// sync from webhook inject
    		deploymentMetadata, typeMeta = kube.GetDeployMetaFromPod(pod)
    		podSpec = &pod.Spec
    	case *appsv1.Deployment: // Added to be explicit about the most expected case
    		deploy := v
    		typeMeta = deploy.TypeMeta
    		deploymentMetadata = config.NamespacedName(deploy)
    		metadata = &deploy.Spec.Template.ObjectMeta
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/constants/constants.go

    	// CoreDNSConfigMap specifies in what ConfigMap in the kube-system namespace the CoreDNS config should be stored
    	CoreDNSConfigMap = "coredns"
    
    	// CoreDNSDeploymentName specifies the name of the Deployment for CoreDNS add-on
    	CoreDNSDeploymentName = "coredns"
    
    	// CoreDNSImageName specifies the name of the image for CoreDNS add-on
    	CoreDNSImageName = "coredns"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  6. docs/es/docs/async.md

    Para ver cómo lograr este paralelismo en producción, consulta la sección sobre [Despliegue](deployment/index.md){.internal-link target=_blank}.
    
    ## `async` y `await`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/types.go

    	// +optional
    	ExtraEnvs []EnvVar
    }
    
    // APIServer holds settings necessary for API server deployments in the cluster
    type APIServer struct {
    	ControlPlaneComponent
    
    	// CertSANs sets extra Subject Alternative Names for the API Server signing cert.
    	CertSANs []string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  8. src/crypto/x509/verify.go

    			}
    			if 'A' <= c && c <= 'Z' {
    				continue
    			}
    			if c == '-' && j != 0 {
    				continue
    			}
    			if c == '_' {
    				// Not a valid character in hostnames, but commonly
    				// found in deployments outside the WebPKI.
    				continue
    			}
    			return false
    		}
    	}
    
    	return true
    }
    
    func matchExactly(hostA, hostB string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. 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)
  10. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// +optional
    	ExtraEnvs []EnvVar `json:"extraEnvs,omitempty"`
    }
    
    // APIServer holds settings necessary for API server deployments in the cluster
    type APIServer struct {
    	ControlPlaneComponent `json:",inline"`
    
    	// CertSANs sets extra Subject Alternative Names for the API Server signing cert.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top