Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,326 for deploymentID (0.18 sec)

  1. tools/bug-report/pkg/filter/filter.go

    	// For inclusion, match all if nothing is set.
    	if !match.MatchesGlobs(namespace, sp.Namespaces) {
    		return false
    	}
    
    	if !match.MatchesGlobs(deployment, sp.Deployments) {
    		return false
    	}
    
    	if !match.MatchesGlobs(pod, sp.Pods) && len(sp.Pods) != 0 {
    		return false
    	}
    
    	if !match.MatchesGlobs(container, sp.Containers) {
    		return false
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. docs/orchestration/kubernetes/README.md

    ## Explore Further
    
    - [MinIO Erasure Code QuickStart Guide](https://min.io/docs/minio/linux/operations/concepts/erasure-coding.html)
    - [Kubernetes Documentation](https://kubernetes.io/docs/home/)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/services.go

    // Services is a set of Instances that share the same FQDN. While an Instance contains
    // multiple deployments (a single service in a single cluster), Instances contains multiple
    // deployments that may contain multiple Services.
    type Services []Instances
    
    // GetByService finds the first Instances with the given Service name. It is possible to have multiple deployments
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 21 16:42:24 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/admission/v1/generated.proto

      //
      // For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
      // `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]` and `matchPolicy: Equivalent`,
      // an API request to apps/v1beta1 deployments would be converted and sent to the webhook
      // with `resource: {group:"apps", version:"v1", resource:"deployments"}` (matching the resource the webhook registered for),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/admission/v1beta1/generated.proto

      //
      // For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
      // `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]` and `matchPolicy: Equivalent`,
      // an API request to apps/v1beta1 deployments would be converted and sent to the webhook
      // with `resource: {group:"apps", version:"v1", resource:"deployments"}` (matching the resource the webhook registered for),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. tests/integration/ambient/cnirepair/main_test.go

    	"istio.io/istio/tests/integration/security/util/cert"
    )
    
    var (
    	i istio.Instance
    
    	// Below are various preconfigured echo deployments. Whenever possible, tests should utilize these
    	// to avoid excessive creation/tear down of deployments. In general, a test should only deploy echo if
    	// its doing something unique to that specific test.
    	apps = &EchoDeployments{}
    )
    
    type EchoDeployments struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/openapi/enablement_test.go

    							Default:     "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. pkg/controller/deployment/config/types.go

    // DeploymentControllerConfiguration contains elements describing DeploymentController.
    type DeploymentControllerConfiguration struct {
    	// concurrentDeploymentSyncs is the number of deployment objects that are
    	// allowed to sync concurrently. Larger number = more responsive deployments,
    	// but more CPU (and network) load.
    	ConcurrentDeploymentSyncs int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 30 12:00:53 UTC 2022
    - 949 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/deployment/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Types for defining and managing deployments.
     *
     * @since 4.2
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 14 05:04:10 UTC 2017
    - 721 bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/continuous/ContinuousBuildActionExecutor.java

    import org.gradle.api.logging.LogLevel;
    import org.gradle.deployment.internal.ContinuousExecutionGate;
    import org.gradle.deployment.internal.DefaultContinuousExecutionGate;
    import org.gradle.deployment.internal.Deployment;
    import org.gradle.deployment.internal.DeploymentInternal;
    import org.gradle.deployment.internal.DeploymentRegistryInternal;
    import org.gradle.deployment.internal.PendingChangesListener;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:41:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top