Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 51 for recordLine (0.21 sec)

  1. src/cmd/compile/internal/types2/typeset.go

    	// set (and don't store it!), so that we still compute the full
    	// type set eventually. Instead, return the top type set and
    	// let any follow-on errors play out.
    	//
    	// TODO(gri) Consider recording when this happens and reporting
    	// it as an error (but only if there were no other errors so to
    	// to not have unnecessary follow-on errors).
    	if !ityp.complete {
    		return &topTypeSet
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_node_status.go

    }
    
    // recordNodeStatusEvent records an event of the given type with the given
    // message for the node.
    func (kl *Kubelet) recordNodeStatusEvent(eventType, event string) {
    	klog.V(2).InfoS("Recording event message for node", "node", klog.KRef("", string(kl.nodeName)), "event", event)
    	kl.recorder.Eventf(kl.nodeRef, eventType, event, "Node %s status is now: %s", kl.nodeName, event)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    		k := 0
    		for ; ; k++ {
    			p := tileParent(tile, k, r.tree.N)
    			if j, ok := tileOrder[p]; ok {
    				if k == 0 {
    					indexTileOrder[i] = j
    				}
    				break
    			}
    		}
    
    		// Walk back down recording child tiles after parents.
    		// This loop ends by revisiting the tile for this index
    		// (tileParent(tile, 0, r.tree.N)) unless k == 0, in which
    		// case the previous loop did it.
    		for k--; k >= 0; k-- {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. pkg/kubelet/images/image_gc_manager.go

    	recorder record.EventRecorder
    
    	// Reference to this node.
    	nodeRef *v1.ObjectReference
    
    	// imageCache is the cache of latest image list.
    	imageCache imageCache
    
    	// tracer for recording spans
    	tracer trace.Tracer
    }
    
    // imageCache caches latest result of ListImages.
    type imageCache struct {
    	// sync.Mutex is the mutex protects the image cache.
    	sync.Mutex
    	// images is the image cache.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. src/runtime/stubs.go

    // where g is the goroutine that made the call.
    // mcall saves g's current PC/SP in g->sched so that it can be restored later.
    // It is up to fn to arrange for that later execution, typically by recording
    // g in a data structure, causing something to call ready(g) later.
    // mcall returns to the original goroutine g later, when g has been rescheduled.
    // fn must not return at all; typically it ends by calling schedule, to let the m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

            given:
            buildFile("""
                System.properties.putAll(someProperty: "some.value")  // Use putAll to avoid recording property as an input
                System.clearProperty("someProperty")
    
                tasks.register("printProperty") {
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  7. src/runtime/extern.go

    }
    
    // Callers fills the slice pc with the return program counters of function invocations
    // on the calling goroutine's stack. The argument skip is the number of stack frames
    // to skip before recording in pc, with 0 identifying the frame for Callers itself and
    // 1 identifying the caller of Callers.
    // It returns the number of entries written to pc.
    //
    // To translate these PCs into symbolic information such as function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. src/go/types/check.go

    		typ = (*Tuple)(nil)
    	case constant_:
    		typ = x.typ
    		val = x.val
    	default:
    		typ = x.typ
    	}
    	assert(x.expr != nil && typ != nil)
    
    	if isUntyped(typ) {
    		// delay type and value recording until we know the type
    		// or until the end of type checking
    		check.rememberUntyped(x.expr, false, x.mode, typ.(*Basic), val)
    	} else {
    		check.recordTypeAndValue(x.expr, x.mode, typ, val)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. src/runtime/netpoll.go

    	// before calling netpollunblock, because publishInfo is what
    	// stops netpollblock from blocking anew
    	// (by changing the result of netpollcheckerr).
    	// atomicInfo also holds the eventErr bit,
    	// recording whether a poll event on the fd got an error;
    	// atomicInfo is the only source of truth for that bit.
    	atomicInfo atomic.Uint32 // atomic pollInfo
    
    	// rg, wg are accessed atomically and hold g pointers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/check.go

    		typ = (*Tuple)(nil)
    	case constant_:
    		typ = x.typ
    		val = x.val
    	default:
    		typ = x.typ
    	}
    	assert(x.expr != nil && typ != nil)
    
    	if isUntyped(typ) {
    		// delay type and value recording until we know the type
    		// or until the end of type checking
    		check.rememberUntyped(x.expr, false, x.mode, typ.(*Basic), val)
    	} else {
    		check.recordTypeAndValue(x.expr, x.mode, typ, val)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top