Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for unmix (0.1 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    // Code generated by mkmerge; DO NOT EDIT.
    
    //go:build linux
    
    package unix
    
    const (
    	SizeofShort    = 0x2
    	SizeofInt      = 0x4
    	SizeofLongLong = 0x8
    	PathMax        = 0x1000
    )
    
    type (
    	_C_short int16
    	_C_int   int32
    
    	_C_long_long int64
    )
    
    type ItimerSpec struct {
    	Interval Timespec
    	Value    Timespec
    }
    
    type Itimerval struct {
    	Interval Timeval
    	Value    Timeval
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.25.md

    - Kubeadm: handle dup `unix://` prefix in node annotation ([#110656](https://github.com/kubernetes/kubernetes/pull/110656), [@pacoxu](https://github.com/pacoxu)) [SIG Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  3. prow/config/calico.yaml

            # if not using the upgrade-ipam init container.
            - name: host-local-net-dir
              hostPath:
                path: /var/lib/cni/networks
            # Used to create per-pod Unix Domain Sockets
            - name: policysync
              hostPath:
                type: DirectoryOrCreate
                path: /var/run/nodeagent
    ---
    # Source: calico/templates/calico-kube-controllers.yaml
    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. CHANGELOG/CHANGELOG-1.28.md

    - Enabled the `node-local` kubelet podresources API endpoint on windows, alongside unix. ([#115133](https://github.com/kubernetes/kubernetes/pull/115133), [@ffromani](https://github.com/ffromani))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.27.md

    - Profiling can now be served on a unix-domain socket by using the `--profiling-path` option (when profiling is enabled) for security purposes. ([#114191](https://github.com/kubernetes/kubernetes/pull/114191), [@apelisse](https://github.com/apelisse)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	// as needed with file mode 0644, having the same group and ownership with Kubelet.
    	HostPathFileOrCreate HostPathType = "FileOrCreate"
    	// A file must exist at the given path
    	HostPathFile HostPathType = "File"
    	// A UNIX socket must exist at the given path
    	HostPathSocket HostPathType = "Socket"
    	// A character device must exist at the given path
    	HostPathCharDev HostPathType = "CharDevice"
    	// A block device must exist at the given path
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// as needed with file mode 0644, having the same group and ownership with Kubelet.
    	HostPathFileOrCreate HostPathType = "FileOrCreate"
    	// A file must exist at the given path
    	HostPathFile HostPathType = "File"
    	// A UNIX socket must exist at the given path
    	HostPathSocket HostPathType = "Socket"
    	// A character device must exist at the given path
    	HostPathCharDev HostPathType = "CharDevice"
    	// A block device must exist at the given path
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top