Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 343 for AdTest (0.1 sec)

  1. maven-core/src/test/java/org/apache/maven/repository/TestRepositoryConnector.java

                    File remoteFile = new File(basedir, path(download.getArtifact()));
                    try {
                        Path dest = download.getPath();
                        Files.createDirectories(dest.getParent());
                        Files.copy(remoteFile.toPath(), dest);
                    } catch (IOException e) {
                        if (!remoteFile.exists()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. tools/packaging/packaging.mk

    ISTIO_DEB_DEST:=${ISTIO_DEB_BIN}/istio-start.sh \
    		/lib/systemd/system/istio.service \
    		/var/lib/istio/envoy/sidecar.env
    
    $(foreach DEST,$(ISTIO_DEB_DEST),\
            $(eval ${TARGET_OUT_LINUX}/istio-sidecar.deb:   tools/packaging/common/$(notdir $(DEST))) \
            $(eval SIDECAR_FILES+=${REPO_ROOT}/tools/packaging/common/$(notdir $(DEST))=$(DEST)))
    
    SIDECAR_FILES+=${REPO_ROOT}/tools/packaging/common/envoy_bootstrap.json=/var/lib/istio/envoy/envoy_bootstrap_tmpl.json
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 19:54:32 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. cluster/images/etcd/migrate/util_others.go

    limitations under the License.
    */
    
    package main
    
    import (
    	"github.com/mrunalp/fileutils"
    )
    
    func copyDirectory(source string, dest string) error {
    	return fileutils.CopyDirectory(source, dest)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 772 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/configurationCache/problemsFixedReuse/tests/configurationCacheProblemsFixedReuse.sample.conf

    commands: [{
      executable: gradle
      args: "--rerun-tasks someTask -DsomeDestination=dest"
      expected-output-file: store.out
      allow-additional-output: true
    }, {
      executable: gradle
      args: "--rerun-tasks someTask -DsomeDestination=dest"
      expected-output-file: load.out
      allow-additional-output: true
    }, {
       executable: gradle
       args: "--rerun-tasks someTask -DsomeDestination=another"
       expected-output-file: load-another.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 469 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/configurationCache/problemsFixed/tests/configurationCacheProblemsFixed.sample.conf

    commands: [{
      executable: gradle
      args: "--rerun-tasks someTask -DsomeDestination=dest"
      expected-output-file: store.out
      allow-additional-output: true
    }, {
      executable: gradle
      args: "--rerun-tasks someTask -DsomeDestination=dest"
      expected-output-file: load.out
      allow-additional-output: true
    }, {
       executable: gradle
       args: "--rerun-tasks someTask -DsomeDestination=another"
       expected-output-file: store-another.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 470 bytes
    - Viewed (0)
  6. guava/src/com/google/common/hash/HashCode.java

      /**
       * Copies bytes from this hash code into {@code dest}.
       *
       * @param dest the byte array into which the hash code will be written
       * @param offset the start offset in the data
       * @param maxLength the maximum number of bytes to write
       * @return the number of bytes written to {@code dest}
       * @throws IndexOutOfBoundsException if there is not enough room in {@code dest}
       */
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/result/DefaultResourceAwareResolveResultTest.groovy

            def src = new DefaultResourceAwareResolveResult()
            src.attempted("a")
            src.attempted("b")
            def dest = new DefaultResourceAwareResolveResult()
    
            when:
            src.applyTo(dest)
    
            then:
            dest.attempted == ["a", "b"]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/conversion/converter.go

    func (c *Converter) Convert(src, dest interface{}, meta *Meta) error {
    	pair := typePair{reflect.TypeOf(src), reflect.TypeOf(dest)}
    	scope := &scope{
    		converter: c,
    		meta:      meta,
    	}
    
    	// ignore conversions of this type
    	if _, ok := c.ignoredUntypedConversions[pair]; ok {
    		return nil
    	}
    	if fn, ok := c.conversionFuncs.untyped[pair]; ok {
    		return fn(src, dest, scope)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueCollector.java

    import javax.annotation.Nullable;
    
    public interface ValueCollector<T> {
        void add(@Nullable T value, ImmutableCollection.Builder<T> dest);
    
        void addAll(Iterable<? extends T> values, ImmutableCollection.Builder<T> dest);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 944 bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/streams/DefaultValueStoreTest.groovy

            def block2 = write("test 2")
    
            def copy1 = storeAndLoad(block1)
            def copy2 = storeAndLoad(block2)
    
            def dest = store()
            dest.read(copy2) == "test 2"
            dest.read(copy1) == "test 1"
    
            cleanup:
            dest?.close()
        }
    
        def "does not overwrite blocks written by previous instances"() {
            expect:
            def block1 = write("test 1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top