Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 415 for Gleason (0.11 sec)

  1. src/cmd/go/internal/modget/get.go

    		// the module level, but 'go get' operates on packages.
    		// Rewrite the errors to explain them in terms of packages.
    		reason := func(m module.Version) string {
    			rv, ok := r.resolvedVersion[m.Path]
    			if !ok {
    				return fmt.Sprintf("(INTERNAL ERROR: no reason found for %v)", m)
    			}
    			return rv.reason.ResolvedString(module.Version{Path: m.Path, Version: rv.version})
    		}
    		for _, c := range constraint.Conflicts {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. pkg/kubelet/images/image_gc_manager.go

    // When RuntimeClassInImageCriAPI feature gate is enabled, imageRecord is
    // indexed as imageId-RuntimeHandler
    const imageIndexTupleFormat = "%s,%s"
    
    // ImageGarbageCollectedTotalReason* specify the reason why an image was garbage collected
    // in the `image_garbage_collected_total` metric.
    const (
    	ImageGarbageCollectedTotalReasonAge   = "age"
    	ImageGarbageCollectedTotalReasonSpace = "space"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. src/internal/trace/event.go

    	case go122.EvGoStop:
    		s = goStateTransition(e.ctx.G, GoRunning, GoRunnable)
    		s.Reason = e.table.strings.mustGet(stringID(e.base.args[0]))
    		s.Stack = e.Stack() // This event references the resource the event happened on.
    	case go122.EvGoBlock:
    		s = goStateTransition(e.ctx.G, GoRunning, GoWaiting)
    		s.Reason = e.table.strings.mustGet(stringID(e.base.args[0]))
    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. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

      }
    
      /**
       * Just like fail(reason), but additionally recording (using threadRecordFailure) any
       * AssertionFailedError thrown, so that the current testcase will fail.
       */
      public void threadFail(String reason) {
        try {
          fail(reason);
        } catch (AssertionFailedError t) {
          threadRecordFailure(t);
          fail(reason);
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. src/internal/trace/summary_test.go

    	if stats.SyscallBlockTime < 0 {
    		t.Error("found negative SyscallBlockTime")
    	}
    	if stats.TotalTime < 0 {
    		t.Error("found negative TotalTime")
    	}
    	for reason, dt := range stats.BlockTimeByReason {
    		if dt < 0 {
    			t.Errorf("found negative BlockTimeByReason for %s", reason)
    		}
    	}
    	for name, dt := range stats.RangeTime {
    		if dt < 0 {
    			t.Errorf("found negative RangeTime for range %s", name)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. operator/pkg/verifier/verifier.go

    			return nil, err
    		}
    		retval = append(retval, iop)
    	}
    	return retval, nil
    }
    
    func istioVerificationFailureError(filename string, reason error) error {
    	return fmt.Errorf("Istio installation failed, incomplete or does not match \"%s\": %v", filename, reason) // nolint
    }
    
    func (v *StatusVerifier) reportFailure(kind, name, namespace string, err error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/TestScopeRenderer.kt

     *
     * Note: Many scopes wouldn't work correctly if the contained name sets were broken, as these names are often the basis for the search.
     * But this is not a good reason for a lack of tests, as the scope implementation is not forced to use these name sets internally, and
     * the contained names are still part of the public API.
     */
    fun PrettyPrinter.renderNamesContainedInScope(scope: KaScopeLike) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/ProjectStateStore.kt

         * As such, the call should probably be guarded with additional synchronization and memoization.
         *
         * Prefer [loadOrCreateValue] unless there is a special reason.
         */
        fun loadOrCreateOriginalValue(key: K, creator: () -> V): V {
            val originalValueCapture = AtomicReference<V>()
            val address = loadOrCreateAddress(key) {
                val originalValue = creator()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. cmd/erasure-common.go

    			}
    			di, err := disks[i].DiskInfo(context.Background(), DiskInfoOptions{})
    			if err != nil || di.Healing {
    				// - Do not consume disks which are not reachable
    				//   unformatted or simply not accessible for some reason.
    				//
    				// - Do not consume disks which are being healed
    				//
    				// - Future: skip busy disks
    				return
    			}
    
    			mu.Lock()
    			newDisks = append(newDisks, disks[i])
    			mu.Unlock()
    		}()
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. pkg/scheduler/schedule_one.go

    			sched.SchedulingQueue.Done(podInfo.Pod.UID)
    		}
    	}()
    
    	logger := klog.FromContext(ctx)
    	reason := v1.PodReasonSchedulerError
    	if status.IsRejected() {
    		reason = v1.PodReasonUnschedulable
    	}
    
    	switch reason {
    	case v1.PodReasonUnschedulable:
    		metrics.PodUnschedulable(fwk.ProfileName(), metrics.SinceInSeconds(start))
    	case v1.PodReasonSchedulerError:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top