Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 148 for deploymentID (0.26 sec)

  1. pkg/workloadapi/workload.proto

    }
    
    enum WorkloadStatus {
      // Workload is healthy and ready to serve traffic.
      HEALTHY = 0;
      // Workload is unhealthy and NOT ready to serve traffic.
      UNHEALTHY = 1;
    }
    
    enum WorkloadType {
      DEPLOYMENT = 0;
      CRONJOB = 1;
      POD = 2;
      JOB = 3;
    }
    
    // PorList represents the ports for a service
    message PortList {
      repeated Port ports = 1;
    }
    
    message Port {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. cmd/object-api-interface.go

    	Shutdown(context.Context) error
    	NSScanner(ctx context.Context, updates chan<- DataUsageInfo, wantCycle uint32, scanMode madmin.HealScanMode) error
    	BackendInfo() madmin.BackendInfo
    	Legacy() bool // Only returns true for deployments which use CRCMOD as its object distribution algorithm.
    	StorageInfo(ctx context.Context, metrics bool) StorageInfo
    	LocalStorageInfo(ctx context.Context, metrics bool) StorageInfo
    
    	// Bucket operations.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 20:27:52 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    			})
    		}
    	}
    	return res
    }
    
    func workloadNameAndType(pod *v1.Pod) (string, workloadapi.WorkloadType) {
    	objMeta, typeMeta := kubeutil.GetDeployMetaFromPod(pod)
    	switch typeMeta.Kind {
    	case "Deployment":
    		return objMeta.Name, workloadapi.WorkloadType_DEPLOYMENT
    	case "Job":
    		return objMeta.Name, workloadapi.WorkloadType_JOB
    	case "CronJob":
    		return objMeta.Name, workloadapi.WorkloadType_CRONJOB
    	default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. docs/ko/docs/tutorial/dependencies/index.md

    !!! info "정보"
        FastAPI는 0.95.0 버전부터 `Annotated`에 대한 지원을 (그리고 이를 사용하기 권장합니다) 추가했습니다.
    
        옛날 버전을 가지고 있는 경우, `Annotated`를 사용하려 하면 에러를 맞이하게 될 것입니다.
    
        `Annotated`를 사용하기 전에 최소 0.95.1로 [FastAPI 버전 업그레이드](../../deployment/versions.md#fastapi_2){.internal-link target=_blank}를 확실하게 하세요.
    
    ### `Depends` 불러오기
    
    === "Python 3.10+"
    
        ```Python hl_lines="3"
        {!> ../../../docs_src/dependencies/tutorial001_an_py310.py!}
        ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. cmd/api-router.go

    				host, _, err := net.SplitHostPort(getHost(r))
    				if err != nil {
    					host = r.Host
    				}
    				// Make sure to skip matching minio.<domain>` this is
    				// specifically meant for operator/k8s deployment
    				// The reason we need to skip this is for a special
    				// usecase where we need to make sure that
    				// minio.<namespace>.svc.<cluster_domain> is ignored
    				// by the bucketDNS style to ensure that path style
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  6. docs/zh/docs/async.md

    并且,您也可以利用并行和多进程(让多个进程并行运行)的优点来处理与机器学习系统中类似的 **CPU 密集型** 工作。
    
    这一点,再加上 Python 是**数据科学**、机器学习(尤其是深度学习)的主要语言这一简单事实,使得 **FastAPI** 与数据科学/机器学习 Web API 和应用程序(以及其他许多应用程序)非常匹配。
    
    了解如何在生产环境中实现这种并行性,可查看此文 [Deployment](deployment/index.md){.internal-link target=_blank}。
    
    ## `async` 和 `await`
    
    现代版本的 Python 有一种非常直观的方式来定义异步代码。这使它看起来就像正常的"顺序"代码,并在适当的时候"等待"。
    
    当有一个操作需要等待才能给出结果,且支持这个新的 Python 特性时,您可以编写如下代码:
    
    ```Python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. pkg/model/proxy.go

    	// replaces POD_NAME
    	InstanceName string `json:"NAME,omitempty"`
    
    	// Owner specifies the workload owner (opaque string). Typically, this is the owning controller of
    	// of the workload instance (ex: k8s deployment for a k8s pod).
    	Owner string `json:"OWNER,omitempty"`
    
    	// PilotSAN is the list of subject alternate names for the xDS server.
    	PilotSubjectAltName []string `json:"PILOT_SAN,omitempty"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. pkg/kube/inject/webhook.go

    // patch directly; Kubernetes will take care of applying the patch.
    //
    // For kube-inject, we will parse out a Pod from YAML (which may involve
    // extraction from higher level types like Deployment), then apply the patch
    // locally.
    //
    // The injection logic works by first applying the rendered injection template on
    // top of the input pod This is done using a Strategic Patch Merge
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top