Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 437 for aloop (0.32 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config_test.cc

    }
    
    TEST_F(LegalizationOpConfigTest, ExpectsTrueForTF2XLATypeID) {
      EXPECT_TRUE(HasTf2XlaFallback(TypeID::get<TF::AllOp>()));
      EXPECT_TRUE(IsOpAllowedTf2xlaPreferred(TypeID::get<TF::AllOp>()));
      EXPECT_FALSE(IsTypeLegalizedWithMlir(TypeID::get<TF::AllOp>()));
    }
    
    TEST_F(LegalizationOpConfigTest, ChecksDynamicPadderOps) {
      EXPECT_TRUE(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 03:31:01 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. src/crypto/subtle/xor_generic.go

    		// see issue 59334.
    		return nil
    	}
    	return unsafe.Slice((*uintptr)(unsafe.Pointer(&x[0])), n)
    }
    
    func xorLoop[T byte | uintptr](dst, x, y []T) {
    	x = x[:len(dst)] // remove bounds check in loop
    	y = y[:len(dst)] // remove bounds check in loop
    	for i := range dst {
    		dst[i] = x[i] ^ y[i]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 31 23:25:07 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. pkg/kubelet/pluginmanager/plugin_manager.go

    type pluginManager struct {
    	// desiredStateOfWorldPopulator (the plugin watcher) runs an asynchronous
    	// periodic loop to populate the desiredStateOfWorld.
    	desiredStateOfWorldPopulator *pluginwatcher.Watcher
    
    	// reconciler runs an asynchronous periodic loop to reconcile the
    	// desiredStateOfWorld with the actualStateOfWorld by triggering register
    	// and unregister operations using the operationExecutor.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 01 05:56:33 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  4. docs/de/docs/advanced/async-tests.md

    !!! tip "Tipp"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:25:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/async-tests.md

    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 12:07:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. src/runtime/time_windows_386.s

    //go:build !faketime
    
    #include "go_asm.h"
    #include "textflag.h"
    #include "time_windows.h"
    
    TEXT time·now(SB),NOSPLIT,$0-20
    loop:
    	MOVL	(_INTERRUPT_TIME+time_hi1), AX
    	MOVL	(_INTERRUPT_TIME+time_lo), CX
    	MOVL	(_INTERRUPT_TIME+time_hi2), DI
    	CMPL	AX, DI
    	JNE	loop
    
    	// w = DI:CX
    	// multiply by 100
    	MOVL	$100, AX
    	MULL	CX
    	IMULL	$100, DI
    	ADDL	DI, DX
    	// w*100 = DX:AX
    	MOVL	AX, mono+12(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 17:19:45 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/deadstore_test.go

    	// make sure we don't get into an infinite loop with phi values.
    	c := testConfig(t)
    	ptrType := c.config.Types.BytePtr
    	fun := c.Fun("entry",
    		Bloc("entry",
    			Valu("start", OpInitMem, types.TypeMem, 0, nil),
    			Valu("sb", OpSB, c.config.Types.Uintptr, 0, nil),
    			Valu("v", OpConstBool, c.config.Types.Bool, 1, nil),
    			Valu("addr", OpAddr, ptrType, 0, nil, "sb"),
    			Goto("loop")),
    		Bloc("loop",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testsanitizers/testdata/msan8.go

    	c := make(chan bool)
    	go func() {
    		defer func() { c <- true }()
    		C.msanGoLoop()
    	}()
    
    	for C.msanGoReady() == 0 {
    		time.Sleep(time.Microsecond)
    	}
    
    loop:
    	for {
    		select {
    		case <-c:
    			break loop
    		default:
    			C.msanGoSendSignal()
    			time.Sleep(time.Microsecond)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:30:58 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/tighten.go

    	// For each moveable value, record the block that dominates all uses found so far.
    	target := f.Cache.allocBlockSlice(f.NumValues())
    	defer f.Cache.freeBlockSlice(target)
    
    	// Grab loop information.
    	// We use this to make sure we don't tighten a value into a (deeper) loop.
    	idom := f.Idom()
    	loops := f.loopnest()
    	loops.calculateDepths()
    
    	changed := true
    	for changed {
    		changed = false
    
    		// Reset target
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 01:01:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/internal/poly1305/sum_amd64.s

    	MOVQ 16(DI), R10 // h2
    	MOVQ 24(DI), R11 // r0
    	MOVQ 32(DI), R12 // r1
    
    	CMPQ R15, $16
    	JB   bytes_between_0_and_15
    
    loop:
    	POLY1305_ADD(SI, R8, R9, R10)
    
    multiply:
    	POLY1305_MUL(R8, R9, R10, R11, R12, BX, CX, R13, R14)
    	SUBQ $16, R15
    	CMPQ R15, $16
    	JAE  loop
    
    bytes_between_0_and_15:
    	TESTQ R15, R15
    	JZ    done
    	MOVQ  $1, BX
    	XORQ  CX, CX
    	XORQ  R13, R13
    	ADDQ  R15, SI
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top