Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 125 for src2 (0.26 sec)

  1. 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)
  2. 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)
  3. src/cmd/vendor/golang.org/x/text/transform/transform.go

    				}
    				continue
    			}
    		}
    
    		// Move any untransformed source bytes to the start of the buffer
    		// and read more bytes.
    		if r.src0 != 0 {
    			r.src0, r.src1 = 0, copy(r.src, r.src[r.src0:r.src1])
    		}
    		n, r.err = r.r.Read(r.src[r.src1:])
    		r.src1 += n
    	}
    }
    
    // TODO: implement ReadByte (and ReadRune??).
    
    // Writer wraps another io.Writer by transforming the bytes read.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-monolithic/src/src.c

    #include "src${sourceIdx}_h.h"
    
    <% includedHeaderCount.times { %>
    #include "src${it}_h.h"
    <% } %>
    
    <% includedCommonHeaderCount.times { %>
    #include "common/include/header${it}.h"
    <% } %>
    
    #include <stdio.h>
    
    <% functionCount.times { %>
    int C_function_${(it+1)+offset} () {
      printf("Hello world!");
      return 0;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 322 bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-monolithic/src/src.cpp

    #include "src${sourceIdx}_h.h"
    
    <% includedHeaderCount.times { %>
    #include "src${it}_h.h"
    <% } %>
    
    <% includedCommonHeaderCount.times { %>
    #include "common/include/header${it}.h"
    <% } %>
    
    #include <stdio.h>
    
    <% functionCount.times { %>
    int CPP_function_${(it+1)+offset} () {
      printf("Hello world!");
      return 0;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 325 bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-monolithic/src/src.h

    #ifndef PROJECT_HEADER_${sourceIdx}_H
    #define PROJECT_HEADER_${sourceIdx}_H
    
    <% sourceIdx.times { %>
    #include "src${it}_h.h"
    <% } %>
    
    
    <% functionCount.times { %>
    int C_function_${(it+1)+offset} (); 
    int CPP_function_${(it+1)+offset} (); 
    <% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 287 bytes
    - Viewed (0)
  7. tensorflow/cc/BUILD

        licenses = ["notice"],
    )
    
    filegroup(
        name = "srcs_no_runtime",
        srcs = [
            "framework/gradients.h",
            "framework/ops.h",
            "framework/scope.h",
            "framework/scope_internal.h",
            "//tensorflow/cc/saved_model:loader.h",
        ],
    )
    
    filegroup(
        name = "srcs",
        srcs = [
            "framework/gradients.h",
            "framework/ops.h",
            "framework/scope.h",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. tensorflow/c/BUILD

        licenses = ["notice"],
    )
    
    filegroup(
        name = "safe_ptr_hdr",
        srcs = ["safe_ptr.h"],
        visibility = [
            "//tensorflow:internal",
        ],
    )
    
    cc_library(
        name = "safe_ptr",
        srcs = [
            "safe_ptr.cc",
            "//tensorflow/c/eager:headers",
        ],
        hdrs = ["safe_ptr.h"],
        visibility = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/libtf/impl/BUILD

        size = "small",
        srcs = ["string_test.cc"],
        deps = [
            ":string",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
        ],
    )
    
    cc_library(
        name = "none",
        srcs = [
            "none.cc",
        ],
        hdrs = [
            "none.h",
        ],
    )
    
    tf_cc_test(
        name = "none_test",
        size = "small",
        srcs = ["none_test.cc"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 09:47:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/cc/BUILD

        ],
    )
    
    tf_cc_test(
        name = "config_test",
        srcs = ["config_test.cc"],
        deps = [
            ":config",
            "//tensorflow/compiler/mlir/quantization/stablehlo:quantization_config_proto_cc",
            "@com_google_googletest//:gtest_main",
        ],
    )
    
    cc_library(
        name = "io",
        srcs = ["io.cc"],
        hdrs = ["io.h"],
        compatible_with = get_compatible_with_portable(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top