Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 99 for problem (0.51 sec)

  1. src/time/time_test.go

    	if name, off := lt.Zone(); off != -8*60*60 && off != -7*60*60 {
    		t.Errorf("Unable to find US Pacific time zone data for testing; time zone is %q offset %d", name, off)
    		t.Error("Likely problem: the time zone files have not been installed.")
    	}
    }
    
    // parsedTime is the struct representing a parsed time value.
    type parsedTime struct {
    	Year                 int
    	Month                Month
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // Consequently, it cannot select a correct instantiation of ThreadWithParam
    // in order to call its Run(). Introducing ThreadWithParamBase as a
    // non-templated base class for ThreadWithParam allows us to bypass this
    // problem.
    class ThreadWithParamBase {
     public:
      virtual ~ThreadWithParamBase() {}
      virtual void Run() = 0;
    };
    
    // pthread_create() accepts a pointer to a function type with the C linkage.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * Don't have your own classes extend `AbstractFileCollection` — use the link:{groovyDslPath}/org.gradle.api.Project.html#org.gradle.api.Project:files(java.lang.Object++[++])[Project.files()] method instead. This problem may exhibit as a missing `getBuildDependencies()` method.
    Java builds::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    // part of the memory profile.
    type memRecord struct {
    	// The following complex 3-stage scheme of stats accumulation
    	// is required to obtain a consistent picture of mallocs and frees
    	// for some point in time.
    	// The problem is that mallocs come in real time, while frees
    	// come only after a GC during concurrent sweeping. So if we would
    	// naively count them, we would get a skew toward mallocs.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/expr.go

    	return
    
    Error:
    	// We have an offending operand errOp and possibly an error cause.
    	if cause == "" {
    		if isTypeParam(x.typ) || isTypeParam(y.typ) {
    			// TODO(gri) should report the specific type causing the problem, if any
    			if !isTypeParam(x.typ) {
    				errOp = y
    			}
    			cause = check.sprintf("type parameter %s is not comparable with %s", errOp.typ, op)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/Futures.java

      // See: http://cs.oswego.edu/pipermail/concurrency-interest/2015-January/013800.html
      // For a (long) discussion about this specific issue and the general futility of life.
      //
      // For the time being we are OK with the problem discussed above since it requires a caller to
      // introduce a very specific kind of data-race. And given the other operations performed by these
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  7. src/regexp/syntax/parse.go

    // so \pL{1000} is only one rune slice, not 1000.
    // We could keep a cache of character classes we've seen,
    // so that all the \pL we see use the same rune list,
    // but that doesn't remove the problem entirely:
    // consider something like [\pL01234][\pL01235][\pL01236]...[\pL^&*()].
    // And because the Rune slice is exposed directly in the Regexp,
    // there is not an opportunity to change the representation to allow
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue.go

    	inFlightPod, ok := p.inFlightPods[pInfo.Pod.UID]
    	if !ok {
    		// This can happen while updating a pod. In that case pInfo.UnschedulablePlugins should
    		// be empty. If it is not, we may have a problem.
    		if len(pInfo.UnschedulablePlugins) != 0 {
    			logger.Error(nil, "In flight Pod isn't found in the scheduling queue. If you see this error log, it's likely a bug in the scheduler.", "pod", klog.KObj(pInfo.Pod))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/elf.go

    		// So, we mark the object is MIPS I style paired float/double register scheme,
    		// aka MIPS_FPABI_ANY. If we mark the object as FPXX, the kernel may use FR=1 mode,
    		// then we meet some problem.
    		// Note: MIPS_FPABI_ANY is bad naming: in fact it is MIPS I style FPR usage.
    		//       It is not for 'ANY'.
    		// TODO: switch to FPXX after be sure that no odd-number-fpr is used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. src/runtime/mgcscavenge.go

    		if duration == 0 {
    			worked += approxWorkedNSPerPhysicalPage * float64(r/physPageSize)
    		} else {
    			// TODO(mknyszek): If duration is small compared to worked, it could be
    			// rounded down to zero. Probably not a problem in practice because the
    			// values are all within a few orders of magnitude of each other but maybe
    			// worth worrying about.
    			worked += float64(duration)
    		}
    		released += r
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top