Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 439 for aloop (0.09 sec)

  1. src/crypto/sha256/sha256block_s390x.s

    	MOVBZ  ·useAsm(SB), R4
    	LMG    dig+0(FP), R1, R3            // R2 = &p[0], R3 = len(p)
    	MOVBZ  $2, R0                       // SHA-256 function code
    	CMPBEQ R4, $0, generic
    
    loop:
    	KIMD R0, R2      // compute intermediate message digest (KIMD)
    	BVS  loop        // continue if interrupted
    	RET
    
    generic:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 610 bytes
    - Viewed (0)
  2. src/crypto/sha512/sha512block_s390x.s

    	MOVBZ  ·useAsm(SB), R4
    	LMG    dig+0(FP), R1, R3            // R2 = &p[0], R3 = len(p)
    	MOVBZ  $3, R0                       // SHA-512 function code
    	CMPBEQ R4, $0, generic
    
    loop:
    	KIMD R0, R2      // compute intermediate message digest (KIMD)
    	BVS  loop        // continue if interrupted
    	RET
    
    generic:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 610 bytes
    - Viewed (0)
  3. pkg/kubelet/cloudresource/cloud_request_manager_test.go

    			wantErr:                true,
    			shouldDisableInstances: true,
    		},
    		{
    			name:      "subsequent sync loop succeeds",
    			addrs:     createNodeInternalIPAddress("10.0.1.12"),
    			wantAddrs: createNodeInternalIPAddress("10.0.1.12"),
    		},
    		{
    			name:      "subsequent sync loop encounters an error, last addresses returned",
    			err:       errors.New("bad"),
    			wantAddrs: createNodeInternalIPAddress("10.0.1.12"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/remove_unused_while_results.mlir

    // RUN: tf-opt %s --tf-remove-unused-while-results --split-input-file | FileCheck %s
    
    // Check that we remove the first result and operand from the loop because the
    // result is unused and all other conditions are satisfied, that means:
    // - the corresponding first block arguments are unused (except for `tf.OpB`
    //   which is the defining op of the first result and will be pruned)
    // - `tf.OpB` is not stateful
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 21 20:25:31 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  5. src/crypto/internal/bigmod/nat_arm64.s

    	MOVD	x+8(FP), R2
    	MOVD	y+16(FP), R3
    	MOVD	$0, R4
    
    // The main loop of this code operates on a block of 4 words every iteration
    // performing [R4:R12:R11:R10:R9] = R4 + R3 * [R8:R7:R6:R5] + [R12:R11:R10:R9]
    // where R4 is carried from the previous iteration, R8:R7:R6:R5 hold the next
    // 4 words of x, R3 is y and R12:R11:R10:R9 are part of the result z.
    loop:
    	CBZ	R0, done
    
    	LDP.P	16(R2), (R5, R6)
    	LDP.P	16(R2), (R7, R8)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 22:37:58 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/os/signal/signal_unix.go

    func signal_disable(uint32)
    func signal_enable(uint32)
    func signal_ignore(uint32)
    func signal_ignored(uint32) bool
    func signal_recv() uint32
    
    func loop() {
    	for {
    		process(syscall.Signal(signal_recv()))
    	}
    }
    
    func init() {
    	watchSignalLoop = loop
    }
    
    const (
    	numSig = 65 // max across all systems
    )
    
    func signum(sig os.Signal) int {
    	switch sig := sig.(type) {
    	case syscall.Signal:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:21 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/RestrictiveCodeVisitor.java

        public void visitForLoop(ForStatement forLoop) {
            restrict(forLoop);
        }
    
        @Override
        public void visitWhileLoop(WhileStatement loop) {
            restrict(loop);
        }
    
        @Override
        public void visitDoWhileLoop(DoWhileStatement loop) {
            restrict(loop);
        }
    
        @Override
        public void visitIfElse(IfStatement ifElse) {
            restrict(ifElse);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. pkg/kubelet/pluginmanager/operationexecutor/operation_executor_test.go

    func isOperationRunSerially(ch <-chan interface{}, quit chan<- interface{}) bool {
    	defer close(quit)
    	numOperationsStarted := 0
    loop:
    	for {
    		select {
    		case <-ch:
    			numOperationsStarted++
    			if numOperationsStarted > 1 {
    				return false
    			}
    		case <-time.After(5 * time.Second):
    			break loop
    		}
    	}
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/issue9400/asm_arm.s

    	// Ask signaller to setgid
    	MOVW	$·Baton(SB), R2
    storeloop:
    	MOVW	0(R2), R0
    	MOVW	$1, R1
    	BL	cas<>(SB)
    	BCC	storeloop
    
    	// Wait for setgid completion
    loop:
    	MOVW	$0, R0
    	MOVW	$0, R1
    	BL	cas<>(SB)
    	BCC	loop
    
    	// Restore stack
    	SUB	$(1024 * 8), R13
    
    	MOVW	R4, R14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 758 bytes
    - Viewed (0)
  10. doc/next/2-language.md

    The "range" clause in a "for-range" loop now accepts iterator functions of the following types
    
    	func(func() bool)
    	func(func(K) bool)
    	func(func(K, V) bool)
    
    as range expressions.
    Calls of the iterator argument function produce the iteration values for the "for-range" loop.
    For details see the [language spec](/ref/spec#For_statements).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 757 bytes
    - Viewed (0)
Back to top