Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 773 for dev2 (0.03 sec)

  1. .github/ISSUE_TEMPLATE/12-telemetry.yml

          do they measure, and why is it important to collect them?
          Note that uploaded data must not carry sensitive user information.
          See [go.dev/doc/telemetry#proposals](https://go.dev/doc/telemetry#proposals)
          for more details on telemetry proposals.
      validations:
        required: true
    - type: input
      attributes:
        label: Proposed Config Change
        description: >
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 19:58:26 UTC 2024
    - 1.2K 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. 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)
  4. 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)
  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. 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)
  7. 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)
  8. 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)
  9. src/html/template/js_test.go

    		s     string
    	}{
    		// Statement terminators precede regexps.
    		{jsCtxRegexp, ";"},
    		// This is not airtight.
    		//     ({ valueOf: function () { return 1 } } / 2)
    		// is valid JavaScript but in practice, devs do not do this.
    		// A block followed by a statement starting with a RegExp is
    		// much more common:
    		//     while (x) {...} /foo/.test(x) || panic()
    		{jsCtxRegexp, "}"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. 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)
Back to top