Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,314 for copiedS (0.14 sec)

  1. tools/docker-builder/crane.go

    // env vars, etc) as well as all files that should be copied in. Notably, RUN is not supported. This
    // is not a problem for Istio, as all of our images do any building outside the docker context
    // anyway.
    //
    // Once we have determined the config, we use the go-containerregistry to apply this config on top of
    // the configured base image, and add a new layer for all the copies. This layer is constructed in a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/collections/SortedSetElementSource.java

            if (!pending.isEmpty()) {
                List<Collectors.TypedCollector<T>> copied = Lists.newArrayList(pending);
                realize(copied);
            }
        }
    
        @Override
        public void realizePending(Class<?> type) {
            if (!pending.isEmpty()) {
                List<Collectors.TypedCollector<T>> copied = new ArrayList<>();
                for (Collectors.TypedCollector<T> collector : pending) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    * Specify which files (and potentially directories) to copy
    * Specify a destination for the copied files
    
    But this apparent simplicity hides a rich API that allows fine-grained control of which files are copied, where they go, and what happens to them as they are copied — renaming of the files and token substitution of file content are both possibilities, for example.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/go/testdata/script/mod_perm.txt

    # go list should work in ordinary conditions.
    go list ./...
    ! stdout _data
    
    # skip in conditions where chmod 0 may not work.
    # plan9 should be fine, but copied from list_perm.txt unchanged.
    [root] skip
    [GOOS:windows] skip
    [GOOS:plan9] skip
    
    # go list should work with unreadable _data directory.
    chmod 0 _data
    go list ./...
    ! stdout _data
    
    -- go.mod --
    module m
    
    -- x.go --
    package m
    
    -- _data/x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 412 bytes
    - Viewed (0)
  6. src/compress/flate/deflatefast.go

    	// sLimit is when to stop looking for offset/length copies. The inputMargin
    	// lets us use a fast path for emitLiteral in the main loop, while we are
    	// looking for copies.
    	sLimit := int32(len(src) - inputMargin)
    
    	// nextEmit is where in src the next emitLiteral should start from.
    	nextEmit := int32(0)
    	s := int32(0)
    	cv := load32(src, s)
    	nextHash := hash(cv)
    
    	for {
    		// Copied from the C++ snappy implementation:
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 19 18:48:17 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  7. src/runtime/memmove_linux_amd64_test.go

    	}
    
    	s := unsafe.Slice((*byte)(unsafe.Pointer(base)), 3<<30)
    	n := copy(s[1:], s)
    	if n != 3<<30-1 {
    		t.Fatalf("copied %d bytes, expected %d", n, 3<<30-1)
    	}
    	n = copy(s, s[1:])
    	if n != 3<<30-1 {
    		t.Fatalf("copied %d bytes, expected %d", n, 3<<30-1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:48:30 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. 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)
  9. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/FileCopyAction.java

                File target = fileResolver.resolve(details.getRelativePath().getPathString());
                renameIfCaseChanged(target);
                boolean copied = details.copyTo(target);
                if (copied) {
                    didWork = true;
                }
            }
    
            private void renameIfCaseChanged(File target) {
                if (target.exists()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 17:00:04 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  10. 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)
Back to top