Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 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. src/debug/macho/file_test.go

    package macho
    
    import (
    	"bytes"
    	"internal/obscuretestdata"
    	"io"
    	"reflect"
    	"testing"
    )
    
    type fileTest struct {
    	file        string
    	hdr         FileHeader
    	loads       []any
    	sections    []*SectionHeader
    	relocations map[string][]Reloc
    }
    
    var fileTests = []fileTest{
    	{
    		"testdata/gcc-386-darwin-exec.base64",
    		FileHeader{0xfeedface, Cpu386, 0x3, 0x2, 0xc, 0x3c0, 0x85},
    		[]any{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 12.4K bytes
    - Viewed (0)
  4. src/debug/pe/file_test.go

    	"path/filepath"
    	"reflect"
    	"regexp"
    	"runtime"
    	"strconv"
    	"testing"
    	"text/template"
    )
    
    type fileTest struct {
    	file           string
    	hdr            FileHeader
    	opthdr         any
    	sections       []*SectionHeader
    	symbols        []*Symbol
    	hasNoDwarfInfo bool
    }
    
    var fileTests = []fileTest{
    	{
    		file: "testdata/gcc-386-mingw-obj",
    		hdr:  FileHeader{0x014c, 0x000c, 0x0, 0x64a, 0x1e, 0x0, 0x104},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 01 02:25:16 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  5. src/debug/elf/file_test.go

    	"math/rand"
    	"net"
    	"os"
    	"path"
    	"reflect"
    	"runtime"
    	"slices"
    	"strings"
    	"testing"
    )
    
    type fileTest struct {
    	file     string
    	hdr      FileHeader
    	sections []SectionHeader
    	progs    []ProgHeader
    	needed   []string
    	symbols  []Symbol
    }
    
    var fileTests = []fileTest{
    	{
    		"testdata/gcc-386-freebsd-exec",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. security/pkg/nodeagent/cache/secretcache.go

    		return err
    	}
    	key := FileCert{
    		ResourceName: resourceName,
    		Filename:     file,
    	}
    	if _, alreadyWatching := sc.fileCerts[key]; alreadyWatching {
    		cacheLog.Debugf("already watching file for %s", file)
    		// Already watching, no need to do anything
    		return nil
    	}
    	sc.fileCerts[key] = struct{}{}
    	// File is not being watched, start watching now and trigger key push.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  10. apache-maven/pom.xml

                    <configuration>
                      <excludeDefaultDirectories>true</excludeDefaultDirectories>
                      <filesets>
                        <fileset>
                          <directory>${distributionTargetDir}</directory>
                        </fileset>
                      </filesets>
                    </configuration>
                  </execution>
                </executions>
              </plugin>
              <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top