Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for syncEvent (0.23 sec)

  1. src/internal/trace/event_test.go

    // license that can be found in the LICENSE file.
    
    package trace
    
    import "testing"
    
    func TestPanicEvent(t *testing.T) {
    	// Use a sync event for this because it doesn't have any extra metadata.
    	ev := syncEvent(nil, 0)
    
    	mustPanic(t, func() {
    		_ = ev.Range()
    	})
    	mustPanic(t, func() {
    		_ = ev.Metric()
    	})
    	mustPanic(t, func() {
    		_ = ev.Log()
    	})
    	mustPanic(t, func() {
    		_ = ev.Task()
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 784 bytes
    - Viewed (0)
  2. src/internal/trace/reader.go

    		return ev, nil
    	}
    
    	// Check if we need to refresh the generation.
    	if len(r.frontier) == 0 && len(r.cpuSamples) == 0 {
    		if !r.emittedSync {
    			r.emittedSync = true
    			return syncEvent(r.gen.evTable, r.lastTs), nil
    		}
    		if r.spillErr != nil {
    			return Event{}, r.spillErr
    		}
    		if r.gen != nil && r.spill == nil {
    			// If we have a generation from the last read,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. internal/event/targetlist.go

    	currentSendCalls  atomic.Int64
    	totalEvents       atomic.Int64
    	eventsSkipped     atomic.Int64
    	eventsErrorsTotal atomic.Int64
    
    	sync.RWMutex
    	targets map[TargetID]Target
    	queue   chan asyncEvent
    	ctx     context.Context
    
    	statLock    sync.RWMutex
    	targetStats map[TargetID]targetStat
    }
    
    type targetStat struct {
    	// The number of concurrent async Send calls per targets
    	currentSendCalls int64
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. internal/config/api/api.go

    	EnableODirect               bool          `json:"enable_odirect"`
    	GzipObjects                 bool          `json:"gzip_objects"`
    	RootAccess                  bool          `json:"root_access"`
    	SyncEvents                  bool          `json:"sync_events"`
    	ObjectMaxVersions           int64         `json:"object_max_versions"`
    }
    
    // UnmarshalJSON - Validate SS and RRS parity when unmarshalling JSON.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/test.go

    		t.Errorf("got %d, want %d", r2, expected)
    	}
    	r3 := callBridge(f)
    	if r3 != expected {
    		t.Errorf("got %d, want %d", r3, expected)
    	}
    }
    
    // issue 1222
    type AsyncEvent struct {
    	event C.struct_ibv_async_event
    }
    
    // issue 1635
    
    func test1635(t *testing.T) {
    	C.scatter()
    	if v := C.hola; v != 0 {
    		t.Fatalf("C.hola is %d, should be 0", v)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/static/trace_viewer_full.html

    splay='';}else{this.$.relatedEvents.style.display='none';}},get relatedEventsToHighlight(){if(!this.$.content.selection)return undefined;const selection=new tr.model.EventSet();this.$.content.selection.forEach(function(asyncEvent){if(!asyncEvent.associatedEvents)return;asyncEvent.associatedEvents.forEach(function(event){selection.push(event);});});if(selection.length)return selection;return undefined;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-async-slice-sub-view',tr.model.AsyncS...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top