Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 796 for copiedS (0.39 sec)

  1. pilot/pkg/model/fuzz_test.go

    }
    
    type deepCopier[T any] interface {
    	DeepCopy() T
    }
    
    func fuzzDeepCopy[T deepCopier[T]](f test.Fuzzer) {
    	fuzz.Fuzz(f, func(fg fuzz.Helper) {
    		orig := fuzz.Struct[T](fg)
    		copied := orig.DeepCopy()
    		assert.Equal(fg.T(), orig, copied)
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 17:36:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. src/syscall/js/js.go

    	Type   Type
    }
    
    func (e *ValueError) Error() string {
    	return "syscall/js: call of " + e.Method + " on " + e.Type.String()
    }
    
    // CopyBytesToGo copies bytes from src to dst.
    // It panics if src is not a Uint8Array or Uint8ClampedArray.
    // It returns the number of bytes copied, which will be the minimum of the lengths of src and dst.
    func CopyBytesToGo(dst []byte, src Value) int {
    	n, ok := copyBytesToGo(dst, src.ref)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/DefaultDomainObjectCollection.java

            // is empty.
            Collection<T> copied = null;
            for (T t : this) {
                if (copied == null) {
                    copied = Lists.newArrayListWithExpectedSize(estimatedSize());
                }
                copied.add(t);
            }
            if (copied != null) {
                for (T t : copied) {
                    decoratedAction.execute(t);
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/OverlayNodeOrigin.kt

        /**
         * The node is copied as-is from the underlay. The [documentNode] is the node itself.
         */
        data class FromUnderlay(val documentNode: DeclarativeDocument.DocumentNode) : CopiedOrigin
    
        /**
         * The node is copied as-is from the overlay. The [documentNode] is the node itself.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/encoding/json/indent.go

    // at the beginning of src are dropped, trailing space characters
    // at the end of src are preserved and copied to dst.
    // For example, if src has no trailing spaces, neither will dst;
    // if src ends in a trailing newline, so will dst.
    func Indent(dst *bytes.Buffer, src []byte, prefix, indent string) error {
    	dst.Grow(indentGrowthFactor * len(src))
    	b := dst.AvailableBuffer()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:19:31 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DuplicateHandlingCopyActionDecorator.java

                        } else if (strategy == DuplicatesStrategy.WARN) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 14:30:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. android/guava/pom.xml

        </dependency>
      </dependencies>
      <build>
        <resources>
          <resource>
            <directory>..</directory>
            <includes>
              <include>LICENSE</include> <!-- copied from the parent pom because I couldn't figure out a way to make combine.children="append" work -->
              <include>proguard/*</include>
            </includes>
            <targetPath>META-INF</targetPath>
          </resource>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 11 16:37:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. tools/docker-builder/crane.go

    // env vars, etc) as well as all files that should be copied in. Notably, RUN is not supported. This
    // is not a problem for Istio, as all of our images do any building outside the docker context
    // anyway.
    //
    // Once we have determined the config, we use the go-containerregistry to apply this config on top of
    // the configured base image, and add a new layer for all the copies. This layer is constructed in a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/collections/SortedSetElementSource.java

            if (!pending.isEmpty()) {
                List<Collectors.TypedCollector<T>> copied = Lists.newArrayList(pending);
                realize(copied);
            }
        }
    
        @Override
        public void realizePending(Class<?> type) {
            if (!pending.isEmpty()) {
                List<Collectors.TypedCollector<T>> copied = new ArrayList<>();
                for (Collectors.TypedCollector<T> collector : pending) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    * Specify which files (and potentially directories) to copy
    * Specify a destination for the copied files
    
    But this apparent simplicity hides a rich API that allows fine-grained control of which files are copied, where they go, and what happens to them as they are copied — renaming of the files and token substitution of file content are both possibilities, for 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)
Back to top