Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 111 for copyFn (0.26 sec)

  1. src/runtime/mprof.go

    	return threadCreateProfileInternal(len(p), func(r profilerecord.StackRecord) {
    		copy(p[0].Stack0[:], r.Stack)
    		p = p[1:]
    	})
    }
    
    // threadCreateProfileInternal returns the number of records n in the profile.
    // If there are less than size records, copyFn is invoked for each record, and
    // ok returns true.
    func threadCreateProfileInternal(size int, copyFn func(profilerecord.StackRecord)) (n int, ok bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableSortedMap.java

      }
    
      /**
       * Not supported. Use {@code ImmutableSortedMap.copyOf(ImmutableMap.ofEntries(...))}.
       *
       * @deprecated Use {@code ImmutableSortedMap.copyOf(ImmutableMap.ofEntries(...))}.
       */
      @DoNotCall("ImmutableSortedMap.ofEntries not currently available; use ImmutableSortedMap.copyOf")
      @Deprecated
      @SafeVarargs
      public static <K, V> ImmutableSortedMap<K, V> ofEntries(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

      }
    
      /**
       * Not supported. Use {@code ImmutableSortedMap.copyOf(ImmutableMap.ofEntries(...))}.
       *
       * @deprecated Use {@code ImmutableSortedMap.copyOf(ImmutableMap.ofEntries(...))}.
       */
      @DoNotCall("ImmutableSortedMap.ofEntries not currently available; use ImmutableSortedMap.copyOf")
      @Deprecated
      @SafeVarargs
      public static <K, V> ImmutableSortedMap<K, V> ofEntries(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/copy-with-flat-filter-example.png

    copy-with-flat-filter-example.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 16:19:30 UTC 2024
    - 62.8K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            when:
            run 'copy'
    
            then:
            skipped(':copy')
            file('dest/a.txt').text == "1,2"
    
            when:
            file('files/a.txt').text = "\${one} + \${two}"
            run 'copy'
    
            then:
            executedAndNotSkipped(':copy')
            file('dest/a.txt').text == "1 + 2"
        }
    
        def "can expand tokens with escaped backslash when copying"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/copy-with-deep-filter-example.png

    copy-with-deep-filter-example.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 16:19:30 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    include::sample[dir="snippets/files/copy/kotlin",files="build.gradle.kts[tags=copy-single-file-example]"]
    include::sample[dir="snippets/files/copy/groovy",files="build.gradle[tags=copy-single-file-example]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  8. src/os/os_test.go

    	t.Parallel()
    
    	// Test with disk filesystem.
    	forceMFTUpdateOnWindows(t, "./testdata/dirfs")
    	fsys := DirFS("./testdata/dirfs")
    	tmpDir := t.TempDir()
    	if err := CopyFS(tmpDir, fsys); err != nil {
    		t.Fatal("CopyFS:", err)
    	}
    	forceMFTUpdateOnWindows(t, tmpDir)
    	tmpFsys := DirFS(tmpDir)
    	if err := fstest.TestFS(tmpFsys, "a", "b", "dir/x"); err != nil {
    		t.Fatal("TestFS:", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Sets.java

          for (Set<? extends E> set : sets) {
            ImmutableSet<E> copy = ImmutableSet.copyOf(set);
            if (copy.isEmpty()) {
              return ImmutableSet.of();
            }
            axesBuilder.add(copy);
          }
          final ImmutableList<ImmutableSet<E>> axes = axesBuilder.build();
          ImmutableList<List<E>> listAxes =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/Futures.java

        ListenableFuture<? extends T>[] copy = gwtCompatibleToArray(futures);
        final InCompletionOrderState<T> state = new InCompletionOrderState<>(copy);
        ImmutableList.Builder<AbstractFuture<T>> delegatesBuilder =
            ImmutableList.builderWithExpectedSize(copy.length);
        for (int i = 0; i < copy.length; i++) {
          delegatesBuilder.add(new InCompletionOrderFuture<T>(state));
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
Back to top