Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 73 for Gleason (0.44 sec)

  1. src/internal/trace/order.go

    		// Goroutine blocked. It's waiting now and not running on this M.
    		curGState.status = go122.GoWaiting
    
    		// Emit a GoBlock event.
    		// TODO(mknyszek): Emit a reason.
    		o.queue.push(makeEvent(evt, curCtx, go122.EvGoBlock, ev.time, 0 /* no reason */, 0 /* no stack */))
    	case go122.EvGoSwitchDestroy:
    		// This goroutine is exiting itself.
    		delete(o.gStates, curCtx.G)
    
    		// Emit a GoDestroy event.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                return ((DefaultModelProblemCollector) problems).hasErrors();
            } else {
                // the default execution path only knows the DefaultModelProblemCollector,
                // only reason it's not in signature is because it's package private
                throw new IllegalStateException();
            }
        }
    
        protected boolean hasFatalErrors(ModelProblemCollectorExt problems) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            val ktDiagnostic =
                resolvable.source?.let { diagnostic.asKtDiagnostic(it, element.toKtPsiSourceElement()) }
                    ?: KaNonBoundToPsiErrorDiagnostic(factoryName = FirErrors.OTHER_ERROR.name, diagnostic.reason, token)
            return KaInapplicableCallCandidateInfo(call, isInBestCandidates, ktDiagnostic)
        }
    
        private val FirResolvable.calleeOrCandidateName: Name?
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    // If there is no reason for the package to be in the current build,
    // Why returns an empty string.
    func Why(path string) string {
    	pkg, ok := loaded.pkgCache.Get(path)
    	if !ok {
    		return ""
    	}
    	return pkg.why()
    }
    
    // WhyDepth returns the number of steps in the Why listing.
    // If there is no reason for the package to be in the current build,
    // WhyDepth returns 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            // Notify children of this mutation, but don't emit a deprecation if we already emitted one
            // at this level, otherwise we spam for no reason. We can remove this once the deprecation
            // turns into an error, since the error will short-circuit the child notifications.
            if (emittedDeprecation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    				badPathErr = err
    				break
    			}
    			return path, nil
    		}
    	}
    
    	reason := "outside GOPATH, module path must be specified"
    	if badPathErr != nil {
    		// return a different error message if the module was in GOPATH, but
    		// the module path determined above would be an invalid path.
    		reason = fmt.Sprintf("bad module path inferred from directory in GOPATH: %v", badPathErr)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    func (l *Loader) checkdup(name string, r *oReader, li uint32, dup Sym) {
    	p := r.Data(li)
    	rdup, ldup := l.toLocal(dup)
    	pdup := rdup.Data(ldup)
    	reason := "same length but different contents"
    	if len(p) != len(pdup) {
    		reason = fmt.Sprintf("new length %d != old length %d", len(p), len(pdup))
    	} else if bytes.Equal(p, pdup) {
    		// For BSS symbols, we need to check size as well, see issue 46653.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Sets.java

      /**
       * An unmodifiable view of a set which may be backed by other sets; this view will change as the
       * backing sets do. Contains methods to copy the data into a new set which will then remain
       * stable. There is usually no reason to retain a reference of type {@code SetView}; typically,
       * you either use it as a plain {@link Set}, or immediately invoke {@link #immutableCopy} or
       * {@link #copyInto} and forget the {@code SetView} itself.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  9. src/runtime/mgc.go

    	mp := acquirem()
    	mp.preemptoff = "gcing"
    	mp.traceback = 2
    	curgp := mp.curg
    	// N.B. The execution tracer is not aware of this status
    	// transition and handles it specially based on the
    	// wait reason.
    	casGToWaitingForGC(curgp, _Grunning, waitReasonGarbageCollection)
    
    	// Run gc on the g0 stack. We do this so that the g stack
    	// we're currently running on will no longer change. Cuts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers_test.go

    	pod := newNamedPod("test", "ns", "test", false)
    	gracePeriodOverride := int64(0)
    	err := killPodFunc(pod, false, &gracePeriodOverride, func(status *v1.PodStatus) {
    		status.Phase = v1.PodFailed
    		status.Reason = "reason"
    		status.Message = "message"
    	})
    	if err != nil {
    		t.Fatalf("Unexpected error: %v", err)
    	}
    	drainAllWorkers(podWorkers)
    	if len(processed) != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
Back to top