Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for fileTests (0.13 sec)

  1. src/debug/plan9obj/file_test.go

    // license that can be found in the LICENSE file.
    
    package plan9obj
    
    import (
    	"reflect"
    	"testing"
    )
    
    type fileTest struct {
    	file     string
    	hdr      FileHeader
    	sections []*SectionHeader
    }
    
    var fileTests = []fileTest{
    	{
    		"testdata/386-plan9-exec",
    		FileHeader{Magic386, 0x324, 0x14, 4, 0x1000, 32},
    		[]*SectionHeader{
    			{"text", 0x4c5f, 0x20},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  2. src/internal/xcoff/file_test.go

    // license that can be found in the LICENSE file.
    
    package xcoff
    
    import (
    	"reflect"
    	"testing"
    )
    
    type fileTest struct {
    	file     string
    	hdr      FileHeader
    	sections []*SectionHeader
    	needed   []string
    }
    
    var fileTests = []fileTest{
    	{
    		"testdata/gcc-ppc32-aix-dwarf2-exec",
    		FileHeader{U802TOCMAGIC},
    		[]*SectionHeader{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 10 18:52:31 UTC 2018
    - 3K bytes
    - Viewed (0)
  3. apache-maven/src/assembly/src.xml

              xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd">
      <id>src</id>
      <formats>
        <format>zip</format>
        <format>tar.gz</format>
      </formats>
      <fileSets>
        <fileSet>
          <directory>${project.basedir}/..</directory>
          <outputDirectory>/</outputDirectory>
          <excludes>
            <exclude>%regex[(?!((?!target/)[^/]+/)*src/).*target.*]</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 27 13:14:24 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. src/main/assemblies/common-bin.xml

    			<useProjectArtifact>true</useProjectArtifact>
    			<unpack>true</unpack>
    			<includes>
    				<include>org.codelibs.fess:fess</include>
    			</includes>
    		</dependencySet>
    	</dependencySets>
    	<fileSets>
    		<fileSet>
    			<filtered>true</filtered>
    			<directory>src/main/assemblies/files</directory>
    			<outputDirectory>fess-${project.version}/bin</outputDirectory>
    			<lineEnding>dos</lineEnding>
    			<includes>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 17 02:29:43 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  5. apache-maven/src/assembly/component.xml

          <outputDirectory>lib</outputDirectory>
          <excludes>
            <exclude>org.codehaus.plexus:plexus-classworlds</exclude>
          </excludes>
        </dependencySet>
      </dependencySets>
      <fileSets>
        <fileSet>
          <includes>
            <include>README*</include>
          </includes>
        </fileSet>
        <fileSet>
          <directory>target/maven-shared-archive-resources/META-INF</directory>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Jun 04 19:03:41 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. src/go/token/serialize_test.go

    		return gob.NewDecoder(&buf).Decode(x)
    	}
    	if err := q.Read(decode); err != nil {
    		t.Errorf("reading fileset failed: %s", err)
    		return
    	}
    	if err := equal(p, q); err != nil {
    		t.Errorf("filesets not identical: %s", err)
    	}
    }
    
    func TestSerialization(t *testing.T) {
    	p := NewFileSet()
    	checkSerialize(t, p)
    	// add some files
    	for i := 0; i < 10; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 17 15:02:55 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/FileCollection.java

         * the given node name. The patterns are added using 'include' and 'exclude' nodes.</li>
         *
         * <li>{@link AntType#FileSet}: adds this collection as zero or more Ant FileSets with the given node name.</li>
         *
         * <li>{@link AntType#ResourceCollection}: adds this collection as zero or more Ant ResourceCollections with the
         * given node name.</li>
         *
         * </ul>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 15:51:59 UTC 2021
    - 8.3K bytes
    - Viewed (0)
Back to top