Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for pouch (0.26 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            def unzippedDir = file("before/files")
            def unzippedFile = unzippedDir.file("sub/c.txt").touch()
    
            and: "another directory with the same file"
            def unzippedDir2 = file("before2/files")
            def unzippedFile2 = unzippedDir2.file("sub/c2.txt").touch()
    
            and: "a copy task that copies from both of these, failing on duplicates"
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  2. tensorflow/BUILD

                  $(location @local_config_def_file_filter//:def_file_filter) \\
                  --input $(location :tensorflow_def_file) \\
                  --output $@
              """,
            "//conditions:default": "touch $@",  # Just a placeholder for Unix platforms
        }),
        tools = ["@local_config_def_file_filter//:def_file_filter"],
        visibility = ["//visibility:public"],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  3. src/os/os_test.go

    			return nil, xerr
    		}
    		return Lstat(path)
    	}
    	defer func() { *LstatP = Lstat }()
    
    	dir := t.TempDir()
    	touch(t, filepath.Join(dir, "good1"))
    	touch(t, filepath.Join(dir, "x")) // will disappear or have an error
    	touch(t, filepath.Join(dir, "good2"))
    	readDir := func() ([]FileInfo, error) {
    		d, err := Open(dir)
    		if err != nil {
    			t.Fatal(err)
    		}
    		defer d.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            expected.add("maven-it-plugin-log-file");
            expected.add("maven-it-plugin-expression");
            expected.add("maven-it-plugin-fork");
            expected.add("maven-it-plugin-touch");
    
            List<String> actual = new ArrayList<>();
            @SuppressWarnings("unchecked")
            List<Plugin> plugins = (List<Plugin>) pom.getValue("build/plugins");
            for (Plugin plugin : plugins) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

                if (!leakDetectorJar.exists()) {
                    // Need to download the jar
                    GFileUtils.parentMkdirs(leakDetectorJar);
                    GFileUtils.touch(leakDetectorJar);
                    try (OutputStream out = Files.newOutputStream(leakDetectorJar.toPath());
                         InputStream in = new URL(leakDetectorUrl).openStream()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      llvm::SmallDenseMap<int64_t, ResourceArgUseInfo> result;
      for (const auto& entry : infos0) {
        auto info1_it = infos1.find(entry.getFirst());
        // If the entry is missing in any input, we should not touch this entry.
        if (info1_it == infos1.end()) continue;
        auto& info = result[entry.getFirst()];
        info = entry.getSecond();
        if (info.updated) continue;
        if (info1_it->getSecond().used) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    		enteredMarkAssistForTracing = true
    	}
    
    	// Perform assist work
    	systemstack(func() {
    		gcAssistAlloc1(gp, scanWork)
    		// The user stack may have moved, so this can't touch
    		// anything on it until it returns from systemstack.
    	})
    
    	completed := gp.param != nil
    	gp.param = nil
    	if completed {
    		gcMarkDone()
    	}
    
    	if gp.gcAssistBytes < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * link:{javadocPath}/org/gradle/api/provider/ListProperty.html[ListProperty] no longer extends link:{javadocPath}/org/gradle/api/provider/Property.html[Property].
    
    [[changes_4.4]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client_test.go

    		cache.Put(keys[i], &cs[i])
    	}
    	for i := 0; i < 2; i++ {
    		if s, ok := cache.Get(keys[i]); ok || s != nil {
    			t.Fatalf("session cache should have evicted key: %s", keys[i])
    		}
    	}
    
    	// Touch entry 2. LRU should evict 3 next.
    	cache.Get(keys[2])
    	cache.Put(keys[0], &cs[0])
    	if s, ok := cache.Get(keys[3]); ok || s != nil {
    		t.Fatalf("session cache should have evicted key 3")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. src/runtime/pprof/pprof_test.go

    		// Use smaller heap for Windows/ARM to avoid crash.
    		heap = 100 << 20
    	}
    	if testing.Short() {
    		heap = 100 << 20
    	}
    	// This makes fork slower.
    	garbage := make([]byte, heap)
    	// Need to touch the slice, otherwise it won't be paged in.
    	done := make(chan bool)
    	go func() {
    		for i := range garbage {
    			garbage[i] = 42
    		}
    		done <- true
    	}()
    	<-done
    
    	var prof bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top