Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for src0 (0.05 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            collection.withActualValue {
                it.from("src1", "src2")
                it.from("src3")
            }
            then:
            collection.from as List == ["src0", "src1", "src2", "src3"]
            collection.explicit
        }
    
        def "can incrementally set paths as convention to the collection using from"() {
            when:
            collection.convention("src0")
            collection.from("src1", "src2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    	src0 := readUintptr(typ.GCData)
    
    	// Create repetitions of the bitmap if we have a small array.
    	bits := span.elemsize / goarch.PtrSize
    	scanSize = typ.PtrBytes
    	src := src0
    	switch typ.Size_ {
    	case goarch.PtrSize:
    		src = (1 << (dataSize / goarch.PtrSize)) - 1
    	default:
    		for i := typ.Size_; i < dataSize; i += typ.Size_ {
    			src |= src0 << (i / goarch.PtrSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. tensorflow/BUILD

    # filegroup(
    #     name = "copybara_library",
    #     srcs = glob(
    #         [
    #             "*.bara.sky",
    #             "*.dic",
    #             "*.ftrcp",
    #         ],
    #         exclude = [
    #             "copy.bara.sky",
    #         ],
    #     ),
    #     visibility = ["//visibility:public"],
    # )
    #
    # filegroup(
    #     name = "copybara_config",
    #     srcs = ["copy.bara.sky"],
    #     data = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  4. src/runtime/map.go

    }
    
    func mapclone2(t *maptype, src *hmap) *hmap {
    	dst := makemap(t, src.count, nil)
    	dst.hash0 = src.hash0
    	dst.nevacuate = 0
    	// flags do not need to be copied here, just like a new map has no flags.
    
    	if src.count == 0 {
    		return dst
    	}
    
    	if src.flags&hashWriting != 0 {
    		fatal("concurrent map clone and map write")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. src/go/types/api_test.go

    var nopos token.Pos
    
    func mustParse(fset *token.FileSet, src string) *ast.File {
    	f, err := parser.ParseFile(fset, pkgName(src), src, parser.ParseComments)
    	if err != nil {
    		panic(err) // so we don't need to pass *testing.T
    	}
    	return f
    }
    
    func typecheck(src string, conf *Config, info *Info) (*Package, error) {
    	fset := token.NewFileSet()
    	f := mustParse(fset, src)
    	if conf == nil {
    		conf = &Config{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        srcs.push_back(src_arg.first);
      }
      ReverseDFSFrom(
          graph, srcs, /*enter=*/nullptr,
          /*leave=*/[&guaranteed_const_nodes](const Node* n) {
            // TODO(vinuraja): Doesn't work in the presence of loops.
            if (AreAllParentsGuaranteedConst(*n, guaranteed_const_nodes)) {
              guaranteed_const_nodes.insert(n);
            }
          });
    
      for (auto& src_arg : src_arg_pairs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/BUILD

        ],
        deps = [":flags_headers"],
    )
    
    cc_library(
        name = "common",
        srcs = [
            "defs.cc",
        ],
        hdrs = [
            "defs.h",
        ],
        visibility = [":friends"],
    )
    
    # Internal targets below this point.
    
    cc_library(
        name = "variable_info",
        srcs = ["variable_info.cc"],
        hdrs = ["variable_info.h"],
        visibility = [
            ":internal",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/BUILD

        ],
    )
    
    cc_library(
        name = "size_utils",
        srcs = [
            "utils/size_utils.cc",
        ],
        hdrs = [
            "utils/size_utils.h",
        ],
        deps = [
            "@llvm-project//mlir:IR",
        ],
    )
    
    tf_cc_test(
        name = "size_utils_test",
        size = "small",
        srcs = ["utils/size_utils_test.cc"],
        deps = [
            ":size_utils",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  9. staging/publishing/rules.yaml

      - name: master
        source:
          branch: master
          dirs:
          - staging/src/k8s.io/apimachinery
      - name: release-1.27
        go: 1.21.11
        source:
          branch: release-1.27
          dirs:
          - staging/src/k8s.io/apimachinery
      - name: release-1.28
        go: 1.21.11
        source:
          branch: release-1.28
          dirs:
          - staging/src/k8s.io/apimachinery
      - name: release-1.29
        go: 1.21.11
        source:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:33:40 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                configurations { compile }
                dependencies { compile files('a.jar') }
                task copy {
                    doLast {
                        copy {
                            from files('src2') + fileTree('src') { exclude '**/ignore/**' } + configurations.compile
                            into 'dest'
                            include { fte -> fte.relativePath.segments.length < 3 && (fte.file.directory || fte.file.name.contains('a')) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
Back to top