Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 519 for halted (0.28 sec)

  1. src/runtime/race_s390x.s

    // When calling racecalladdr, R1 is the call target address.
    
    // The race ctx, ThreadState *thr below, is passed in R2 and loaded in racecalladdr.
    
    // func runtime·raceread(addr uintptr)
    // Called from instrumented code.
    TEXT	runtime·raceread(SB), NOSPLIT, $0-8
    	// void __tsan_read(ThreadState *thr, void *addr, void *pc);
    	MOVD	$__tsan_read(SB), R1
    	MOVD	addr+0(FP), R3
    	MOVD	R14, R4
    	JMP	racecalladdr<>(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/crypto/tls/quic.go

    // Currently, it can only be called once.
    func (q *QUICConn) SendSessionTicket(opts QUICSessionTicketOptions) error {
    	c := q.conn
    	if !c.isHandshakeComplete.Load() {
    		return quicError(errors.New("tls: SendSessionTicket called before handshake completed"))
    	}
    	if c.isClient {
    		return quicError(errors.New("tls: SendSessionTicket called on the client"))
    	}
    	if q.sessionTicketSent {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. src/encoding/base32/base32_test.go

    		// decoder.Read will be called 8 times, badReader.Read will be called twice, returning
    		// valid data both times but an error on the second call.
    		{r: badReader{data: []byte("NRSWC43VOJSS4==="), errs: []error{nil, badErr}},
    			res: "leasure.", err: badErr, dbuflen: 1},
    		// Check io.EOF is properly reported when decoder.Read is called multiple times.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. src/runtime/race_arm64.s

    #define TP_ALIGN
    #endif
    
    // Load g from TLS. (See tls_arm64.s)
    #define load_g \
    	MRS_TPIDR_R0 \
    	TP_ALIGN \
    	MOVD    runtime·tls_g(SB), R11 \
    	MOVD    (R0)(R11), g
    
    // func runtime·raceread(addr uintptr)
    // Called from instrumented code.
    // Defined as ABIInternal so as to avoid introducing a wrapper,
    // which would make caller's PC ineffective.
    TEXT	runtime·raceread<ABIInternal>(SB), NOSPLIT, $0-8
    	MOVD	R0, R1	// addr
    	MOVD	LR, R2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. src/os/exec.go

    	}
    }
    
    func (p *Process) pidStatus() processStatus {
    	if p.mode != modePID {
    		panic("pidStatus called in invalid mode")
    	}
    
    	return processStatus(p.state.Load())
    }
    
    func (p *Process) pidDeactivate(reason processStatus) {
    	if p.mode != modePID {
    		panic("pidDeactivate called in invalid mode")
    	}
    
    	// Both Release and successful Wait will deactivate the PID. Only one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher_test.go

    		lock.RLock()
    		defer lock.RUnlock()
    		return count == 2, nil
    	}); err != nil {
    		t.Fatalf("expected forget() to be called twice, first call from w.add() and then from w.Stop() called from w.processInterval(): %v", err)
    	}
    
    	if !w.stopped {
    		t.Fatal("expected the watcher to be stopped but it wasn't")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/Daemon.java

         *
         * @throws IllegalStateException if this daemon is already running, or has already been stopped.
         */
        public void start() {
            LOGGER.info("start() called on daemon - {}", daemonContext);
            lifecycleLock.lock();
            try {
                if (stateCoordinator != null) {
                    throw new IllegalStateException("cannot start daemon as it is already running");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCacheCoordinator.java

                    }
                } finally {
                    stateLock.unlock();
                }
            }
        }
    
        /**
         * Waits until the current thread can take ownership.
         * Must be called while holding the lock.
         */
        private void takeOwnership() {
            while (owner != null && owner != Thread.currentThread()) {
                try {
                    condition.await();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 12:21:15 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  9. pkg/volume/volume.go

    	// 'fsGroup' so that it can be accessed by the pod. This may
    	// be called more than once, so implementations must be
    	// idempotent.
    	SetUpAt(dir string, mounterArgs MounterArgs) error
    	// GetAttributes returns the attributes of the mounter.
    	// This function is called after SetUp()/SetUpAt().
    	GetAttributes() Attributes
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. plugin/pkg/admission/gc/gc_admission_test.go

    	// this ok because if the test works, this method should never be called.
    	panic("test failed")
    }
    func (r *neverReturningRESTMapper) KindsFor(resource schema.GroupVersionResource) ([]schema.GroupVersionKind, error) {
    	// this ok because if the test works, this method should never be called.
    	panic("test failed")
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top