Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for strictable (0.16 sec)

  1. src/debug/pe/symbol.go

    // in COFF string table st instead.
    func (sym *COFFSymbol) FullName(st StringTable) (string, error) {
    	if ok, offset := isSymNameOffset(sym.Name); ok {
    		return st.String(offset)
    	}
    	return cstring(sym.Name[:]), nil
    }
    
    func removeAuxSymbols(allsyms []COFFSymbol, st StringTable) ([]*Symbol, error) {
    	if len(allsyms) == 0 {
    		return nil, nil
    	}
    	syms := make([]*Symbol, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. src/internal/xcoff/file.go

    type FileHeader struct {
    	TargetMachine uint16
    }
    
    // A File represents an open XCOFF file.
    type File struct {
    	FileHeader
    	Sections     []*Section
    	Symbols      []*Symbol
    	StringTable  []byte
    	LibraryPaths []string
    
    	closer io.Closer
    }
    
    // Open opens the named file using os.Open and prepares it for use as an XCOFF binary.
    func Open(name string) (*File, error) {
    	f, err := os.Open(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/rc/WindowsResourcesIntegrationTest.groovy

                }
            }
        }
    }
    """
    
            and:
            file("src/resources/rc/resources.rc") << """
                #include "resources.h"
    
                STRINGTABLE
                {
                    IDS_HELLO, "Hello!"
                }
            """
    
            and:
            file("src/resources/headers/resources.h") << """
                #define IDS_HELLO    111
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. src/debug/pe/section.go

    }
    
    // fullName finds real name of section sh. Normally name is stored
    // in sh.Name, but if it is longer then 8 characters, it is stored
    // in COFF string table st instead.
    func (sh *SectionHeader32) fullName(st StringTable) (string, error) {
    	if sh.Name[0] != '/' {
    		return cstring(sh.Name[:]), nil
    	}
    	i, err := strconv.Atoi(cstring(sh.Name[1:]))
    	if err != nil {
    		return "", err
    	}
    	return st.String(uint32(i))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/xcoff.go

    	/* C_FILE */
    	s := &XcoffSymEnt64{
    		Noffset: uint32(f.stringTable.add(".file")),
    		Nsclass: C_FILE,
    		Nscnum:  N_DEBUG,
    		Ntype:   0, // Go isn't inside predefined language.
    		Nnumaux: 1,
    	}
    	f.addSymbol(s)
    	currSymSrcFile.file = s
    
    	// Auxiliary entry for file name.
    	auxf := &XcoffAuxFile64{
    		Xoffset:  uint32(f.stringTable.add(name)),
    		Xftype:   XFT_FN,
    		Xauxtype: _AUX_FILE,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/rc/WindowsResourcesIncrementalBuildIntegrationTest.groovy

            then:
            allSkipped()
        }
    
        def "compiles and links when resource source changes"() {
            when:
            file("src/main/rc/resources.rc").text = """
    #include "hello.h"
    
    STRINGTABLE
    {
        IDS_HELLO, "Goodbye"
    }
    """
    
            and:
            run "mainExecutable"
    
            then:
            executedAndNotSkipped ":compileMainExecutableMainRc", ":linkMainExecutable", ":mainExecutable"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loadpe/ldpe.go

    			}
    			pesym := &f.COFFSymbols[r.SymbolTableIndex]
    			_, gosym, err := state.readpesym(pesym)
    			if err != nil {
    				return nil, err
    			}
    			if gosym == 0 {
    				name, err := pesym.FullName(f.StringTable)
    				if err != nil {
    					name = string(pesym.Name[:])
    				}
    				return nil, fmt.Errorf("reloc of invalid sym %s idx=%d type=%d", name, r.SymbolTableIndex, pesym.Type)
    			}
    
    			rSym := gosym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  8. mockwebserver/README.md

    MockWebServer
    =============
    
    A scriptable web server for testing HTTP clients
    
    
    ### Motivation
    
    This library makes it easy to test that your app Does The Right Thing when it
    makes HTTP and HTTPS calls. It lets you specify which responses to return and
    then verify that requests were made as expected.
    
    Because it exercises your full HTTP stack, you can be confident that you're
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. src/internal/trace/generation.go

    }
    
    // addStrings takes a batch whose first byte is an EvStrings event
    // (indicating that the batch contains only strings) and adds each
    // string contained therein to the provided strings map.
    func addStrings(stringTable *dataTable[stringID, string], b batch) error {
    	if !b.isStringsBatch() {
    		return fmt.Errorf("internal error: addStrings called on non-string batch")
    	}
    	r := bytes.NewReader(b.data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/http2/hpack/static_table.go

    // go generate gen.go
    // Code generated by the command above; DO NOT EDIT.
    
    package hpack
    
    var staticTable = &headerFieldTable{
    	evictCount: 0,
    	byName: map[string]uint64{
    		":authority":                  1,
    		":method":                     3,
    		":path":                       5,
    		":scheme":                     7,
    		":status":                     14,
    		"accept-charset":              15,
    		"accept-encoding":             16,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 8.7K bytes
    - Viewed (0)
Back to top