Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,115 for heal (0.15 sec)

  1. src/cmd/link/internal/ld/heap.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ld
    
    import "cmd/link/internal/loader"
    
    // Min-heap implementation, for the deadcode pass.
    // Specialized for loader.Sym elements.
    
    type heap []loader.Sym
    
    func (h *heap) push(s loader.Sym) {
    	*h = append(*h, s)
    	// sift up
    	n := len(*h) - 1
    	for n > 0 {
    		p := (n - 1) / 2 // parent
    		if (*h)[p] <= (*h)[n] {
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 16:55:22 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. src/cmd/internal/objabi/head.go

    //	Portions Copyright © 2009 The Go Authors. All rights reserved.
    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. src/main/webapp/images/logo-head.png

    logo-head.png...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Oct 30 11:04:53 UTC 2015
    - 907 bytes
    - Viewed (0)
  4. src/cmd/doc/testdata/nested/nested/real.go

    Michael Fraenkel <******@****.***> 1527110615 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 11 22:09:14 UTC 2018
    - 36 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/main/resources/head.html

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 155 bytes
    - Viewed (0)
  6. src/go/doc/comment/testdata/head.txt

    Russ Cox <******@****.***> 1649017808 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:46 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/eventclock/real.go

    )
    
    // RealEventClock fires event on real world time
    type Real struct {
    	clock.RealClock
    }
    
    var _ Interface = Real{}
    
    // EventAfterDuration schedules an EventFunc
    func (Real) EventAfterDuration(f EventFunc, d time.Duration) {
    	ch := time.After(d)
    	go func() {
    		t := <-ch
    		f(t)
    	}()
    }
    
    // EventAfterTime schedules an EventFunc
    func (r Real) EventAfterTime(f EventFunc, t time.Time) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 07 04:07:31 UTC 2021
    - 1K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/common/admin/head.jsp

    Koki Igarashi <******@****.***> 1581510110 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 12:21:50 UTC 2020
    - 984 bytes
    - Viewed (0)
  9. pkg/scheduler/internal/heap/heap_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // This file was copied from client-go/tools/cache/heap.go and modified
    // for our non thread-safe heap
    
    package heap
    
    import (
    	"testing"
    )
    
    func testHeapObjectKeyFunc(obj interface{}) (string, error) {
    	return obj.(testHeapObject).name, nil
    }
    
    type testHeapObject struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. src/runtime/mspanset.go

    // on the span set.
    func (b *spanSet) reset() {
    	head, tail := b.index.load().split()
    	if head < tail {
    		print("head = ", head, ", tail = ", tail, "\n")
    		throw("attempt to clear non-empty span set")
    	}
    	top := head / spanSetBlockEntries
    	if uintptr(top) < b.spineLen.Load() {
    		// If the head catches up to the tail and the set is empty,
    		// we may not clean up the block containing the head and tail
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top