Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for syncEvent (0.09 sec)

  1. src/internal/trace/event.go

    		id := stringID(e.base.args[i-1])
    		_, ok := e.table.strings.get(id)
    		if !ok {
    			return fmt.Errorf("found invalid string ID %d for event %s", id, spec.Name)
    		}
    	}
    	return nil
    }
    
    func syncEvent(table *evTable, ts Time) Event {
    	return Event{
    		table: table,
    		ctx: schedCtx{
    			G: NoGoroutine,
    			P: NoProc,
    			M: NoThread,
    		},
    		base: baseEvent{
    			typ:  evSync,
    			time: ts,
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  2. cmd/handler-api.go

    	t.deleteCleanupInterval = cfg.DeleteCleanupInterval
    	t.enableODirect = cfg.EnableODirect
    	t.gzipObjects = cfg.GzipObjects
    	t.rootAccess = cfg.RootAccess
    	t.syncEvents = cfg.SyncEvents
    	t.objectMaxVersions = cfg.ObjectMaxVersions
    }
    
    func (t *apiConfig) odirectEnabled() bool {
    	t.mu.RLock()
    	defer t.mu.RUnlock()
    
    	return t.enableODirect
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 08:13:12 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top