Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for copy2 (0.09 sec)

  1. subprojects/core/src/main/java/org/gradle/api/tasks/Sync.java

    import org.gradle.api.Action;
    import org.gradle.api.InvalidUserDataException;
    import org.gradle.api.internal.file.copy.CopyAction;
    import org.gradle.api.internal.file.copy.CopySpecInternal;
    import org.gradle.api.internal.file.copy.DestinationRootCopySpec;
    import org.gradle.api.internal.file.copy.FileCopyAction;
    import org.gradle.api.internal.file.copy.SyncCopyActionDecorator;
    import org.gradle.api.tasks.util.PatternFilterable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/cycle_state.go

    	copy.recordPluginMetrics = c.recordPluginMetrics
    	copy.SkipFilterPlugins = c.SkipFilterPlugins
    	copy.SkipScorePlugins = c.SkipScorePlugins
    
    	return copy
    }
    
    // Read retrieves data with the given "key" from CycleState. If the key is not
    // present, ErrNotFound is returned.
    //
    // See CycleState for notes on concurrency.
    func (c *CycleState) Read(key StateKey) (StateData, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 06:48:20 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/google/BiMapInverseTester.java

      public void testInverseSerialization() {
        BiMapPair<K, V> pair = new BiMapPair<>(getMap());
        BiMapPair<K, V> copy = SerializableTester.reserialize(pair);
        assertEquals(pair.forward, copy.forward);
        assertEquals(pair.backward, copy.backward);
        assertSame(copy.backward, copy.forward.inverse());
        assertSame(copy.forward, copy.backward.inverse());
      }
    
      private static class BiMapPair<K, V> implements Serializable {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. pkg/test/echo/docker/Dockerfile.app

    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION}
    
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/client /usr/local/bin/client
    COPY ${TARGETARCH:-amd64}/server /usr/local/bin/server
    COPY certs/cert.crt /cert.crt
    COPY certs/cert.key /cert.key
    
    # Add a user that will run the application. This allows running as this user and capture iptables
    RUN useradd -m --uid 1338 application
    USER 1338
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 490 bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/BinaryNamingScheme.java

        /**
         * Creates a copy of this scheme, replacing the binary type.
         */
        BinaryNamingScheme withBinaryType(String type);
    
        /**
         * Creates a copy of this scheme, specifying a binary name. This overrides the default binary name that would be generated from the other attributes.
         */
        BinaryNamingScheme withBinaryName(String name);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/builtins1.go

    	close(ch)
    }
    
    func _[T C5[X], X any](ch T) {
    	close(ch)
    }
    
    // copy
    
    func _[T any](x, y T) {
    	copy(x /* ERROR "copy expects slice arguments" */ , y)
    }
    
    func _[T ~[]byte](x, y T) {
    	copy(x, y)
    	copy(x, "foo")
    	copy("foo" /* ERROR "expects slice arguments" */ , y)
    
    	var x2 []byte
    	copy(x2, y) // element types are identical
    	copy(y, x2) // element types are identical
    
    	type myByte byte
    	var x3 []myByte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 21:16:29 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/DefaultFileCollectionDependencyTest.groovy

        }
    
        def createsCopy() {
            when:
            DefaultFileCollectionDependency copy = dependency.copy()
    
            then:
            copy.targetComponentId == targetComponent
            copy.files == source
            copy.contentEquals(dependency)
            dependency.contentEquals(copy)
        }
    
        def contentsAreEqualWhenFileSetsAreEqual() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/runtime/pprof/protobuf.go

    	if len(x) > 2 {
    		// Use packed encoding
    		n1 := len(b.data)
    		for _, u := range x {
    			b.varint(u)
    		}
    		n2 := len(b.data)
    		b.length(tag, n2-n1)
    		n3 := len(b.data)
    		copy(b.tmp[:], b.data[n2:n3])
    		copy(b.data[n1+(n3-n2):], b.data[n1:n2])
    		copy(b.data[n1:], b.tmp[:n3-n2])
    		return
    	}
    	for _, u := range x {
    		b.uint64(tag, u)
    	}
    }
    
    func (b *protobuf) uint64Opt(tag int, x uint64) {
    	if x == 0 {
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 20:09:46 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tasks/accessFromTaskContainer/kotlin/build.gradle.kts

    tasks.register("hello")
    tasks.register<Copy>("copy")
    
    println(tasks.named("hello").get().name) // or just 'tasks.hello' if the task was added by a plugin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 211 bytes
    - Viewed (0)
  10. android/guava-tests/benchmark/com/google/common/io/CharStreamsCopyBenchmark.java

            }
            return total;
          }
        },
        NEW {
          @Override
          long copy(Readable from, Appendable to) throws IOException {
            return CharStreams.copy(from, to);
          }
        };
    
        abstract long copy(Readable from, Appendable to) throws IOException;
      }
    
      enum TargetSupplier {
        STRING_WRITER {
          @Override
          Appendable get(int sz) {
            return new StringWriter(sz);
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 18:59:54 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top