Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for copy2 (0.15 sec)

  1. src/archive/tar/writer.go

    			if sw.physicalRemaining() == 0 {
    				readLastByte = true
    				nf--
    			}
    			_, err = rs.Seek(nf, io.SeekCurrent)
    		} else { // In a data fragment
    			nf = dataEnd - sw.pos
    			nf, err = io.CopyN(sw.fw, rs, nf)
    		}
    		sw.pos += nf
    		if sw.pos >= dataEnd && len(sw.sp) > 1 {
    			sw.sp = sw.sp[1:] // Ensure last fragment always remains
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalInputsIntegrationTest.groovy

            file("input/$toBeModifiedPath").text = "input to copy"
            file("input/${toBeRemovedPath}").text = "input to copy"
    
            when:
            run("copy")
            then:
            executedAndNotSkipped(":copy")
            file("build/output/${normalizedPaths.modified}").text == "input to copy"
            file("build/output/${normalizedPaths.removed}").text == "input to copy"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 12:52:29 UTC 2022
    - 27.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	Traverse(func(AST) bool)
    
    	// Copy an AST with possible transformations.
    	// If the skip function returns true, no copy is required.
    	// If the copy function returns nil, no copy is required.
    	// The Copy method will do the right thing if copy returns nil
    	// for some components of an AST but not others, so a good
    	// copy function will only return non-nil for AST values that
    	// need to change.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top