Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 94 for RECORD (0.12 sec)

  1. src/runtime/mgc.go

    	if trace.ok() {
    		trace.GCDone()
    		traceRelease(trace)
    	}
    
    	// all done
    	mp.preemptoff = ""
    
    	if gcphase != _GCoff {
    		throw("gc done but gcphase != _GCoff")
    	}
    
    	// Record heapInUse for scavenger.
    	memstats.lastHeapInUse = gcController.heapInUse.load()
    
    	// Update GC trigger and pacing, as well as downstream consumers
    	// of this pacing information, for the next cycle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        taskFaker.runNextTask()
        assertThat(cache.remove("a")).isTrue()
        assertAbsent("a")
        cache.close()
        createNewCache()
    
        // The journal will have no record that 'a' was removed. It will have an entry for 'a', but when
        // it tries to read the cache files, it will find they were deleted. Once it encounters an entry
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.31.md

    - Add apiserver.latency.k8s.io/apf-queue-wait annotation to the audit log to record the time spent waiting in apf queue ([#123919](https://github.com/kubernetes/kubernetes/pull/123919), [@hakuna-matatah](https://github.com/hakuna-matatah)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  4. src/go/build/build.go

    					if dir := ctxt.joinPath(earlyRoot, "src", sub); ctxt.isDir(dir) {
    						p.ConflictDir = dir
    						goto Found
    					}
    				}
    
    				// sub would not name some other directory instead of this one.
    				// Record it.
    				p.ImportPath = sub
    				p.Root = root
    				setPkga() // p.ImportPath changed
    				goto Found
    			}
    		}
    		// It's okay that we didn't find a root containing dir.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof_test.go

    		testenv.Command(t, exe, "-h").CombinedOutput()
    	}
    }
    
    // Test that profiler does not observe runtime.gogo as "user" goroutine execution.
    // If it did, it would see inconsistent state and would either record an incorrect stack
    // or crash because the stack was malformed.
    func TestGoroutineSwitch(t *testing.T) {
    	if runtime.Compiler == "gccgo" {
    		t.Skip("not applicable for gccgo")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    				fatalf("malformed __cgo__ name: %s", name)
    			}
    			types[i] = t.Type
    			p.recordTypedefs(t.Type, f.NamePos[names[i]])
    		}
    		if e.Tag != dwarf.TagCompileUnit {
    			r.SkipChildren()
    		}
    	}
    
    	// Record types and typedef information.
    	for i, n := range names {
    		if strings.HasSuffix(n.Go, "GetTypeID") && types[i].String() == "func() CFTypeID" {
    			conv.getTypeIDs[n.Go[:len(n.Go)-9]] = true
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

        private static final String ILLEGAL_VERSION_CHARS = ILLEGAL_FS_CHARS;
    
        private static final String ILLEGAL_REPO_ID_CHARS = ILLEGAL_FS_CHARS;
    
        private static final String EMPTY = "";
    
        private record ActivationFrame(String location, Optional<? extends InputLocationTracker> parent) {}
    
        private static class ActivationWalker extends MavenTransformer {
    
            private final Deque<ActivationFrame> stk;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_utils_test.go

    	"k8s.io/klog/v2"
    	"k8s.io/klog/v2/ktesting"
    	podutil "k8s.io/kubernetes/pkg/api/v1/pod"
    	"k8s.io/kubernetes/pkg/controller/history"
    	"k8s.io/utils/ptr"
    )
    
    // noopRecorder is an EventRecorder that does nothing. record.FakeRecorder has a fixed
    // buffer size, which causes tests to hang if that buffer's exceeded.
    type noopRecorder struct{}
    
    func (r *noopRecorder) Event(object runtime.Object, eventtype, reason, message string) {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    // current status of the push.
    func (ps *PushContext) UpdateMetrics() {
    	ps.proxyStatusMutex.RLock()
    	defer ps.proxyStatusMutex.RUnlock()
    
    	for _, pm := range metrics {
    		mmap := ps.ProxyStatus[pm.Name()]
    		pm.Record(float64(len(mmap)))
    	}
    }
    
    // It is called after virtual service short host name is resolved to FQDN
    func virtualServiceDestinations(v *networking.VirtualService) map[string]sets.Set[int] {
    	if v == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

        private static final String ILLEGAL_VERSION_CHARS = ILLEGAL_FS_CHARS;
    
        private static final String ILLEGAL_REPO_ID_CHARS = ILLEGAL_FS_CHARS;
    
        private static final String EMPTY = "";
    
        private record ActivationFrame(String location, Optional<? extends InputLocationTracker> parent) {}
    
        private static class ActivationWalker extends MavenTransformer {
    
            private final Deque<ActivationFrame> stk;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
Back to top