Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,198 for shar (0.22 sec)

  1. src/internal/cpu/cpu_s390x.go

    	aes192 function = 19 // AES-192
    	aes256 function = 20 // AES-256
    
    	// K{I,L}MD function codes
    	sha1     function = 1  // SHA-1
    	sha256   function = 2  // SHA-256
    	sha512   function = 3  // SHA-512
    	sha3_224 function = 32 // SHA3-224
    	sha3_256 function = 33 // SHA3-256
    	sha3_384 function = 34 // SHA3-384
    	sha3_512 function = 35 // SHA3-512
    	shake128 function = 36 // SHAKE-128
    	shake256 function = 37 // SHAKE-256
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 17:11:03 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/escape/ArrayBasedEscaperMap.java

      }
    
      // The underlying replacement array we can share between multiple escaper
      // instances.
      private final char[][] replacementArray;
    
      private ArrayBasedEscaperMap(char[][] replacementArray) {
        this.replacementArray = replacementArray;
      }
    
      // Returns the non-null array of replacements for fast lookup.
      char[][] getReplacementArray() {
        return replacementArray;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

         *
         * @see jcifs.SmbResourceLocator#isIPC()
         */
        @Override
        public boolean isIPC () {
            String shr = this.getShare();
            if ( shr == null || "IPC$".equals(getShare()) ) {
                if ( log.isDebugEnabled() ) {
                    log.debug("Share is IPC " + this.share);
                }
                return true;
            }
            return false;
        }
    
    
        /**
         * @param t
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:24:53 UTC 2019
    - 23.9K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasAESGCM bool // KMA-GCM-AES{128,192,256} functions
    	HasGHASH  bool // KIMD-GHASH function
    	HasSHA1   bool // K{I,L}MD-SHA-1 functions
    	HasSHA256 bool // K{I,L}MD-SHA-256 functions
    	HasSHA512 bool // K{I,L}MD-SHA-512 functions
    	HasSHA3   bool // K{I,L}MD-SHA3-{224,256,384,512} and K{I,L}MD-SHAKE-{128,256} functions
    	HasVX     bool // vector facility
    	HasVXE    bool // vector-enhancements facility 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/sha3/doc.go

    // recommends it for most applications upgrading from SHA2-512. (NIST chose a
    // much stronger, but much slower, sponge instance for SHA3-512.)
    //
    // The SHA-3 functions are "drop-in" replacements for the SHA-2 functions.
    // They produce output of the same length, with the same security strengths
    // against all attacks. This means, in particular, that SHA3-256 only has
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. cmd/sftp-server.go

    // https://cs.opensource.google/go/x/crypto/+/refs/tags/v0.22.0:ssh/common.go;l=85
    var supportedMACs = []string{
    	"hmac-sha2******@****.***", "hmac-sha2******@****.***", "hmac-sha2-256", "hmac-sha2-512", "hmac-sha1", "hmac-sha1-96",
    }
    
    func sshPubKeyAuth(c ssh.ConnMetadata, key ssh.PublicKey) (*ssh.Permissions, error) {
    	return authenticateSSHConnection(c, key, nil)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        </magic>
        <glob pattern="*.sh"/>
        <glob pattern="*.bash"/>
        <sub-class-of type="text/plain"/>
      </mime-type>
    
      <mime-type type="application/x-shar">
        <glob pattern="*.shar"/>
      </mime-type>
    
      <mime-type type="application/x-shapefile">
        <acronym>ESRI Shapefiles</acronym>
        <_comment>ESRI Shapefiles</_comment>
        <magic priority="60">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  8. common/.commonfiles.sha

    Istio Automation <******@****.***> 1718203047 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 41 bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/metrics.h

    #include "tensorflow/core/lib/monitoring/sampler.h"
    #include "tensorflow/core/protobuf/fingerprint.pb.h"
    
    namespace tensorflow {
    namespace metrics {
    
    const char kFingerprintFound[] = "FOUND";
    const char kFingerprintNotFound[] = "NOT_FOUND";
    const char kFingerprintError[] = "ERROR";
    
    // Returns "/tensorflow/core/saved_model/write/count" cell. This metric
    // has 1 field "write_version", which is equal to the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. src/internal/cpu/cpu_arm64.go

    const CacheLinePadSize = 128
    
    func doinit() {
    	options = []option{
    		{Name: "aes", Feature: &ARM64.HasAES},
    		{Name: "pmull", Feature: &ARM64.HasPMULL},
    		{Name: "sha1", Feature: &ARM64.HasSHA1},
    		{Name: "sha2", Feature: &ARM64.HasSHA2},
    		{Name: "sha512", Feature: &ARM64.HasSHA512},
    		{Name: "crc32", Feature: &ARM64.HasCRC32},
    		{Name: "atomics", Feature: &ARM64.HasATOMICS},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 25 14:08:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top