Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for dev2 (0.11 sec)

  1. pkg/apis/core/types.go

    	// +optional
    	FSType string
    	// Optional: Partition on the disk to mount.
    	// If omitted, kubelet will attempt to mount the device name.
    	// Ex. For /dev/sda1, this field is "1", for /dev/sda, this field is 0 or empty.
    	// +optional
    	Partition int32
    	// Optional: Defaults to false (read/write). ReadOnly here will force
    	// the ReadOnly setting in VolumeMounts.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"partition": "partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).",
    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. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    type DmIoctl struct {
    	Version      [3]uint32
    	Data_size    uint32
    	Data_start   uint32
    	Target_count uint32
    	Open_count   int32
    	Flags        uint32
    	Event_nr     uint32
    	_            uint32
    	Dev          uint64
    	Name         [128]byte
    	Uuid         [129]byte
    	Data         [7]byte
    }
    
    type DmTargetSpec struct {
    	Sector_start uint64
    	Length       uint64
    	Status       int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      optional string fsType = 2;
    
      // partition is the partition in the volume that you want to mount.
      // If omitted, the default is to mount by volume name.
      // Examples: For volume /dev/sda1, you specify the partition as "1".
      // Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).
      // +optional
      optional int32 partition = 3;
    
      // readOnly value true will force the readOnly setting in VolumeMounts.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// partition is the partition in the volume that you want to mount.
    	// If omitted, the default is to mount by volume name.
    	// Examples: For volume /dev/sda1, you specify the partition as "1".
    	// Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).
    	// More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. prow/config/calico.yaml

                      (with made-up labels): \n \ttype == \"webserver\" && deployment
                      == \"prod\" \ttype in {\"frontend\", \"backend\"} \tdeployment !=
                      \"dev\" \t! has(label_name)"
                    type: string
                  serviceAccountSelector:
                    description: ServiceAccountSelector is an optional field for an expression
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.30.md

    - Text logging in Kubernetes components now uses [textlogger](https://pkg.go.dev/k8s.io/klog/v2@v2.120.0/textlogger). The same split streams of info and error log entries with buffering of info entries is now also supported for text output (off by default, alpha feature). Previously, this was only supported for JSON. Performance...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    	ir.Syms.SigPanic = typecheck.LookupRuntimeFunc("sigpanic")
    }
    
    // AbiForBodylessFuncStackMap returns the ABI for a bodyless function's stack map.
    // This is not necessarily the ABI used to call it.
    // Currently (1.17 dev) such a stack map is always ABI0;
    // any ABI wrapper that is present is nosplit, hence a precise
    // stack map is not needed there (the parameters survive only long
    // enough to call the wrapped assembly function).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    	} else if wd, ok := wr.write.(*http2writeData); ok {
    		// Encode the frame in the serve goroutine, to ensure we don't have
    		// any lingering asynchronous references to data passed to Write.
    		// See https://go.dev/issue/58446.
    		sc.framer.startWriteDataPadded(wd.streamID, wd.endStream, wd.p, nil)
    		sc.writingFrameAsync = true
    		go sc.writeFrameAsync(wr, wd)
    	} else {
    		sc.writingFrameAsync = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	LogLevel string `protobuf:"bytes,18,opt,name=logLevel,proto3" json:"logLevel,omitempty"`
    	// Path to the file to which the proxy will write outlier detection logs.
    	//
    	// Example: "/dev/stdout"
    	// This would write the logs to standard output.
    	OutlierLogPath string `protobuf:"bytes,42,opt,name=outlierLogPath,proto3" json:"outlierLogPath,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top