Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,043 for dev3 (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. cluster/gce/gci/flexvolume_node_setup.sh

    MOUNTER_DEFAULT_NAME=flexvolume_mounter
    sudo -u "${SUDO_USER}" docker login -u _token -p "$ACCESS_TOKEN" https://gcr.io > /dev/null
    sudo -u "${SUDO_USER}" docker run --name=${MOUNTER_DEFAULT_NAME} "${IMAGE_URL}"
    docker export ${MOUNTER_DEFAULT_NAME} > /tmp/${MOUNTER_DEFAULT_NAME}.tar
    docker rm ${MOUNTER_DEFAULT_NAME} > /dev/null
    docker rmi "${IMAGE_URL}" > /dev/null
    
    echo
    echo "Loading mount utilities onto this instance..."
    echo
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 13 17:58:51 UTC 2020
    - 5.8K bytes
    - Viewed (0)
  8. cluster/gce/gci/README.md

    cos-dev-84-13078-0-0                                  cos-cloud          cos-dev                                       READY
    cos-stable-81-12871-119-0                             cos-cloud          cos-stable                                    READY
    ```
    
    COS image will experience dev, beta, stable and LTS stage. Before LTS stage, image is named with its
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 14:55:40 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. bin/build_ztunnel.sh

        return 1
      fi
    
      pushd "${BUILD_ZTUNNEL_REPO}"
      cargo build --profile="${BUILD_ZTUNNEL_PROFILE:-dev}" ${BUILD_ZTUNNEL_TARGET:+--target=${BUILD_ZTUNNEL_TARGET}}
    
      local ZTUNNEL_BIN_PATH
      if [[ "${BUILD_ZTUNNEL_PROFILE:-dev}" == "dev" ]]; then
          ZTUNNEL_BIN_PATH=debug
      else
          ZTUNNEL_BIN_PATH="${BUILD_ZTUNNEL_PROFILE}"
      fi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:46:06 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. src/packaging/common/scripts/preinst

            # Create fess group if not existing
            if ! getent group "$FESS_GROUP" > /dev/null 2>&1 ; then
                echo -n "Creating $FESS_GROUP group..."
                addgroup --quiet --system "$FESS_GROUP"
                echo " OK"
            fi
    
            # Create fess user if not existing
            if ! id $FESS_USER > /dev/null 2>&1 ; then
                echo -n "Creating $FESS_USER user..."
                adduser --quiet \
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 01 09:48:15 UTC 2016
    - 2.3K bytes
    - Viewed (0)
Back to top