Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 635 for copyref (0.18 sec)

  1. src/runtime/memmove_test.go

    		for x := 0; x <= size-n; x = x*7 + 1 { // offset in src
    			for y := 0; y <= size-n; y = y*9 + 1 { // offset in dst
    				// Reset input
    				copyref(test, src)
    				copyref(ref, src)
    				copy(test[y:y+n], test[x:x+n])
    				if y <= x {
    					copyref(ref[y:y+n], ref[x:x+n])
    				} else {
    					copybw(ref[y:y+n], ref[x:x+n])
    				}
    				p := cmpb(test, ref)
    				if p >= 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/compile/internal/test/testdata/gen/copyGen.go

    import (
    	"bytes"
    	"fmt"
    	"go/format"
    	"log"
    	"os"
    )
    
    // This program generates tests to verify that copying operations
    // copy the data they are supposed to and clobber no adjacent values.
    
    // run as `go run copyGen.go`.  A file called copy.go
    // will be written into the parent directory containing the tests.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/model/ReportConfiguration.java

            this.type = type;
            this.lenientErrors = ImmutableList.copyOf(lenientErrors);
            this.attributes = ImmutableList.copyOf(attributes);
            this.capabilities = ImmutableList.copyOf(capabilities);
            this.artifacts = ImmutableList.copyOf(artifacts);
            this.variants = ImmutableList.copyOf(variants);
            this.extendedConfigurations = ImmutableList.copyOf(extendedConfigurations);
        }
    
        public String getName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 17:16:59 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  4. src/runtime/slice.go

    		tomem = et.Size_ * uintptr(tolen)
    		copymem = tomem
    	}
    
    	var to unsafe.Pointer
    	if !et.Pointers() {
    		to = mallocgc(tomem, nil, false)
    		if copymem < tomem {
    			memclrNoHeapPointers(add(to, copymem), tomem-copymem)
    		}
    	} else {
    		// Note: can't use rawmem (which avoids zeroing of memory), because then GC can scan uninitialized memory.
    		to = mallocgc(tomem, et, true)
    		if copymem > 0 && writeBarrier.enabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultModelRepositoryHolder.java

            this.externalRepositories = List.copyOf(externalRepositories);
            this.repositories = List.copyOf(externalRepositories);
            this.ids = new HashSet<>();
        }
    
        protected DefaultModelRepositoryHolder(DefaultModelRepositoryHolder holder) {
            this.session = holder.session;
            this.repositoryMerging = holder.repositoryMerging;
            this.pomRepositories = List.copyOf(holder.pomRepositories);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/google/ListGenerators.java

      private ListGenerators() {}
    
      public static class ImmutableListOfGenerator extends TestStringListGenerator {
        @Override
        protected List<String> create(String[] elements) {
          return ImmutableList.copyOf(elements);
        }
      }
    
      public static class BuilderAddListGenerator extends TestStringListGenerator {
        @Override
        protected List<String> create(String[] elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSet.java

        Collections.addAll(all, others);
        return copyOf(all.iterator());
      }
    
      /** ImmutableSet.of API that is friendly to use from JavaScript. */
      @JsMethod(name = "of")
      static <E> ImmutableSet<E> jsOf(E... elements) {
        return copyOf(elements);
      }
    
      @JsMethod
      public static <E> ImmutableSet<E> copyOf(E[] elements) {
        checkNotNull(elements);
        switch (elements.length) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/problems/failure/DefaultFailure.java

            }
    
            this.original = original;
            this.stackTrace = ImmutableList.copyOf(stackTrace);
            this.frameRelevance = ImmutableList.copyOf(frameRelevance);
            this.suppressed = ImmutableList.copyOf(suppressed);
            this.causes = ImmutableList.copyOf(causes);
        }
    
        @Override
        public Class<? extends Throwable> getExceptionType() {
            return original.getClass();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_templates/test_tutorial001.py

        if os.path.isdir("./static"):  # pragma: nocover
            shutil.rmtree("./static")
        if os.path.isdir("./templates"):  # pragma: nocover
            shutil.rmtree("./templates")
        shutil.copytree("./docs_src/templates/templates/", "./templates")
        shutil.copytree("./docs_src/templates/static/", "./static")
        from docs_src.templates.tutorial001 import app
    
        client = TestClient(app)
        response = client.get("/items/foo")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 22:25:37 UTC 2024
    - 910 bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/impl/DefaultTestTaskFilters.java

        ) {
            this.includePatterns = ImmutableSet.copyOf(includePatterns);
            this.commandLineIncludePatterns = ImmutableSet.copyOf(commandLineIncludePatterns);
            this.excludePatterns = ImmutableSet.copyOf(excludePatterns);
            this.includeTags = ImmutableSet.copyOf(includeTags);
            this.excludeTags = ImmutableSet.copyOf(excludeTags);
            this.includeEngines = ImmutableSet.copyOf(includeEngines);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top