Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 95 for NoExecute (0.17 sec)

  1. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

            "properties": {
              "effect": {
                "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.",
                "type": "string"
              },
              "key": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // Required. The effect of the taint on pods
      // that do not tolerate the taint.
      // Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
      optional string effect = 3;
    
      // TimeAdded represents the time at which the taint was added.
      // It is only written for NoExecute taints.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time timeAdded = 4;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"effect":    "Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.",
    	"timeAdded": "TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints.",
    }
    
    func (Taint) SwaggerDoc() map[string]string {
    	return map_Taint
    }
    
    var map_Toleration = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// that do not tolerate the taint.
    	// Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
    	Effect TaintEffect `json:"effect" protobuf:"bytes,3,opt,name=effect,casttype=TaintEffect"`
    	// TimeAdded represents the time at which the taint was added.
    	// It is only written for NoExecute taints.
    	// +optional
    	TimeAdded *metav1.Time `json:"timeAdded,omitempty" protobuf:"bytes,4,opt,name=timeAdded"`
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // Required. The effect of the taint on pods
      // that do not tolerate the taint.
      // Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
      optional string effect = 3;
    
      // TimeAdded represents the time at which the taint was added.
      // It is only written for NoExecute taints.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time timeAdded = 4;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "effect": {
              "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.",
              "type": "string"
            },
            "key": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.9.md

        * - Update debian-iptables image for CVEs.
        * - Change chain name to IP-MASQ to be compatible with the
        * pre-injected masquerade rules.
    * Add NoSchedule/NoExecute tolerations to ip-masq-agent, ensuring it to be scheduled in all nodes except master. ([#66260](https://github.com/kubernetes/kubernetes/pull/66260), [@tanshanshan](https://github.com/tanshanshan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.10.md

    * Fix an issue where filesystems are not unmounted when a backend is not reachable and returns EIO. ([#67097](https://github.com/kubernetes/kubernetes/pull/67097), [@chakri-nelluri](https://github.com/chakri-nelluri))
    * Add NoSchedule/NoExecute tolerations to ip-masq-agent, ensuring it to be scheduled in all nodes except master. ([#66260](https://github.com/kubernetes/kubernetes/pull/66260), [@tanshanshan](https://github.com/tanshanshan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/ErroringAction.java

        @Override
        public void execute(T thing) {
            try {
                doExecute(thing);
            } catch (Exception e) {
                throw UncheckedException.throwAsUncheckedException(e);
            }
        }
    
        protected abstract void doExecute(T thing) throws Exception;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/ErroringActionTest.groovy

    import spock.lang.Specification
    
    class ErroringActionTest extends Specification {
    
        def "checked exceptions are wrapped"() {
            when:
            new ErroringAction() {
                @Override
                void doExecute(Object thing) {
                    throw new Exception()
                }
            }.execute("foo")
    
            then:
            thrown(RuntimeException)
        }
    
        def "unchecked exceptions are passed through"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top