Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for src1 (1.48 sec)

  1. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r52/CppModelCrossVersionSpec.groovy

                    targetMachines = [machines.host().x86, machines.host().x86_64]
                }
            """
            def headerDir = file('src/main/headers')
            def apiHeaderDir = file('src/main/public')
            def src1 = file('src/main/cpp/lib.cpp').createFile()
            def src2 = file('src/main/cpp/lib-impl.cpp').createFile()
    
            when:
            def project = withConnection { connection -> connection.getModel(CppProject.class) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r410/CppModelCrossVersionSpec.groovy

            """
            buildFile << """
                apply plugin: 'cpp-library'
            """
            def headerDir = file('src/main/headers')
            def apiHeaderDir = file('src/main/public')
            def src1 = file('src/main/cpp/lib.cpp').createFile()
            def src2 = file('src/main/cpp/lib-impl.cpp').createFile()
    
            when:
            def project = withConnection { connection -> connection.getModel(CppProject.class) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 25.4K 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. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

                        new File(srcDir, "src2.txt").text = "123"
                    }
                }
                task transform2(type: DirTransformerTask) {
                    mustRunAfter src1, src2
                    inputDir = srcDir
                    outputDir = file("out-2")
                }
    """
    
            when:
            run "src1", "transform1", "src2", "transform2"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. src/go/types/issues_test.go

    			t.Fatalf("%s: got %v; want package types", test, pkg)
    		}
    	}
    
    	f("src0", src0)
    	f("src1", src1)
    	f("src2", src2)
    }
    
    func TestIssue22525(t *testing.T) {
    	const src = `package p; func f() { var a, b, c, d, e int }`
    
    	got := "\n"
    	conf := Config{Error: func(err error) { got += err.Error() + "\n" }}
    	typecheck(src, &conf, nil) // do not crash
    	want := "\n" +
    		"p:1:27: declared and not used: a\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/issues_test.go

    			t.Fatalf("%s: got %v; want package types2", test, pkg)
    		}
    	}
    
    	f("src0", src0)
    	f("src1", src1)
    	f("src2", src2)
    }
    
    func TestIssue22525(t *testing.T) {
    	const src = `package p; func f() { var a, b, c, d, e int }`
    
    	got := "\n"
    	conf := Config{Error: func(err error) { got += err.Error() + "\n" }}
    	typecheck(src, &conf, nil) // do not crash
    	want := "\n" +
    		"p:1:27: declared and not used: a\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    // See: https://openid.net/specs/openid-connect-core-1_0.html#AggregatedDistributedClaims
    //
    //	{
    //	  ... (other normal claims)...
    //	  "_claim_names": {
    //	    "groups": "src1"
    //	  },
    //	  "_claim_sources": {
    //	    "src1": {
    //	      "endpoint": "https://www.example.com",
    //	      "access_token": "f005ba11"
    //	    },
    //	  },
    //	}
    func (r *claimResolver) expand(ctx context.Context, c claims) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/builtins_test.go

    	{"copy", `var src, dst []byte; copy(dst, src)`, `func([]byte, []byte) int`},
    	{"copy", `type T [][]int; var src, dst T; _ = copy(dst, src)`, `func(p.T, p.T) int`},
    	{"copy", `var src string; var dst []byte; copy(dst, src)`, `func([]byte, string) int`},
    	{"copy", `type T string; type U []byte; var src T; var dst U; copy(dst, src)`, `func(p.U, p.T) int`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 18:06:31 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top