Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for asancall (0.17 sec)

  1. src/cmd/internal/obj/riscv/inst.go

    		return &inst{0x23, 0x0, 0x0, 0, 0x0}
    	case ASBREAK:
    		return &inst{0x73, 0x0, 0x1, 1, 0x0}
    	case ASCD:
    		return &inst{0x2f, 0x3, 0x0, 384, 0xc}
    	case ASCW:
    		return &inst{0x2f, 0x2, 0x0, 384, 0xc}
    	case ASCALL:
    		return &inst{0x73, 0x0, 0x0, 0, 0x0}
    	case ASD:
    		return &inst{0x23, 0x3, 0x0, 0, 0x0}
    	case ASEXTB:
    		return &inst{0x13, 0x1, 0x4, 1540, 0x30}
    	case ASEXTH:
    		return &inst{0x13, 0x1, 0x5, 1541, 0x30}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/ws/WebSocketHttpTest.kt

        newWebSocket()
        serverListener.assertOpen()
        serverListener.assertFailure(EOFException::class.java)
        serverListener.assertExhausted()
        clientListener.assertFailure(e)
      }
    
      @Disabled("AsyncCall currently lets runtime exceptions propagate.")
      @Test
      @Throws(
        Exception::class,
      )
      fun throwingOnFailLogs() {
        webServer.enqueue(
          MockResponse.Builder()
            .code(200)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/loong64/obj.go

    				p.Mark |= LABEL | SYNC
    				break
    			}
    			if p.From.Type == obj.TYPE_REG && p.From.Reg >= REG_SPECIAL {
    				p.Mark |= LABEL | SYNC
    			}
    
    		case ASYSCALL,
    			AWORD:
    			p.Mark |= LABEL | SYNC
    
    		case ANOR:
    			if p.To.Type == obj.TYPE_REG {
    				if p.To.Reg == REGZERO {
    					p.Mark |= LABEL | SYNC
    				}
    			}
    
    		case AJAL,
    			obj.ADUFFZERO,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  4. pkg/controller/cronjob/cronjob_controllerv2.go

    	// If this process restarts at this point (after posting a job, but
    	// before updating the status), then we might try to start the job on
    	// the next time.  Actually, if we re-list the SJs and Jobs on the next
    	// iteration of syncAll, we might not see our own status update, and
    	// then post one again.  So, we need to use the job name as a lock to
    	// prevent us from making the job twice (name the job with hash of its
    	// scheduled time).
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/pv_controller_test.go

    	"k8s.io/kubernetes/pkg/volume/util"
    )
    
    // Test the real controller methods (add/update/delete claim/volume) with
    // a fake API server.
    // There is no controller API to 'initiate syncAll now', therefore these tests
    // can't reliably simulate periodic sync of volumes/claims - it would be
    // either very timing-sensitive or slow to wait for real periodic sync.
    func TestControllerSync(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/framework_test.go

    					// no changes).
    					firstSync = false
    					logger.V(4).Info("Test simulating periodical sync of all claims and volumes", "testName", test.name)
    					reactor.SyncAll()
    				} else {
    					// Last sync did not produce any updates, the test reached
    					// stable state -> finish.
    					break
    				}
    			}
    			// waiting here cools down exponential backoff
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/mips/obj0.go

    				p.Mark |= LABEL | SYNC
    				break
    			}
    			if p.From.Type == obj.TYPE_REG && p.From.Reg >= REG_SPECIAL {
    				p.Mark |= LABEL | SYNC
    			}
    
    		/* too hard, just leave alone */
    		case ASYSCALL,
    			AWORD,
    			ATLBWR,
    			ATLBWI,
    			ATLBP,
    			ATLBR:
    			p.Mark |= LABEL | SYNC
    
    		case ANOR:
    			if p.To.Type == obj.TYPE_REG {
    				if p.To.Reg == REGZERO {
    					p.Mark |= LABEL | SYNC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
Back to top