Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for reOutput (0.16 sec)

  1. pkg/volume/iscsi/iscsi_util.go

    	}
    	prefix := mntPath[:ind]
    	return device, prefix, nil
    }
    
    func extractIface(mntPath string) (string, bool) {
    	reOutput := ifaceRe.FindStringSubmatch(mntPath)
    	if len(reOutput) > 1 {
    		return reOutput[1], true
    	}
    
    	return "", false
    }
    
    func extractPortalAndIqn(device string) (string, string, error) {
    	ind1 := strings.Index(device, "-")
    	if ind1 < 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 22 12:53:01 UTC 2022
    - 34.1K bytes
    - Viewed (0)
  2. src/crypto/des/cipher.go

    	}
    
    	left = (left << 31) | (left >> 1)
    	right = (right << 31) | (right >> 1)
    
    	preOutput := (uint64(right) << 32) | uint64(left)
    	byteorder.BePutUint64(dst, permuteFinalBlock(preOutput))
    }
    
    func (c *tripleDESCipher) Decrypt(dst, src []byte) {
    	if len(src) < BlockSize {
    		panic("crypto/des: input not full block")
    	}
    	if len(dst) < BlockSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. src/crypto/des/const.go

    	0, 8, 16, 24, 32, 40, 48, 56,
    	7, 15, 23, 31, 39, 47, 55, 63,
    	5, 13, 21, 29, 37, 45, 53, 61,
    	3, 11, 19, 27, 35, 43, 51, 59,
    	1, 9, 17, 25, 33, 41, 49, 57,
    }
    
    // Used to perform a final permutation of a 4-bit preoutput block. This is the
    // inverse of initialPermutation
    var finalPermutation = [64]byte{
    	24, 56, 16, 48, 8, 40, 0, 32,
    	25, 57, 17, 49, 9, 41, 1, 33,
    	26, 58, 18, 50, 10, 42, 2, 34,
    	27, 59, 19, 51, 11, 43, 3, 35,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 12:31:18 UTC 2017
    - 4.5K bytes
    - Viewed (0)
  4. src/crypto/des/block.go

    		}
    	}
    
    	left = (left << 31) | (left >> 1)
    	right = (right << 31) | (right >> 1)
    
    	// switch left & right and perform final permutation
    	preOutput := (uint64(right) << 32) | uint64(left)
    	byteorder.BePutUint64(dst, permuteFinalBlock(preOutput))
    }
    
    // DES Feistel function. feistelBox must be initialized via
    // feistelBoxOnce.Do(initFeistelBox) first.
    func feistel(l, r uint32, k0, k1 uint64) (lout, rout uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tpu_validate_inputs.cc

      if (auto repinput = dyn_cast<TF::TPUReplicatedInputOp>(op)) {
        if (!ValidateReplicatedInput(repinput, num_replicas, tpu_replicate_attr))
          return false;
      }
      if (auto repoutput = dyn_cast<TF::TPUReplicatedOutputOp>(op)) {
        if (!ValidateReplicatedOutput(repoutput, num_replicas, tpu_replicate_attr))
          return false;
      }
      if (auto partinput = dyn_cast<TF::TPUPartitionedInputOp>(op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top