Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for VarLive (0.12 sec)

  1. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// TODO: what's the difference between VarLive and KeepAlive?
    	{name: "VarLive", argLength: 1, aux: "Sym", symEffect: "Read", zeroWidth: true}, // aux is a *gc.Node of a variable that must be kept live.  arg0=mem, returns mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    				} else if _, ok := a.Aux.(*ir.Name); ok && vi.rematerializeable {
    					// Rematerializeable value with a gc.Node. This is the address of
    					// a stack object (e.g. an LEAQ). Keep the object live.
    					// Change it to VarLive, which is what plive expects for locals.
    					v.Op = OpVarLive
    					v.SetArgs1(v.Args[1])
    					v.Aux = a.Aux
    				} else {
    					// In-register and rematerializeable values are already live.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/execarchive_noexec.go

    // license that can be found in the LICENSE file.
    
    //go:build wasm || windows
    
    package ld
    
    const syscallExecSupported = false
    
    func (ctxt *Link) execArchive(argv []string) {
    	panic("should never arrive here")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 320 bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/util/xdsfake/updater.go

    			t.Fatalf("timed out waiting for %v", et)
    		}
    	}
    }
    
    // MatchOrFail expects the provided events to arrive, skipping unmatched events
    func (fx *Updater) MatchOrFail(t test.Failer, events ...Event) {
    	t.Helper()
    	fx.matchOrFail(t, false, events...)
    }
    
    // StrictMatchOrFail expects the provided events to arrive, and nothing else
    func (fx *Updater) StrictMatchOrFail(t test.Failer, events ...Event) {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/process/internal/worker/request/WorkerAction.java

                        // action will have the build operation associated.  By using the responder, we ensure that all
                        // messages arrive on the same incoming queue in the build process and the completed message will only
                        // arrive after all log messages have been processed.
                        result = workerLogEventListener.withWorkerLoggingProtocol(responder, new Callable<Object>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 08:22:48 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/notfoundhandler/not_found_handler.go

    //
    // Note that we don't want to add additional checks to the readyz path as it might prevent fixing bricked clusters.
    // This specific handler is meant to "protect" requests that arrive before the paths and handlers are fully initialized.
    func New(serializer runtime.NegotiatedSerializer, isMuxAndDiscoveryCompleteFn func(ctx context.Context) bool) *Handler {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 21 13:25:33 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  7. src/go/parser/testdata/chans.go2

    func (s *Sender[T]) Send(v T) bool {
    	select {
    	case s.values <- v:
    		return true
    	case <-s.done:
    		return false
    	}
    }
    
    // Close tells the receiver that no more values will arrive.
    // After Close is called, the Sender may no longer be used.
    func (s *Sender[T]) Close() {
    	close(s.values)
    }
    
    // A Receiver receives values from a Sender.
    type Receiver[T any] struct {
    	values <-chan T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 24 19:44:06 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/chans.go

    func (s *Sender[T]) Send(v T) bool {
    	select {
    	case s.values <- v:
    		return true
    	case <-s.done:
    		return false
    	}
    }
    
    // Close tells the receiver that no more values will arrive.
    // After Close is called, the Sender may no longer be used.
    func (s *Sender[T]) Close() {
    	close(s.values)
    }
    
    // A Receiver receives values from a Sender.
    type Receiver[T any] struct {
    	values <-chan T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/testdata/chans.go

    func (s *Sender[T]) Send(v T) bool {
    	select {
    	case s.values <- v:
    		return true
    	case <-s.done:
    		return false
    	}
    }
    
    // Close tells the receiver that no more values will arrive.
    // After Close is called, the Sender may no longer be used.
    func (s *Sender[T]) Close() {
    	close(s.values)
    }
    
    // A Receiver receives values from a Sender.
    type Receiver[T any] struct {
    	values <-chan T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 18:02:18 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  10. src/container/heap/example_pq_test.go

    	// Insert a new item and then modify its priority.
    	item := &Item{
    		value:    "orange",
    		priority: 1,
    	}
    	heap.Push(&pq, item)
    	pq.update(item, item.value, 5)
    
    	// Take the items out; they arrive in decreasing priority order.
    	for pq.Len() > 0 {
    		item := heap.Pop(&pq).(*Item)
    		fmt.Printf("%.2d:%s ", item.priority, item.value)
    	}
    	// Output:
    	// 05:orange 04:pear 03:banana 02:apple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:27:36 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top