Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 184 for filelink (0.3 sec)

  1. src/cmd/link/internal/sym/segment.go

    type Segment struct {
    	Rwx      uint8  // permission as usual unix bits (5 = r-x etc)
    	Vaddr    uint64 // virtual address
    	Length   uint64 // length in memory
    	Fileoff  uint64 // file offset
    	Filelen  uint64 // length on disk
    	Sections []*Section
    }
    
    type Section struct {
    	Rwx     uint8
    	Extnum  int16
    	Align   int32
    	Name    string
    	Vaddr   uint64
    	Length  uint64
    	Seg     *Segment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 16 05:32:52 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. src/cmd/internal/goobj/funcinfo.go

    package goobj
    
    import (
    	"bytes"
    	"encoding/binary"
    	"internal/abi"
    )
    
    // CUFileIndex is used to index the filenames that are stored in the
    // per-package/per-CU FileList.
    type CUFileIndex uint32
    
    // FuncInfo is serialized as a symbol (aux symbol). The symbol data is
    // the binary encoding of the struct below.
    type FuncInfo struct {
    	Args      uint32
    	Locals    uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. src/net/rpc/jsonrpc/client.go

    	// JSON-RPC responses include the request id but not the request method.
    	// Package rpc expects both.
    	// We save the request method in pending when sending a request
    	// and then look it up by request ID when filling out the rpc Response.
    	mutex   sync.Mutex        // protects pending
    	pending map[uint64]string // map request id to method name
    }
    
    // NewClientCodec returns a new [rpc.ClientCodec] using JSON-RPC on conn.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. src/internal/coverage/decodemeta/decode.go

    	return d.strtab.Get(d.hdr.ModulePath)
    }
    
    func (d *CoverageMetaDataDecoder) NumFuncs() uint32 {
    	return d.hdr.NumFuncs
    }
    
    // ReadFunc reads the coverage meta-data for the function with index
    // 'findex', filling it into the FuncDesc pointed to by 'f'.
    func (d *CoverageMetaDataDecoder) ReadFunc(fidx uint32, f *coverage.FuncDesc) error {
    	if fidx >= d.hdr.NumFuncs {
    		return fmt.Errorf("illegal function index")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:28 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. pkg/apis/authorization/types.go

    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // SubjectAccessReview checks whether or not a user or group can perform an action.  Not filling in a
    // spec.namespace means "in all namespaces".
    type SubjectAccessReview struct {
    	metav1.TypeMeta
    	metav1.ObjectMeta
    
    	// Spec holds information about the request being evaluated
    	Spec SubjectAccessReviewSpec
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 08:53:21 UTC 2019
    - 10K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/pe.go

    	if ctxt.LinkMode != LinkExternal {
    		d = pefile.addSection(".data", int(Segdata.Length), int(Segdata.Filelen))
    		d.characteristics = IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_MEM_READ | IMAGE_SCN_MEM_WRITE
    		d.checkSegment(&Segdata)
    		pefile.dataSect = d
    	} else {
    		d = pefile.addSection(".data", int(Segdata.Filelen), int(Segdata.Filelen))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  7. src/log/slog/text_handler.go

    // Otherwise, the key is "level"
    // and the value of [Level.String] is output.
    //
    // If the AddSource option is set and source information is available,
    // the key is "source" and the value is output as FILE:LINE.
    //
    // The message's key is "msg".
    //
    // To modify these or other attributes, or remove them from the output, use
    // [HandlerOptions.ReplaceAttr].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf.go

    	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)
  9. src/cmd/pack/pack_test.go

    	mode:     0644,
    }
    
    // FakeFile implements FileLike and also fs.FileInfo.
    type FakeFile struct {
    	name     string
    	contents string
    	mode     fs.FileMode
    	offset   int
    }
    
    // Reset prepares a FakeFile for reuse.
    func (f *FakeFile) Reset() *FakeFile {
    	f.offset = 0
    	return f
    }
    
    // FileLike methods.
    
    func (f *FakeFile) Name() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 16:27:35 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                                    fileList.add(jspPath);
                                } catch (final IOException ex) {
                                    logger.warn("Could not copy from {} to {}", baseJspFile.getAbsolutePath(), jspFile.getAbsolutePath(), ex);
                                }
                            }
                        });
                    }));
            return fileList;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top