Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NewTiles (0.12 sec)

  1. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    	return NodeHash(tileHash(data[:n]), tileHash(data[n:]))
    }
    
    // NewTiles returns the coordinates of the tiles of height h ≥ 1
    // that must be published when publishing from a tree of
    // size newTreeSize to replace a tree of size oldTreeSize.
    // (No tiles need to be published for a tree of size zero.)
    //
    // If h ≤ 0, NewTiles panics.
    func NewTiles(h int, oldTreeSize, newTreeSize int64) []Tile {
    	if h <= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. hack/boilerplate/boilerplate.py

    ]
    
    
    def normalize_files(files):
        newfiles = []
        for pathname in files:
            if any(x in pathname for x in skipped_names):
                continue
            newfiles.append(pathname)
        for i, pathname in enumerate(newfiles):
            if not os.path.isabs(pathname):
                newfiles[i] = os.path.join(args.rootdir, pathname)
        return newfiles
    
    
    def get_files(extensions):
        files = []
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/DefaultDeleterTest.groovy

            def triedToDelete = [] as Set<File>
            def newFiles = tooManyRange.collect { targetDir.file("aaa-${it}-aaa.txt") }
            deleter = FileTime.deleterWithDeletionAction() { file ->
                triedToDelete << file
                newFiles.each { FileTime.createNewFile(it) }
                return DeletionAction.FAILURE
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 12:40:48 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollection.java

            if (newItems == null) {
                return this;
            }
            DefaultConfigurableFileCollection newFiles = new DefaultConfigurableFileCollection(null, resolver, dependencyFactory, patternSetFactory, host);
            newFiles.from(newItems);
            return newFiles;
        }
    
        private void assertMutable() {
            valueState.beforeMutate(this::displayNameForThisCollection);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top