Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for syncEvent (0.13 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)
  3. 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 (1)
  4. 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)
Back to top