Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 529 for copiedS (0.26 sec)

  1. src/runtime/memmove_arm64.s

    // srcend R4
    // dstend R5
    // data   R6-R17
    // tmp1   R14
    
    // Copies are split into 3 main cases: small copies of up to 32 bytes, medium
    // copies of up to 128 bytes, and large copies. The overhead of the overlap
    // check is negligible since it is only required for large copies.
    //
    // Large copies use a software pipelined loop processing 64 bytes per iteration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 6K bytes
    - Viewed (0)
  2. src/internal/fuzz/pcg.go

    // necessary methods, optimized for speed.
    
    var globalInc atomic.Uint64 // PCG stream
    
    const multiplier uint64 = 6364136223846793005
    
    // pcgRand is a PRNG. It should not be copied or shared. No Rand methods are
    // concurrency safe.
    type pcgRand struct {
    	noCopy noCopy // help avoid mistakes: ask vet to ensure that we don't make a copy
    	state  uint64
    	inc    uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:28:14 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/copy_windows.go

    limitations under the License.
    */
    
    package util
    
    import (
    	"os/exec"
    )
    
    // CopyDir copies the content of a folder
    func CopyDir(src string, dst string) ([]byte, error) {
    	// /E Copies directories and subdirectories, including empty ones.
    	// /H Copies hidden and system files also.
    	return exec.Command("xcopy", "/E", "/H", src, dst).CombinedOutput()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 03 02:45:12 UTC 2023
    - 926 bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/file/CopyProcessingSpec.java

         * replace string should use the '$1' syntax to refer to capture groups in the source regular expression.  Files
         * that do not match the source regular expression will be copied with the original name.
         *
         * <p> Example:
         * <pre>
         * rename '(.*)_OEM_BLUE_(.*)', '$1$2'
         * </pre>
         * would map the file 'style_OEM_BLUE_.css' to 'style.css'
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 07:53:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/printers/managedfields.go

    	a, err := meta.Accessor(o)
    	if err != nil {
    		// The object is not a `metav1.Object`, ignore it.
    		return o
    	}
    	a.SetManagedFields(nil)
    	return o
    }
    
    // PrintObj copies the object and omits the managed fields from the copied object before printing it.
    func (p *OmitManagedFieldsPrinter) PrintObj(obj runtime.Object, w io.Writer) error {
    	if obj == nil {
    		return p.Delegate.PrintObj(obj, w)
    	}
    	if meta.IsListType(obj) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 16 14:52:03 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/MavenProjectTest.java

            assertEquals("maven-core", clonedProject.getArtifactId());
            Map<?, ?> clonedMap = clonedProject.getManagedVersionMap();
            assertNotNull(clonedMap, "ManagedVersionMap not copied");
            assertTrue(clonedMap.isEmpty(), "ManagedVersionMap is not empty");
        }
    
        @Test
        void testCloneWithDependencyManagement() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/DuplicateFileCopyingException.java

     * limitations under the License.
     */
    
    package org.gradle.api.file;
    
    import org.gradle.api.GradleException;
    
    /**
     * Thrown when more than one file with the same relative path name is to be copied
     * and the {@link DuplicatesStrategy} is set to DuplicatesStrategy.FAIL
     */
    public class DuplicateFileCopyingException extends GradleException {
        public DuplicateFileCopyingException(String desc) {
            super(desc);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 1004 bytes
    - Viewed (0)
  8. licenses/github.com/shopspring/decimal/LICENSE

    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    furnished to do so, subject to the following conditions:
    
    The above copyright notice and this permission notice shall be included in
    all copies or substantial portions of the Software.
    
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 06 22:59:30 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractPathSensitivityIntegrationSpec.groovy

                task test(type: PathSensitiveTask) {
                    outputFile = file("build/output.txt")
                }
            """
        }
    
        def "copy task stays up-to-date after files are moved but end up copied to the same destination"() {
            file("src/data/input.txt").text = "data"
    
            when:
            buildFile << """
                task copy(type: Copy) {
                    outputs.cacheIf { true }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  10. src/cmd/internal/gcprog/gcprog.go

    // The encoding is a simple Lempel-Ziv program, with codes to emit literal bits and to repeat the
    // last n bits c times.
    //
    // The possible codes are:
    //
    //	00000000: stop
    //	0nnnnnnn: emit n bits copied from the next (n+7)/8 bytes, least significant bit first
    //	10000000 n c: repeat the previous n bits c times; n, c are varints
    //	1nnnnnnn c: repeat the previous n bits c times; c is a varint
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 7.4K bytes
    - Viewed (0)
Back to top