Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 319 for conditional (0.14 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    // 	    // +listType=map
    // 	    // +listMapKey=type
    // 	    Conditions []metav1.Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,1,rep,name=conditions"`
    //
    // 	    // other fields
    // 	}
    message Condition {
      // type of condition in CamelCase or in foo.example.com/CamelCase.
      // ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    // 	    // +listType=map
    // 	    // +listMapKey=type
    // 	    Conditions []metav1.Condition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,1,rep,name=conditions"`
    //
    // 	    // other fields
    // 	}
    message Condition {
      // type of condition in CamelCase or in foo.example.com/CamelCase.
      // ---
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "string"
            },
            "status": {
              "description": "status is the status of the condition. Can be True, False, Unknown.",
              "type": "string",
              "default": ""
            },
            "type": {
              "description": "type is the type of the condition. Types include Established, NamesAccepted and Terminating.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    	}
    }
    
    // findCRDCondition returns the condition you're looking for or nil.
    func findCRDCondition(crd *apiextensionsv1.CustomResourceDefinition, conditionType apiextensionsv1.CustomResourceDefinitionConditionType) *apiextensionsv1.CustomResourceDefinitionCondition {
    	for i := range crd.Status.Conditions {
    		if crd.Status.Conditions[i].Type == conditionType {
    			return &crd.Status.Conditions[i]
    		}
    	}
    
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// The conditions represent the latest available observations of a policy's current state.
    	// +optional
    	// +listType=map
    	// +listMapKey=type
    	Conditions []metav1.Condition `json:"conditions,omitempty" protobuf:"bytes,3,rep,name=conditions"`
    }
    
    // ValidatingAdmissionPolicyConditionType is the condition type of admission validation policy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      optional string reinvocationPolicy = 10;
    
      // MatchConditions is a list of conditions that must be met for a request to be sent to this
      // webhook. Match conditions filter requests that have already been matched by the rules,
      // namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests.
      // There are a maximum of 64 match conditions allowed.
      //
      // The exact matching logic is (in order):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// The conditions represent the latest available observations of a policy's current state.
    	// +optional
    	// +listType=map
    	// +listMapKey=type
    	Conditions []metav1.Condition `json:"conditions,omitempty" protobuf:"bytes,3,rep,name=conditions"`
    }
    
    // ValidatingAdmissionPolicyConditionType is the condition type of admission validation policy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  8. pkg/kubelet/eviction/helpers.go

    	// the conditions that were not observed now are merged in with their old time
    	for key, value := range lastObservedAt {
    		_, found := results[key]
    		if !found {
    			results[key] = value
    		}
    	}
    	return results
    }
    
    // nodeConditionsObservedSince returns the set of conditions that have been observed within the specified period
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    def SimplifyDoubleSelectFCZerosLHS : Pat<
      (TFL_SelectV2Op $condition, $zeros_2,
       (TFL_FullyConnectedOp:$results
        (TFL_SelectV2Op $condition, $zeros_1, $input),
        $filter, $bias, $fused_activation_function, $weights_format,
        ConstBoolAttrTrue, $asymmetric_quantize_inputs)),
      (TFL_SelectV2Op $condition, $zeros_2,
       (GetFcOutput $results, $input, $filter, $bias, $fused_activation_function,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      optional string reinvocationPolicy = 10;
    
      // MatchConditions is a list of conditions that must be met for a request to be sent to this
      // webhook. Match conditions filter requests that have already been matched by the rules,
      // namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests.
      // There are a maximum of 64 match conditions allowed.
      //
      // The exact matching logic is (in order):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top