Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 796 for copiedS (0.14 sec)

  1. 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)
  2. src/cmd/go/internal/modcmd/vendor.go

    			break
    		}
    		pkg = path.Dir(pkg)
    		dst = filepath.Dir(dst)
    		src = filepath.Dir(src)
    	}
    }
    
    // metaPrefixes is the list of metadata file prefixes.
    // Vendoring copies metadata files from parents of copied directories.
    // Note that this list could be arbitrarily extended, and it is longer
    // in other tools (such as godep or dep). By using this limited set of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/types.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package atomic
    
    import "unsafe"
    
    // Int32 is an atomically accessed int32 value.
    //
    // An Int32 must not be copied.
    type Int32 struct {
    	noCopy noCopy
    	value  int32
    }
    
    // Load accesses and returns the value atomically.
    //
    //go:nosplit
    func (i *Int32) Load() int32 {
    	return Loadint32(&i.value)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathIntegrationSpec.groovy

            then:
            succeeds("showBuildscript")
            // A jar coming from some file repo is copied into the transformation cache and served from there.
            inArtifactTransformCache("test-1.3-BUILD-SNAPSHOT.jar")
            // A jar coming from remote repo is cached in the global modules cache and served from there.
            // It isn't copied into the transformation cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:47 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. pkg/file/file_test.go

    		t.Fatal(err)
    	}
    	f, err := os.Open(filepath.Join(d, "out"))
    	if err != nil {
    		t.Fatal(err)
    	}
    	m, _ := f.Stat()
    	// Mode should be copied
    	assert.Equal(t, m.Mode(), 0o750)
    
    	body, _ := io.ReadAll(f)
    	// Contents should be copied
    	assert.Equal(t, body, []byte("hello world"))
    }
    
    func TestCopy(t *testing.T) {
    	copyTest(t, Copy)
    }
    
    func TestAtomicCopy(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 19:10:54 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DuplicateHandlingCopyActionExecutorTest.groovy

            outputEventListener.toString().contains("[WARN] [org.gradle.api.internal.file.copy.DuplicateHandlingCopyActionDecorator] file 'path/file1.txt' will be copied to '/root/path/file1.txt', overwriting file 'path/file1.txt', which has already been copied there.")
        }
    
    
        def duplicatesWarnByPerFileConfiguration() {
            given:
            files 'path/file1.txt', 'path/file2.txt', 'path/file1.txt'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 14:30:00 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/compose.go

    		}
    	}
    }
    
    // ClearVariants removes any variants previously added, including those
    // copied from a Tag in SetTag.
    func (b *Builder) ClearVariants() {
    	b.variants = b.variants[:0]
    }
    
    // ClearExtensions removes any extensions previously added, including those
    // copied from a Tag in SetTag.
    func (b *Builder) ClearExtensions() {
    	b.private = ""
    	b.extensions = b.extensions[:0]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. pkg/kube/inject/openshift.go

    	if len(blocks) == 0 {
    		return nil, fmt.Errorf("no blocks parsed from annotation %s", groups)
    	}
    	return blocks, nil
    }
    
    // Functions below were copied from
    // https://github.com/openshift/library-go/blob/561433066966536ac17f3c9852d7d85f7b7e1e36/pkg/security/uid/uid.go
    // Copied here to avoid bringing tons of dependencies
    // License is Apache 2.0: https://github.com/openshift/library-go/blob/561433066966536ac17f3c9852d7d85f7b7e1e36/LICENSE
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 19:10:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. testing/performance/docs/performance-bisect.md

    All files from ~/.gradle-bisect-override will be copied to the working directory. Make changes to files under that directory since the script will reset any changes.
    This means that all the files we modified before should be copied into this directory.
    
    usage:
    
    ```bash
    mkdir ~/.gradle-bisect-override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/Specs.java

    import java.util.Collection;
    import java.util.List;
    
    /**
     * This interface is copied and trimmed from org.gradle.api.specs.Spec because older versions of Tooling API have issues with
     * the original due to different versions of classes loaded.
     *
     */
    interface Spec<T> {
        boolean isSatisfiedBy(T element);
    }
    
    /**
     * This class is copied and trimmed from org.gradle.api.specs.Specs because older versions of Tooling API have issues with
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top