Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for spring (0.18 sec)

  1. ChangeLog.md

    - [`KT-61333`](https://youtrack.jetbrains.com/issue/KT-61333) K2 Kapt: support REPORT_OUTPUT_FILES compiler mode
    - [`KT-61761`](https://youtrack.jetbrains.com/issue/KT-61761) Kapt4ToolIntegrationTestGenerated should not use Kapt3ComponentRegistrar
    - [`KT-59702`](https://youtrack.jetbrains.com/issue/KT-59702) KAPT4: Build sphinx-kotlin using KAPT4
    
    ### Tools. Maven
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_ConfigMapEnvSource
    }
    
    var map_ConfigMapKeySelector = map[string]string{
    	"":         "Selects a key from a ConfigMap.",
    	"key":      "The key to select.",
    	"optional": "Specify whether the ConfigMap or its key must be defined",
    }
    
    func (ConfigMapKeySelector) SwaggerDoc() map[string]string {
    	return map_ConfigMapKeySelector
    }
    
    var map_ConfigMapList = 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)
  3. prow/config/calico.yaml

                      properties:
                        action:
                          type: string
                        cidr:
                          type: string
                        interface:
                          type: string
                        matchOperator:
                          type: string
                        source:
                          type: string
                      required:
                      - action
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// +optional
    	FSType string
    	// Optional: RadosPool is the rados pool name,default is rbd
    	// +optional
    	RBDPool string
    	// Optional: RBDUser is the rados user name, default is admin
    	// +optional
    	RadosUser string
    	// Optional: Keyring is the path to key ring for RBDUser, default is /etc/ceph/keyring
    	// +optional
    	Keyring string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string initiatorName = 12;
    }
    
    // Maps a string key to a path within a volume.
    message KeyToPath {
      // key is the key to project.
      optional string key = 1;
    
      // path is the relative path of the file to map the key to.
      // May not be an absolute path.
      // May not contain the path element '..'.
      // May not start with the string '..'.
      optional string path = 2;
    
    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. pkg/proxy/iptables/proxier_test.go

    		extraChains := createdChains.Difference(jumpedChains)
    		extraChains.Delete(string(kubeServicesChain), string(kubeExternalServicesChain), string(kubeNodePortsChain), string(kubePostroutingChain), string(kubeForwardChain), string(kubeMarkMasqChain), string(kubeProxyFirewallChain), string(kubeletFirewallChain))
    		if len(extraChains) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// specified as a string as host:port pair (multiple entries are separated with commas)
    	// which acts as the central registry for volumes
    	Registry string `json:"registry" protobuf:"bytes,1,opt,name=registry"`
    
    	// volume is a string that references an already created Quobyte volume by name.
    	Volume string `json:"volume" protobuf:"bytes,2,opt,name=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)
  8. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    func (x *CNIConfig) GetPullPolicy() string {
    	if x != nil {
    		return x.PullPolicy
    	}
    	return ""
    }
    
    func (x *CNIConfig) GetCniBinDir() string {
    	if x != nil {
    		return x.CniBinDir
    	}
    	return ""
    }
    
    func (x *CNIConfig) GetCniConfDir() string {
    	if x != nil {
    		return x.CniConfDir
    	}
    	return ""
    }
    
    func (x *CNIConfig) GetCniConfFileName() string {
    	if x != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "user": {
                "description": "user to map volume access to Defaults to serivceaccount user",
                "type": "string"
              },
              "volume": {
                "default": "",
                "description": "volume is a string that references an already created Quobyte volume by name.",
                "type": "string"
              }
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation.go

    }
    
    func GetVolumeMountMap(mounts []core.VolumeMount) map[string]string {
    	volmounts := make(map[string]string)
    
    	for _, mnt := range mounts {
    		volmounts[mnt.Name] = mnt.MountPath
    	}
    
    	return volmounts
    }
    
    func GetVolumeDeviceMap(devices []core.VolumeDevice) map[string]string {
    	volDevices := make(map[string]string)
    
    	for _, dev := range devices {
    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