Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 284 for src0 (0.32 sec)

  1. src/runtime/memmove_test.go

    			t.Run(name, func(t *testing.T) {
    				// Use overlapping src and dst to force forward/backward copy.
    				var s [100]*int
    				src := s[n-1 : 2*n-1]
    				dst := s[:n]
    				if backward {
    					src, dst = dst, src
    				}
    				for i := range src {
    					src[i] = &x
    				}
    				clear(dst)
    
    				var ready atomic.Uint32
    				go func() {
    					sp := unsafe.Pointer(&src[0])
    					dp := unsafe.Pointer(&dst[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:12 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. src/cmd/distpack/pack.go

    		"src/runtime/internal/sys/zversion.go",
    		"src/time/tzdata/zzipdata.go",
    
    		// Generated during cmd/dist by bootstrapBuildTools.
    		"src/cmd/cgo/zdefaultcc.go",
    		"src/cmd/internal/objabi/zbootstrap.go",
    		"src/internal/buildcfg/zbootstrap.go",
    
    		// Generated by earlier versions of cmd/dist .
    		"src/cmd/go/internal/cfg/zosarch.go",
    	)
    	srcArch.AddPrefix("go")
    	testSrc(srcArch)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGIntegrationTest.groovy

            buildFile << """
                test {
                    ignoreFailures = true
                }
    
                ${testListener()}
            """.stripIndent()
            file('src/test/java/AppException.java') << 'public class AppException extends Exception {}'
            file('src/test/java/SomeTest.java') << '''
                public class SomeTest {
                    @org.testng.annotations.Test
                    public void pass() {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    You will need some source to generate MD5 hashes from.
    Create three files in the `src` directory:
    
    .src/einstein.txt
    [source,text]
    ----
    include::{snippetsPath}/workerApi/md5CustomTask/groovy/src/einstein.txt[]
    ----
    
    .src/feynman.txt
    [source,text]
    ----
    include::{snippetsPath}/workerApi/md5CustomTask/groovy/src/feynman.txt[]
    ----
    
    .src/hawking.txt
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/mlir_graph_optimization_pass_test.cc

          {"y: T"},
          // Attr def
          {"T: {float, double, int32, int64}"},
          // Nodes
          {
              {{"two"}, "Const", {}, {{"value", kTwo}, {"dtype", DT_INT64}}},
              {{"scale"}, "Cast", {"two"}, {{"SrcT", DT_INT64}, {"DstT", "$T"}}},
              {{"y"}, "Mul", {"x", "scale"}, {{"T", "$T"}}},
          });
    }
    
    class MlirGraphOptimizationPassTest : public Test {
     public:
      void Init(Status pass_run_result,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 08:25:30 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/generate-clients.md

    > openapi-ts --input http://localhost:8000/openapi.json --output ./src/client --client axios
    ```
    
    </div>
    
    That command will generate code in `./src/client` and will use `axios` (the frontend HTTP library) internally.
    
    ### Try Out the Client Code
    
    Now you can import and use the client code, it could look like this, notice that you get autocompletion for the methods:
    
    <img src="/img/tutorial/generate-clients/image02.png">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. src/cmd/dist/buildtool.go

    			}
    
    			name := filepath.Base(path)
    			src := pathf("%s/src/%s", goroot, path)
    			dst := pathf("%s/%s", base, path)
    
    			if info.IsDir() {
    				if !recurse && path != dir || name == "testdata" {
    					return filepath.SkipDir
    				}
    
    				xmkdirall(dst)
    				if path == "cmd/cgo" {
    					// Write to src because we need the file both for bootstrap
    					// and for later in the main build.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/integtests/ApplicationIntegrationSpec.groovy

        def "configure the distribution spec to source from a different dir"() {
            when:
            file("src/somewhere-else/dir").with {
                file("r1.txt") << "r1"
                file("r2.txt") << "r2"
            }
    
            and:
            buildFile << """
                application.applicationDistribution.from("src/somewhere-else") {
                    include "**/r2.*"
                }
            """
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. docs/de/docs/advanced/generate-clients.md

    ```console
    $ npm run generate-client
    
    frontend-app@1.0.0 generate-client /home/user/code/frontend-app
    > openapi-ts --input http://localhost:8000/openapi.json --output ./src/client --client axios
    ```
    
    </div>
    
    Dieser Befehl generiert Code in `./src/client` und verwendet intern `axios` (die Frontend-HTTP-Bibliothek).
    
    ### Den Client-Code ausprobieren
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Apr 03 03:42:11 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/export_tf_dialect_op.cc

      auto attr = node_def->mutable_attr();
      if (node_def->op() == "Cast" && attr->contains("SrcT") &&
          attr->contains("DstT") &&
          attr->at("SrcT").type() == attr->at("DstT").type() &&
          attr->contains("Truncate") && !attr->at("Truncate").b()) {
        node_def->set_op("Identity");
        attr->insert({{"T", attr->at("SrcT")}});
        attr->erase("SrcT");
        attr->erase("DstT");
        attr->erase("Truncate");
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top