Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,069 for dev2 (0.04 sec)

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

    // devices that don't use them.
    
    package unix
    
    // Major returns the major component of a FreeBSD device number.
    func Major(dev uint64) uint32 {
    	return uint32((dev >> 8) & 0xff)
    }
    
    // Minor returns the minor component of a FreeBSD device number.
    func Minor(dev uint64) uint32 {
    	return uint32(dev & 0xffff00ff)
    }
    
    // Mkdev returns a FreeBSD device number generated from the given major and
    // minor components.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 19:01:58 UTC 2018
    - 1013 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/dev_aix_ppc.go

    // encoding used by AIX.
    
    package unix
    
    // Major returns the major component of a Linux device number.
    func Major(dev uint64) uint32 {
    	return uint32((dev >> 16) & 0xffff)
    }
    
    // Minor returns the minor component of a Linux device number.
    func Minor(dev uint64) uint32 {
    	return uint32(dev & 0xffff)
    }
    
    // Mkdev returns a Linux device number generated from the given major and minor
    // components.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 739 bytes
    - Viewed (0)
  3. samples/cicd/skaffold/skaffold.yaml

    # ------------------------------------------------ #
    # Development mode - skaffold dev #
    # ------------------------------------------------- #
    apiVersion: skaffold/v2beta22
    kind: Config
    metadata:
      name: istio-base
    profiles:
      - name: dev
        activation:
          - command: dev
        deploy:
          helm:
            releases:
              - name: istio-base
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 17 12:12:08 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go

    // encoding used AIX.
    
    package unix
    
    // Major returns the major component of a Linux device number.
    func Major(dev uint64) uint32 {
    	return uint32((dev & 0x3fffffff00000000) >> 32)
    }
    
    // Minor returns the minor component of a Linux device number.
    func Minor(dev uint64) uint32 {
    	return uint32((dev & 0x00000000ffffffff) >> 0)
    }
    
    // Mkdev returns a Linux device number generated from the given major and minor
    // components.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 858 bytes
    - Viewed (0)
  5. pkg/volume/util/hostutil/hostutil_linux_test.go

    import (
    	"os"
    	"path/filepath"
    	"testing"
    )
    
    func TestIsSharedSuccess(t *testing.T) {
    	successMountInfo :=
    		`62 0 253:0 / / rw,relatime shared:1 - ext4 /dev/mapper/ssd-root rw,seclabel,data=ordered
    76 62 8:1 / /boot rw,relatime shared:29 - ext4 /dev/sda1 rw,seclabel,data=ordered
    78 62 0:41 / /tmp rw,nosuid,nodev shared:30 - tmpfs tmpfs rw,seclabel
    80 62 0:42 / /var/lib/nfs/rpc_pipefs rw,relatime shared:31 - rpc_pipefs sunrpc rw
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. hack/verify-vendor.sh

    tar --exclude=.git --exclude="./_*" -c . | (cd "${_kubetmp}" && tar xf -)
    
    pushd "${_kubetmp}" > /dev/null 2>&1
      # Destroy deps in the copy of the kube tree
      rm -rf ./vendor ./LICENSES
    
      # Recreate the vendor tree using the nice clean set we just downloaded
      hack/update-vendor.sh
    popd > /dev/null 2>&1
    
    ret=0
    
    pushd "${KUBE_ROOT}" > /dev/null 2>&1
      # Test for diffs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. cluster/addons/device-plugins/nvidia-gpu/daemonset.yaml

          - operator: "Exists"
            effect: "NoSchedule"
          volumes:
          - name: device-plugin
            hostPath:
              path: /var/lib/kubelet/device-plugins
          - name: dev
            hostPath:
              path: /dev
          containers:
          - image: "registry.k8s.io/nvidia-gpu-device-plugin@sha256:4b036e8844920336fa48f36edeb7d4398f426d6a934ba022848deed2edbf09aa"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  8. common/scripts/tracing.sh

      if [ -z "${JOB_NAME:-}" ] || ! command -v otel-cli &> /dev/null
      then
        "${@:2}"
        return "$?"
      fi
    
      # Disable execution tracing to avoid noise
      { [[ $- = *x* ]] && was_execution_trace=1 || was_execution_trace=0; } 2>/dev/null
      { set +x; } 2>/dev/null
      # Throughout, "local" usage is critical to avoid nested calls overwriting things
      local start
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 28 15:25:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/get_compiler_ir.cc

          inputs[i + offset] = &inputs_storage.back();
        } else {
          inputs[i + offset] = t;
        }
      }
    
      if (dev != nullptr) {
        TF_RETURN_IF_ERROR(GetVariableInfosFromInputs(dev->resource_manager(), dev,
                                                      inputs, resource_arg_indices,
                                                      &variable_infos));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. pkg/volume/fc/fc_util.go

    	//   3600508b400105e210000900000490000
    	//   <VENDOR NAME> <IDENTIFIER NUMBER>
    	// Example of symlink under by-id:
    	//   /dev/by-id/scsi-3600508b400105e210000900000490000
    	//   /dev/by-id/scsi-<VENDOR NAME>_<IDENTIFIER NUMBER>
    	// The wwid could contain white space and it will be replaced
    	// underscore when wwid is exposed under /dev/by-id.
    
    	fcPath := "scsi-" + wwid
    	devID := byID
    	if dirs, err := io.ReadDir(devID); err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.8K bytes
    - Viewed (0)
Back to top