Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for UInt32 (0.17 sec)

  1. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	DefaultMode *int32 `json:"defaultMode,omitempty" protobuf:"bytes,3,opt,name=defaultMode"`
    	// optional field specify whether the Secret or its keys must be defined
    	// +optional
    	Optional *bool `json:"optional,omitempty" protobuf:"varint,4,opt,name=optional"`
    }
    
    const (
    	SecretVolumeSourceDefaultMode int32 = 0644
    )
    
    // Adapts a secret into a projected volume.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.8.md

    * [Federation][kubefed]: Use StorageClassName for etcd pvc ([#46323](https://github.com/kubernetes/kubernetes/pull/46323), [@marun](https://github.com/marun))
    * Restrict active deadline seconds max allowed value to be maximum uint32 ([#46640](https://github.com/kubernetes/kubernetes/pull/46640), [@derekwaynecarr](https://github.com/derekwaynecarr))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "format": "int32",
                "type": "integer"
              },
              "periodSeconds": {
                "description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.",
                "format": "int32",
                "type": "integer"
              },
              "successThreshold": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    					"maxReplicas": {
    						SchemaProps: spec.SchemaProps{
    							Description: "maxReplicas is the upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.",
    							Default:     0,
    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_ClientIPConfig_To_core_ClientIPConfig(in *v1.ClientIPConfig, out *core.ClientIPConfig, s conversion.Scope) error {
    	out.TimeoutSeconds = (*int32)(unsafe.Pointer(in.TimeoutSeconds))
    	return nil
    }
    
    // Convert_v1_ClientIPConfig_To_core_ClientIPConfig is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                            use the same port, subject to the Listener compatibility rules.
                            \n Support: Core"
                          format: int32
                          maximum: 65535
                          minimum: 1
                          type: integer
                        protocol:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  7. prow/config/calico.yaml

                properties:
                  asNumber:
                    description: 'ASNumber is the default AS number used by a node. [Default:
                      64512]'
                    format: int32
                    type: integer
                  bindMode:
                    description: BindMode indicates whether to listen for BGP connections
                      on all addresses (None) or only on the node's canonical IP address
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  8. pkg/registry/core/service/storage/storage_test.go

    				}
    			} else if cmp.Equal(beforeIPs, updateIPs) {
    				t.Errorf("expected clusterIPs to not be patched: %q == %q", beforeIPs, updateIPs)
    			}
    
    			bNodePorts, uNodePorts := make([]int32, 0), make([]int32, 0)
    			for _, item := range tc.before.Spec.Ports {
    				bNodePorts = append(bNodePorts, item.NodePort)
    			}
    			for _, item := range update.Spec.Ports {
    				uNodePorts = append(uNodePorts, item.NodePort)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

                "type": "string"
              },
              "port": {
                "default": 0,
                "description": "port is the port number of the ingress port.",
                "format": "int32",
                "type": "integer"
              },
              "protocol": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation.go

    func ValidateMaxSkew(fldPath *field.Path, maxSkew int32) *field.Error {
    	if maxSkew <= 0 {
    		return field.Invalid(fldPath, maxSkew, isNotPositiveErrorMsg)
    	}
    	return nil
    }
    
    // validateMinDomains tests that the argument is a valid MinDomains.
    func validateMinDomains(fldPath *field.Path, minDomains *int32, action core.UnsatisfiableConstraintAction) field.ErrorList {
    	if minDomains == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top