Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for VarLive (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/runtime/cgo/asm_arm.s

    // fn is the PC of a func(a unsafe.Pointer) function.
    TEXT crosscall2(SB),NOSPLIT|NOFRAME,$0
    	SUB	$(8*9), R13 // Reserve space for the floating point registers.
    	// The C arguments arrive in R0, R1, R2, and R3. We want to
    	// pass R0, R1, and R3 to Go, so we push those on the stack.
    	// Also, save C callee-save registers R4-R12.
    	MOVM.WP	[R0, R1, R3, R4, R5, R6, R7, R8, R9, g, R11, R12], (R13)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/http2/PushObserver.kt

     * connections should expect repetition of stream IDs.
     *
     * Return true to request cancellation of a pushed stream.  Note that this does not guarantee
     * future frames won't arrive on the stream ID.
     */
    interface PushObserver {
      /**
       * Describes the request that the server intends to push a response for.
       *
       * @param streamId server-initiated stream ID: an even number.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top