Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for synthesized (0.16 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    		}
    		if e != ERROR_INSUFFICIENT_BUFFER {
    			return "", "", 0, e
    		}
    		if n <= uint32(len(b)) {
    			return "", "", 0, e
    		}
    	}
    }
    
    // Various types of pre-specified SIDs that can be synthesized and compared at runtime.
    type WELL_KNOWN_SID_TYPE uint32
    
    const (
    	WinNullSid                                    = 0
    	WinWorldSid                                   = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    // each input param reg will be spilled in the prolog). In addition
    // to the register params, here we also build location lists (where
    // appropriate for the ".closureptr" compiler-synthesized variable
    // needed by the debugger for range func bodies.
    func BuildFuncDebugNoOptimized(ctxt *obj.Link, f *Func, loggingEnabled bool, stackOffset func(LocalSlot) int32, rval *FuncDebug) {
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context.go

    type PushContext struct {
    	proxyStatusMutex sync.RWMutex
    	// ProxyStatus is keyed by the error code, and holds a map keyed
    	// by the ID.
    	ProxyStatus map[string]map[string]ProxyPushStatus
    
    	// Synthesized from env.Mesh
    	exportToDefaults exportToDefaults
    
    	// ServiceIndex is the index of services by various fields.
    	ServiceIndex serviceIndex
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/loong64/asm.go

    				q := c.newprog()
    				prev.Link = q
    				q.Link = p
    				q.Pc = pc
    				q.As = obj.APCALIGN
    				q.From.Type = obj.TYPE_CONST
    				q.From.Offset = loopAlign
    				// Don't associate the synthesized PCALIGN with
    				// the original source position, for deterministic
    				// mapping between source and corresponding asm.
    				// q.Pos = p.Pos
    
    				// Manually make the PCALIGN come into effect,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/fiat/p384_fiat64.go

    //
    //
    //
    // NOTE: In addition to the bounds specified above each function, all
    //
    //   functions synthesized for this Montgomery arithmetic require the
    //
    //   input to be strictly less than the prime modulus (m), and also
    //
    //   require the input to be in the unique saturated representation.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 90.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/loader.go

    	hashed64Def
    	hashedDef
    	nonPkgDef
    	nonPkgRef
    )
    
    // objidx
    const (
    	nilObj = iota
    	extObj
    	goObjStart
    )
    
    // extSymPayload holds the payload (data + relocations) for linker-synthesized
    // external symbols (note that symbol value is stored in a separate slice).
    type extSymPayload struct {
    	name   string // TODO: would this be better as offset into str table?
    	size   int64
    	ver    int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/dwarf.go

    	if die := d.find(ptrname); die != 0 {
    		return die
    	}
    
    	pdie := d.newdie(&dwtypes, dwarf.DW_ABRV_PTRTYPE, ptrname)
    	d.newrefattr(pdie, dwarf.DW_AT_type, dwtype)
    
    	// The DWARF info synthesizes pointer types that don't exist at the
    	// language level, like *hash<...> and *bucket<...>, and the data
    	// pointers of slices. Link to the ones we can find.
    	gts := d.ldr.Lookup("type:"+ptrname, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. pkg/proxy/winkernel/proxier.go

    func (proxier *Proxier) SyncLoop() {
    	// Update healthz timestamp at beginning in case Sync() never succeeds.
    	if proxier.healthzServer != nil {
    		proxier.healthzServer.Updated(proxier.ipFamily)
    	}
    	// synthesize "last change queued" time as the informers are syncing.
    	metrics.SyncProxyRulesLastQueuedTimestamp.SetToCurrentTime()
    	proxier.syncRunner.Loop(wait.NeverStop)
    }
    
    func (proxier *Proxier) setInitialized(value bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier.go

    func (proxier *Proxier) SyncLoop() {
    	// Update healthz timestamp at beginning in case Sync() never succeeds.
    	if proxier.healthzServer != nil {
    		proxier.healthzServer.Updated(proxier.ipFamily)
    	}
    
    	// synthesize "last change queued" time as the informers are syncing.
    	metrics.SyncProxyRulesLastQueuedTimestamp.SetToCurrentTime()
    	proxier.syncRunner.Loop(wait.NeverStop)
    }
    
    func (proxier *Proxier) setInitialized(value bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier.go

    func (proxier *Proxier) SyncLoop() {
    	// Update healthz timestamp at beginning in case Sync() never succeeds.
    	if proxier.healthzServer != nil {
    		proxier.healthzServer.Updated(proxier.ipFamily)
    	}
    
    	// synthesize "last change queued" time as the informers are syncing.
    	metrics.SyncProxyRulesLastQueuedTimestamp.SetToCurrentTime()
    	proxier.syncRunner.Loop(wait.NeverStop)
    }
    
    func (proxier *Proxier) setInitialized(value bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
Back to top