Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 92 for dotdot (0.45 sec)

  1. pkg/apis/core/validation/validation_test.go

    								FieldPath:  "metadata.labels",
    							},
    						}, {
    							Path: "path/with/embedded..dotdot",
    							FieldRef: &core.ObjectFieldSelector{
    								APIVersion: "v1",
    								FieldPath:  "metadata.labels",
    							},
    						}, {
    							Path: "path/with/leading/..dotdot",
    							FieldRef: &core.ObjectFieldSelector{
    								APIVersion: "v1",
    								FieldPath:  "metadata.labels",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/build.go

    // and ext (without the dot). If the file has no
    // extension, ext will be empty.
    func fileExtSplit(file string) (name, ext string) {
    	dotExt := filepath.Ext(file)
    	name = file[:len(file)-len(dotExt)]
    	if dotExt != "" {
    		ext = dotExt[1:]
    	}
    	return
    }
    
    func pkgsMain(pkgs []*load.Package) (res []*load.Package) {
    	for _, p := range pkgs {
    		if p.Name == "main" {
    			res = append(res, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

                                       /*rhs_contracting_dimensions=*/{0});
      return ConvertDot(
          rewriter, dot_op.getLhs(), dot_op.getRhs(), dot_dimension_numbers,
          mlir::cast<ShapedType>(dot_op.getResult().getType()), dot_op.getLoc());
    }
    
    // Converts mhlo.dot to tf.BatchMatMul. Reshape or Transpose ops will also be
    // inserted to convert to well-formed matrix multiply.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  4. src/internal/filepathlite/path_windows.go

    		return false
    	}
    	return IsPathSeparator(path[0])
    }
    
    // volumeNameLen returns length of the leading volume name on Windows.
    // It returns 0 elsewhere.
    //
    // See:
    // https://learn.microsoft.com/en-us/dotnet/standard/io/file-path-formats
    // https://googleprojectzero.blogspot.com/2016/02/the-definitive-guide-on-win32-to-nt.html
    func volumeNameLen(path string) int {
    	switch {
    	case len(path) >= 2 && path[1] == ':':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. src/html/template/error.go

    	ErrRangeLoopReentry
    
    	// ErrSlashAmbig: '/' could start a division or regexp.
    	// Example:
    	//   <script>
    	//     {{if .C}}var x = 1{{end}}
    	//     /-{{.N}}/i.test(x) ? doThis : doThat();
    	//   </script>
    	// Discussion:
    	//   The example above could produce `var x = 1/-2/i.test(s)...`
    	//   in which the first '/' is a mathematical division operator or it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  6. hack/tools/go.mod

    	github.com/subosito/gotenv v1.4.1 // indirect
    	github.com/t-yuki/gocover-cobertura v0.0.0-20180217150009-aaee18c8195c // indirect
    	github.com/tdakkota/asciicheck v0.2.0 // indirect
    	github.com/tetafro/godot v1.4.16 // indirect
    	github.com/timakin/bodyclose v0.0.0-20230421092635-574207250966 // indirect
    	github.com/timonwong/loggercheck v0.9.4 // indirect
    	github.com/tomarrell/wrapcheck/v2 v2.8.1 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

          index: Int,
          pathSegment: String,
        ) = apply {
          val canonicalPathSegment = pathSegment.canonicalize(encodeSet = PATH_SEGMENT_ENCODE_SET)
          require(!isDot(canonicalPathSegment) && !isDotDot(canonicalPathSegment)) {
            "unexpected path segment: $pathSegment"
          }
          encodedPathSegments[index] = canonicalPathSegment
        }
    
        fun setEncodedPathSegment(
          index: Int,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_ops_to_mhlo.cc

        }
    
        auto rhs_or =
            CreateConstantOrConvertOp(op, adaptor.getRhs(), *rhs_type, rewriter);
        if (failed(rhs_or)) {
          return failure();
        }
    
        rewriter.replaceOpWithNewOp<mhlo::DotOp>(op, op.getType(), op.getLhs(),
                                                 *rhs_or,
                                                 /*precision_config=*/nullptr);
        return success();
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. cluster/gce/windows/common.psm1

        Add-Type -AssemblyName System.Net.Http
      }
    
      $timeout = New-TimeSpan -Minutes 5
    
      try {
        # Use HttpClient in favor of WebClient.
        # https://docs.microsoft.com/en-us/dotnet/api/system.net.webclient?view=net-5.0#remarks
        $httpClient = New-Object -TypeName System.Net.Http.HttpClient
        $httpClient.Timeout = $timeout
        foreach ($key in $Headers.Keys) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	}
    	if rx != nil && matched == 0 {
    		return fmt.Errorf("no matches found for regexp: %s", rx)
    	}
    	return nil
    }
    
    // GetDOT returns a graph suitable for dot processing along with some
    // configuration information.
    func GetDOT(rpt *Report) (*graph.Graph, *graph.DotConfig) {
    	g, origCount, droppedNodes, droppedEdges := rpt.newTrimmedGraph()
    	rpt.selectOutputUnit(g)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
Back to top