Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for COPYING (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ====
    include::sample[dir="snippets/files/fileTrees/kotlin",files="build.gradle.kts[tags=use]"]
    include::sample[dir="snippets/files/fileTrees/groovy",files="build.gradle[tags=use]"]
    ====
    
    == Copying files
    
    Copying files in Gradle primarily uses `CopySpec`, a mechanism that makes it easy to manage resources such as source code, configuration files, and other assets in your project build process.
    
    [[sec:using_the_copyspec_class]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            executedAndNotSkipped(':copy')
            file('dest').assertHasDescendants(
                'a.a',
                'dir/a.a',
                'dir/a.c'
            )
        }
    
        def "can expand tokens when copying"() {
            file('files/a.txt').text = "\$one,\${two}"
            buildScript """
                task copy(type: Copy) {
                    from 'files'
                    into 'dest'
                    expand(one: '1', two: 2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  3. pkg/kubelet/server/server_test.go

    	if err != nil {
    		t.Fatalf("Got error GETing: %v", err)
    	}
    	defer resp.Body.Close()
    
    	body, err := httputil.DumpResponse(resp, true)
    	if err != nil {
    		// copying the response body did not work
    		t.Errorf("Cannot copy resp: %#v", err)
    	}
    	result := string(body)
    	if !strings.Contains(result, "kubelet.log") || !strings.Contains(result, "google.log") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableSortedMap.java

      }
    
      /**
       * Returns an immutable map containing the same entries as {@code map}, sorted by the natural
       * ordering of the keys.
       *
       * <p>Despite the method name, this method attempts to avoid actually copying the data when it is
       * safe to do so. The exact circumstances under which a copy will or will not be performed are
       * undocumented and subject to change.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // about it being private, you have mis-spelled SetUp() as Setup().
      struct Setup_should_be_spelled_SetUp {};
      virtual Setup_should_be_spelled_SetUp* Setup() { return NULL; }
    
      // We disallow copying Tests.
      GTEST_DISALLOW_COPY_AND_ASSIGN_(Test);
    };
    
    typedef internal::TimeInMillis TimeInMillis;
    
    // A copyable object representing a user specified test property which can be
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // about it being private, you have mis-spelled SetUp() as Setup().
      struct Setup_should_be_spelled_SetUp {};
      virtual Setup_should_be_spelled_SetUp* Setup() { return NULL; }
    
      // We disallow copying Tests.
      GTEST_DISALLOW_COPY_AND_ASSIGN_(Test);
    };
    
    typedef internal::TimeInMillis TimeInMillis;
    
    // A copyable object representing a user specified test property which can be
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        }
    
        /**
         * Instead of copying a configuration's roles outright, we allow copied configurations
         * to assume any role. However, any roles which were previously disabled will become
         * deprecated in the copied configuration. In 9.0, we will update this to copy
         * roles and deprecations without modification. Or, better yet, we will remove support
         * for copying configurations altogether.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  8. cmd/bucket-handlers.go

    		}
    	}
    
    	if len(fanOutEntries) > 0 {
    		// Fan-out requires no copying, and must be carried from original source
    		// https://en.wikipedia.org/wiki/Copy_protection so the incoming stream
    		// is always going to be in-memory as we cannot re-read from what we
    		// wrote to disk - since that amounts to "copying" from a "copy"
    		// instead of "copying" from source, we need the stream to be seekable
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

      }
    
      /**
       * Returns an immutable map containing the same entries as {@code map}, sorted by the natural
       * ordering of the keys.
       *
       * <p>Despite the method name, this method attempts to avoid actually copying the data when it is
       * safe to do so. The exact circumstances under which a copy will or will not be performed are
       * undocumented and subject to change.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		// serializations after dispatching this event.
    		//
    		// Given that CachingObject is just wrapping the object and not perfoming
    		// deep-copying (until some field is explicitly being modified), we create
    		// it unconditionally to ensure safety and reduce deep-copying.
    		//
    		// Make a shallow copy to allow overwriting Object and PrevObject.
    		wcEvent := *event
    		setCachingObjects(&wcEvent, c.versioner)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top