Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 522 for dev2 (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/NativeBinarySpecTest.groovy

                result.allResolutions[0].nativeDependencySet = dep1
                result.allResolutions[1].nativeDependencySet = dep2
                result.allResolutions[2].nativeDependencySet = sourceDep
            }
    
            then:
            binary.libs as List == [dep1, dep2, sourceDep]
        }
    
        def testBinary(MutableModelNode componentNode, Flavor flavor = new DefaultFlavor(DefaultFlavor.DEFAULT)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_kernel_creator.cc

      // Create the kernel.
      Device* dev = flr->device();
      Status s;
      auto props = std::make_shared<NodeProperties>(
          &fbody->record->fdef().signature(), node_def, fbody->arg_types,
          fbody->ret_types);
      OpKernelConstruction construction(DeviceType(dev->device_type()), dev,
                                        dev->GetAllocator(AllocatorAttributes()),
                                        flr, dev->resource_manager(), props,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 22:24:01 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. docs/pt/docs/python-types.md

    ### Edite-o
    
    É um programa muito simples.
    
    Mas agora imagine que você estava escrevendo do zero.
    
    Em algum momento você teria iniciado a definição da função, já tinha os parâmetros prontos ...
    
    Mas então você deve chamar "esse método que converte a primeira letra em maiúscula".
    
    Era `upper`? Era `uppercase`? `first_uppercase`? `capitalize`?
    
    Em seguida, tente com o velho amigo do programador, o preenchimento automático do editor.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top