Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for checkMin (0.2 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"['a', 'b'].sum() == 'c'": "found no matching overload for 'sum' applied to 'list(string).()", // compiler type checking error
    
    				// only allow min/max/indexOf/lastIndexOf on comparable types
    				"[[1], [2]].min() == [1]":                "found no matching overload for 'min' applied to 'list(list(int)).()",        // compiler type checking error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    	CheckI("bv", bv, 11)
    	CheckI("&bv", &bv, 11)
    
    	bp := Tbigp([2]uintptr{7, 8})
    	CheckI("&bp", &bp, 15)
    
    	t4 := Tm4{}
    	t3 := Tm3{&t4}
    	t2 := Tm2{&t3}
    	t1 := Tm1{t2}
    	CheckI("t4", t4, 40)
    	CheckI("&t4", &t4, 40)
    	CheckI("t3", t3, 40)
    	CheckI("&t3", &t3, 40)
    	CheckI("t2", t2, 40)
    	CheckI("&t2", &t2, 40)
    	CheckI("t1", t1, 40)
    	CheckI("&t1", &t1, 40)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/validation/validation_test.go

    	}, {
    		name: "type checking",
    		status: &admissionregistration.ValidatingAdmissionPolicyStatus{
    			TypeChecking: &admissionregistration.TypeChecking{
    				ExpressionWarnings: []admissionregistration.ExpressionWarning{{
    					FieldRef: "spec.validations[0].expression",
    					Warning:  "message",
    				}},
    			},
    		},
    	}, {
    		name: "type checking bad json path",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/helpers_test.go

    		},
    		Spec: v1.PodSpec{
    			Containers: containers,
    			Volumes:    volumes,
    			Priority:   &priority,
    		},
    	}
    }
    
    // nodeConditionList is a simple alias to support equality checking independent of order
    type nodeConditionList []v1.NodeConditionType
    
    // Equal adds the ability to check equality between two lists of node conditions.
    func (s1 nodeConditionList) Equal(s2 nodeConditionList) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  5. pkg/volume/util/operationexecutor/operation_generator.go

    				continue
    			}
    
    			attached, areAttachedErr := volumeAttacher.VolumesAreAttached(volumesSpecs, nodeName)
    			if areAttachedErr != nil {
    				klog.Errorf(
    					"VolumesAreAttached failed for checking on node %q with: %v",
    					nodeName,
    					areAttachedErr)
    				continue
    			}
    
    			for spec, check := range attached {
    				if !check {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

          },
          "io.k8s.api.admissionregistration.v1alpha1.TypeChecking": {
            "description": "TypeChecking contains results of type checking the expressions in the ValidatingAdmissionPolicy",
            "properties": {
              "expressionWarnings": {
                "description": "The type checking warnings for each expression.",
                "items": {
                  "allOf": [
                    {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.4.md

    * Use shasum if sha1sum doesn't exist in the path ([#37362](https://github.com/kubernetes/kubernetes/pull/37362), [@roberthbailey](https://github.com/roberthbailey))
    * Guard the ready replica checking by server version ([#37303](https://github.com/kubernetes/kubernetes/pull/37303), [@krousey](https://github.com/krousey))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

          },
          "io.k8s.api.admissionregistration.v1beta1.TypeChecking": {
            "description": "TypeChecking contains results of type checking the expressions in the ValidatingAdmissionPolicy",
            "properties": {
              "expressionWarnings": {
                "description": "The type checking warnings for each expression.",
                "items": {
                  "allOf": [
                    {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    // direct path to the underlying code hosting site.
    //
    // Import path checking is disabled for code found within vendor trees.
    // This makes it possible to copy code into alternate locations in vendor trees
    // without needing to update import comments.
    //
    // Import path checking is also disabled when using modules.
    // Import path comments are obsoleted by the go.mod file's module statement.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    	// trigger deleting containers in a pod
    	containerDeletor *podContainerDeletor
    
    	// config iptables util rules
    	makeIPTablesUtilChains bool
    
    	// The AppArmor validator for checking whether AppArmor is supported.
    	appArmorValidator apparmor.Validator
    
    	// StatsProvider provides the node and the container stats.
    	StatsProvider *stats.Provider
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top