Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 282 for fileset (0.17 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

    import org.gradle.test.fixtures.gradle.ArtifactSelectorSpec
    import org.gradle.test.fixtures.gradle.DependencyConstraintSpec
    import org.gradle.test.fixtures.gradle.DependencySpec
    import org.gradle.test.fixtures.gradle.FileSpec
    import org.gradle.test.fixtures.gradle.GradleFileModuleAdapter
    import org.gradle.test.fixtures.gradle.VariantMetadataSpec
    
    class IvyFileModule extends AbstractModule implements IvyModule {
        final String ivyPattern
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    	ph.Memsz = seg.Length
    	ph.Off = seg.Fileoff
    	ph.Filesz = seg.Filelen
    	ph.Align = uint64(*FlagRound)
    
    	return ph
    }
    
    func elfphrelro(seg *sym.Segment) {
    	ph := newElfPhdr()
    	ph.Type = elf.PT_GNU_RELRO
    	ph.Flags = elf.PF_R
    	ph.Vaddr = seg.Vaddr
    	ph.Paddr = seg.Vaddr
    	ph.Memsz = seg.Length
    	ph.Off = seg.Fileoff
    	ph.Filesz = seg.Filelen
    	ph.Align = uint64(*FlagRound)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestTest.groovy

        private Test test
    
        def setup() {
            classesDir = temporaryFolder.createDir("classes")
            File classfile = new File(classesDir, "FileTest.class")
            FileUtils.touch(classfile)
            resultsDir = temporaryFolder.createDir("testResults")
            binResultsDir = temporaryFolder.createDir("binResults")
            reportDir = temporaryFolder.createDir("report")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

      private static URL makeJarUrlWithName(String name) throws IOException {
        /*
         * TODO: cpovirk - Use java.nio.file.Files.createTempDirectory instead of
         * c.g.c.io.Files.createTempDir?
         */
        File fullPath = new File(Files.createTempDir(), name);
        File jarFile = pickAnyJarFile();
        Files.copy(jarFile, fullPath);
        return fullPath.toURI().toURL();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    	Frsize      uint64
    	Bfree       uint64
    	Files       uint32
    	Ffree       uint32
    	Favail      uint32
    	Namemax31   uint32
    	Invarsec    uint32
    	_           [4]byte
    	Fsid        uint64
    	Namemax     uint64
    }
    
    type Statfs_t struct {
    	Type    uint64
    	Bsize   uint64
    	Blocks  uint64
    	Bfree   uint64
    	Bavail  uint64
    	Files   uint32
    	Ffree   uint32
    	Fsid    uint64
    	Namelen uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/xcoff.go

    	segdataFilelen := Segdata.Filelen
    	segdataFileoff := Segdata.Fileoff
    	segbssFilelen := Segdata.Length - Segdata.Filelen
    	if len(Segrelrodata.Sections) > 0 {
    		// Merge relro segment to data segment as
    		// relro data are inside data segment on AIX.
    		segdataVaddr = Segrelrodata.Vaddr
    		segdataFileoff = Segrelrodata.Fileoff
    		segdataFilelen = Segdata.Vaddr + Segdata.Filelen - Segrelrodata.Vaddr
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  7. src/go/printer/testdata/statements.input

                   Y: 2,
           },
                   &T{
                           X: 3,
                           Y: 4,
                   },
                   nil
    }
    
    func _() interface{} {
    	return &fileStat{
    			name:    basename(file.name),
    			size:    mkSize(d.FileSizeHigh, d.FileSizeLow),
    			modTime: mkModTime(d.LastWriteTime),
    			mode:    mkMode(d.FileAttributes),
    			sys:     mkSysFromFI(&d),
    		}, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 8.3K bytes
    - Viewed (0)
  8. pkg/kubelet/kubeletconfig/util/files/files_test.go

    		}
    	} else {
    		return fmt.Errorf("mode not implemented for testing %s", f.mode.String())
    	}
    	return nil
    }
    
    // write files, perform some function, then attempt to read files back
    // if err is non-empty, expects an error from the function performed in the test
    // and skips reading back the expected files
    type test struct {
    	desc    string
    	writes  []file
    	expects []file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 07 11:36:13 UTC 2022
    - 11.7K bytes
    - Viewed (0)
  9. pkg/volume/util/subpath/subpath_linux.go

    		}
    
    		err := unix.Fstat(childFD, &deviceStat)
    		if err != nil {
    			return -1, fmt.Errorf("error running fstat on %s with %v", currentPath, err)
    		}
    		fileFmt := deviceStat.Mode & syscall.S_IFMT
    		if fileFmt == syscall.S_IFLNK {
    			return -1, fmt.Errorf("unexpected symlink found %s", currentPath)
    		}
    
    		// Close parentFD
    		if err = syscall.Close(parentFD); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 14:09:11 UTC 2022
    - 21.4K bytes
    - Viewed (0)
  10. JavadocStyleGuide.md

    ### 1.1.2 HTML
    
    Javadoc permits only a subset of HTML tags: `"a", "abbr", "acronym", "address", "area", "b", "bdo", "big", "blockquote", "br", "caption", "cite", "code", "colgroup", "dd", "del", "dfn", "div", "dl", "dt", "em", "fieldset", "font", "h1", "h2", "h3", "h4", "h5", "h6", "hr", "i", "img", "ins", "kbd", "li", "ol", "p", "pre", "q", "samp", "small", "span", "strong", "sub", "sup", "table", "tbody", "td", "tfoot", "th", "thead", "tr", "tt", "u", "ul", "var"`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top