Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 653 for copied32 (0.17 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/OverlayNodeOrigin.kt

        /**
         * The node is copied as-is from the underlay. The [documentNode] is the node itself.
         */
        data class FromUnderlay(val documentNode: DeclarativeDocument.DocumentNode) : CopiedOrigin
    
        /**
         * The node is copied as-is from the overlay. The [documentNode] is the node itself.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. cni/pkg/install/binaries.go

    	"os"
    	"path/filepath"
    
    	"istio.io/istio/pkg/file"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // Copies/mirrors any files present in a single source dir to N number of target dirs
    // and returns a set of the filenames copied.
    func copyBinaries(srcDir string, targetDirs []string) (sets.String, error) {
    	copiedFilenames := sets.String{}
    	srcFiles, err := os.ReadDir(srcDir)
    	if err != nil {
    		return copiedFilenames, err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 19:10:54 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. pkg/volume/metrics_cached.go

    		md.resultMetrics, md.resultError = md.wrapped.GetMetrics()
    		return md.resultError
    	})
    	return md.resultMetrics, md.resultError
    }
    
    // Copied from sync.Once but we don't want to cache the results if there is an
    // error
    type cacheOnce struct {
    	m    sync.Mutex
    	done uint32
    }
    
    // Copied from sync.Once but we don't want to cache the results if there is an
    // error
    func (o *cacheOnce) cache(f func() error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/resources/org/gradle/api/tasks/copyTestResources/src/one/ignore/bad.file

    this should not be copied...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 15 21:14:41 UTC 2012
    - 25 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            p1.exclude p1Exclude
            p2.exclude p2Exclude
    
            when:
            def copied = child.copyRecursive()
    
            then:
            copied.excludeRules.size() == 2
            copied.excludeRules.collect { [group: it.group, module: it.module] }.sort { it.group } == [p1Exclude, p2Exclude]
        }
    
        def "copied configuration has own instance of resolution strategy"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/Atomics.java

      }
    
      /**
       * Creates an {@code AtomicReferenceArray} instance with the same length as, and all elements
       * copied from, the given array.
       *
       * @param array the array to copy elements from
       * @return a new {@code AtomicReferenceArray} copied from the given array
       */
      public static <E extends @Nullable Object> AtomicReferenceArray<E> newReferenceArray(E[] array) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 20 10:45:35 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/Atomics.java

      }
    
      /**
       * Creates an {@code AtomicReferenceArray} instance with the same length as, and all elements
       * copied from, the given array.
       *
       * @param array the array to copy elements from
       * @return a new {@code AtomicReferenceArray} copied from the given array
       */
      public static <E extends @Nullable Object> AtomicReferenceArray<E> newReferenceArray(E[] array) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 20 10:45:35 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/resources/org/gradle/api/tasks/copyTestResources/src/two/ignore/bad.file

    this should not be copied...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 15 21:14:41 UTC 2012
    - 25 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top