Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for 9$ (0.33 sec)

  1. cluster/gce/gci/configure-helper.sh

        log-wrap 'SourceKubeMasterCerts' source "${KUBE_HOME}/kube-master-certs"
      fi
    
      log-start 'VerifyKubeUser'
      if [[ -n "${KUBE_USER:-}" ]]; then
        if ! [[ "${KUBE_USER}" =~ ^[-._@a-zA-Z0-9]+$ ]]; then
          echo "Bad KUBE_USER format."
          exit 1
        fi
      fi
      log-end 'VerifyKubeUser'
    
      log-start 'GenerateTokens'
      KUBE_CONTROLLER_MANAGER_TOKEN="$(secure_random 32)"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    // There is a copy of this function in cmd/compile/internal/gc/noder.go.
    func SafeArg(name string) bool {
    	if name == "" {
    		return false
    	}
    	c := name[0]
    	return '0' <= c && c <= '9' || 'A' <= c && c <= 'Z' || 'a' <= c && c <= 'z' || c == '.' || c == '_' || c == '/' || c >= utf8.RuneSelf
    }
    
    // LinkerDeps returns the list of linker-induced dependencies for main package p.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

        if [[ "${ENABLE_BIG_CLUSTER_SUBNETS}" = "true" ]]; then
          echo "Deleting default subnets..."
          # This value should be kept in sync with number of regions.
          local parallelism=9
          gcloud compute networks subnets list --network="${NETWORK}" --project "${NETWORK_PROJECT}" --format='value(region.basename())' | \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        elif target_opset == quant_opts_pb2.STABLEHLO:
          self.assertEqual(quant_unit.node_name, '_empty_node')
          self.assertRegex(
              quant_unit.func_name, r'^composite_conv_([a-zA-Z_0-9]+_)*fn_\d+'
          )
        else:
          assert False, f'Please add assertion for the op_set: {target_opset}.'
    
    
    @test_util.run_all_in_graph_and_eager_modes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Div64 n (Const64 [-1<<63])) && isNonNegative(n)                 => (Const64 [0])
    
    // Unsigned divide, not a power of 2.  Strength reduce to a multiply.
    // For 8-bit divides, we just do a direct 9-bit by 8-bit multiply.
    (Div8u x (Const8 [c])) && umagicOK8(c) =>
      (Trunc32to8
        (Rsh32Ux64 <typ.UInt32>
          (Mul32 <typ.UInt32>
            (Const32 <typ.UInt32> [int32(1<<8+umagic8(c).m)])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    		6: {"/testThree?foo", "CONNECT", "foo", true},
    		7: {"/testThree/?foo", "CONNECT", "foo:bar", true},
    
    		// canonicalization or not
    		8: {"/testOne/foo/..?foo", "GET", "foo", true},
    		9: {"/testOne/foo/..?foo", "CONNECT", "404 page not found\n", false},
    	}
    
    	for i, tt := range tests {
    		req, _ := NewRequest(tt.method, ts.URL+tt.path, nil)
    		res, err := ts.Client().Do(req)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top