Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for isBreak (0.12 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/map.go

    		if p.isCased() {
    			if !c.isMidWord {
    				if !t.title(c) {
    					break
    				}
    				c.isMidWord = true
    			} else if !t.lower(c) {
    				break
    			}
    		} else if !c.copy() {
    			break
    		} else if p.isBreak() {
    			c.isMidWord = false
    		}
    
    		// As we save the state of the transformer, it is safe to call
    		// checkpoint after any successful write.
    		if !(c.isMidWord && wasMid) {
    			c.checkpoint()
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. src/crypto/tls/cipher_suites.go

    	return false
    }
    
    func cipherRC4(key, iv []byte, isRead bool) any {
    	cipher, _ := rc4.NewCipher(key)
    	return cipher
    }
    
    func cipher3DES(key, iv []byte, isRead bool) any {
    	block, _ := des.NewTripleDESCipher(key)
    	if isRead {
    		return cipher.NewCBCDecrypter(block, iv)
    	}
    	return cipher.NewCBCEncrypter(block, iv)
    }
    
    func cipherAES(key, iv []byte, isRead bool) any {
    	block, _ := aes.NewCipher(key)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

            solver.lookupState<TF::IsCompositeDataflowState>(arg.get())->getValue();
        bool is_read = read_array.contains(arg.getOperandNumber());
        bool is_update = update_array.contains(arg.getOperandNumber());
        // We want the resource operands that are on composite devices to be the
        // exact same set as the resource operands that are read or updated.
        if ((is_read || is_update) != lattice.is_on_composite_device) {
          return false;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/riscv/cpu.go

    	// 3.1.9: Instructions to Access CSRs
    	ACSRRW
    	ACSRRS
    	ACSRRC
    	ACSRRWI
    	ACSRRSI
    	ACSRRCI
    
    	// 3.2.1: Environment Call and Breakpoint
    	AECALL
    	ASCALL
    	AEBREAK
    	ASBREAK
    
    	// 3.2.2: Trap-Return Instructions
    	AMRET
    	ASRET
    	ADRET
    
    	// 3.2.3: Wait for Interrupt
    	AWFI
    
    	// 4.2.1: Supervisor Memory-Management Fence Instruction
    	ASFENCEVMA
    
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

      bool IsAlloc() const { return effects_.test(kAlloc); }
      bool IsFree() const { return effects_.test(kFree); }
      bool IsRead() const { return effects_.test(kRead); }
      bool IsWrite() const { return effects_.test(kWrite); }
      bool IsAllocOnly() const { return IsAlloc() && effects_.count() == 1; }
      bool IsReadOnly() const { return IsRead() && effects_.count() == 1; }
      ResourceId GetResourceId() const { return resource_id_; }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/inst.go

    	case ARORIW:
    		return &inst{0x1b, 0x5, 0x0, 1536, 0x30}
    	case ARORW:
    		return &inst{0x3b, 0x5, 0x0, 1536, 0x30}
    	case ASB:
    		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}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/riscv64.s

    	BSETI	$1, X10, X11				// 93151528
    
    	// Privileged ISA
    
    	// 3.2.1: Environment Call and Breakpoint
    	ECALL						// 73000000
    	SCALL						// 73000000
    	EBREAK						// 73001000
    	SBREAK						// 73001000
    
    	// Arbitrary bytes (entered in little-endian mode)
    	WORD	$0x12345678	// WORD $305419896	// 78563412
    	WORD	$0x9abcdef0	// WORD $2596069104	// f0debc9a
    
    	// MOV pseudo-instructions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

        val useSiteUnwrapped = unwrapUseSiteSubstitutionOverride()
        if (useSiteUnwrapped !is CallableMemberDescriptor) return useSiteUnwrapped
        if (useSiteUnwrapped.kind.isReal) return useSiteUnwrapped
        val overriddenDescriptor = useSiteUnwrapped.overriddenDescriptors.singleOrNull()?.unwrapUseSiteSubstitutionOverride()
            ?: return useSiteUnwrapped
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  9. src/runtime/mpagealloc.go

    		// run of consecutive pages.
    		var base, size uint
    		for j := j0; j < len(entries); j++ {
    			sum := entries[j]
    			if sum == 0 {
    				// A full entry means we broke any streak and
    				// that we should skip it altogether.
    				size = 0
    				continue
    			}
    
    			// We've encountered a non-zero summary which means
    			// free memory, so update firstFree.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
Back to top