Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 519 for halted (0.23 sec)

  1. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/LocalFileDependencyBackedArtifactSetCodec.kt

            throw UnsupportedOperationException("Should not be called")
        }
    
        override fun visit(visitor: ResolvedArtifactSet.Visitor) {
            throw UnsupportedOperationException("Should not be called")
        }
    
        override fun visitTransformSources(visitor: ResolvedArtifactSet.TransformSourceVisitor) {
            throw UnsupportedOperationException("Should not be called")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/interface.go

    	// Unreserve is called by the scheduling framework when a reserved pod was
    	// rejected, an error occurred during reservation of subsequent plugins, or
    	// in a later phase. The Unreserve method implementation must be idempotent
    	// and may be called by the scheduler even if the corresponding Reserve
    	// method for the same plugin was not called.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  3. src/testing/fuzz.go

    // When printing file and line information, that function will be skipped.
    // Helper may be called simultaneously from multiple goroutines.
    func (f *F) Helper() {
    	if f.inFuzzFn {
    		panic("testing: f.Helper was called inside the fuzz target, use t.Helper instead")
    	}
    
    	// common.Helper is inlined here.
    	// If we called it, it would mark F.Helper as the helper
    	// instead of the caller.
    	f.mu.Lock()
    	defer f.mu.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. src/runtime/traceruntime.go

    }
    
    // GCSweepSpan traces the sweep of a single span. If this is
    // the first span swept since traceGCSweepStart was called, this
    // will emit a GCSweepBegin event.
    //
    // This may be called outside a traceGCSweepStart/traceGCSweepDone
    // pair; however, it will not emit any trace events in this case.
    //
    // Must be called with a valid P.
    func (tl traceLocker) GCSweepSpan(bytesSwept uintptr) {
    	pp := tl.mp.p.ptr()
    	if pp.trace.maySweep {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  5. src/runtime/trace.go

    const defaultTraceAdvancePeriod = 1e9 // 1 second.
    
    // wakeableSleep manages a wakeable goroutine sleep.
    //
    // Users of this type must call init before first use and
    // close to free up resources. Once close is called, init
    // must be called before another use.
    type wakeableSleep struct {
    	timer *timer
    
    	// lock protects access to wakeup, but not send/recv on it.
    	lock   mutex
    	wakeup chan struct{}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  6. src/runtime/panic.go

    // since the runtime package should never have an out of bounds slice
    // or array reference or negative shift, if we see those functions called from the
    // runtime package we turn the panic into a throw. That will dump the
    // entire runtime stack for easier debugging.
    //
    // The entry points called by the signal handler will be called from
    // runtime.sigpanic, so we can't disallow calls from the runtime to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  7. src/encoding/gob/type.go

    	"sync"
    	"sync/atomic"
    	"unicode"
    	"unicode/utf8"
    )
    
    // userTypeInfo stores the information associated with a type the user has handed
    // to the package. It's computed once and stored in a map keyed by reflection
    // type.
    type userTypeInfo struct {
    	user        reflect.Type // the type the user handed us
    	base        reflect.Type // the base type after all indirections
    	indir       int          // number of indirections to reach the base type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  8. src/net/sendfile_test.go

    		poll.TestHookDidSendFile = orig
    	}()
    	var (
    		called     bool
    		gotHandled bool
    		gotFD      *poll.FD
    	)
    	poll.TestHookDidSendFile = func(dstFD *poll.FD, src int, written int64, err error, handled bool) {
    		if called {
    			t.Error("internal/poll.SendFile called multiple times, want one call")
    		}
    		called = true
    		gotHandled = handled
    		gotFD = dstFD
    	}
    	f()
    	if !called {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	// function-valued expression, instead of being called.
    	//
    	// Per the spec:
    	//  "The built-in functions do not have standard Go types, so they can only
    	//  appear in call expressions; they cannot be used as function values."
    	//
    	// Example:
    	//  var _ = copy
    	UncalledBuiltin
    
    	// InvalidAppend occurs when append is called with a first argument that is
    	// not a slice.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. src/runtime/stubs.go

    // run other goroutines.
    //
    // mcall can only be called from g stacks (not g0, not gsignal).
    //
    // This must NOT be go:noescape: if fn is a stack-allocated closure,
    // fn puts g on a run queue, and g executes before fn returns, the
    // closure will be invalidated while it is still executing.
    func mcall(fn func(*g))
    
    // systemstack runs fn on a system stack.
    // If systemstack is called from the per-OS-thread (g0) stack, or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top