Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for strhash (0.14 sec)

  1. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist.jsp

                                                                        data-url="${f:h(doc.url_link)}">
                                                                    <em class="fa fa-trash">
                                                                    <la:message key="labels.search_list_button_delete"/>
                                                                </button>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Sep 24 13:09:22 UTC 2020
    - 20K bytes
    - Viewed (0)
  2. src/cmd/go/proxy_test.go

    		name := path + "@" + vers + "/" + f.Name
    		names = append(names, name)
    		files[name] = f.Data
    	}
    	h1, err := dirhash.Hash1(names, func(name string) (io.ReadCloser, error) {
    		data := files[name]
    		return io.NopCloser(bytes.NewReader(data)), nil
    	})
    	if err != nil {
    		return nil, err
    	}
    	h1mod, err := dirhash.Hash1([]string{"go.mod"}, func(string) (io.ReadCloser, error) {
    		return io.NopCloser(bytes.NewReader(gomod)), nil
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 03 09:56:24 UTC 2023
    - 12K bytes
    - Viewed (0)
  3. src/debug/dwarf/entry.go

    			// program uses Reader.Seek to skip over the
    			// unit. Not much we can do about that.
    			var strBase int64
    			if cu != nil {
    				strBase, _ = cu.Val(AttrStrOffsetsBase).(int64)
    			} else if a.tag == TagCompileUnit {
    				delay = append(delay, delayed{i, off, formStrx})
    				break
    			}
    
    			val = resolveStrx(uint64(strBase), off)
    
    		case formStrpSup:
    			is64, known := b.format.dwarf64()
    			if !known {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_server.go

    				return c.sendAlert(alertInternalError)
    			}
    		} else {
    			sigType, sigHash, err = legacyTypeAndHashFromPublicKey(pub)
    			if err != nil {
    				c.sendAlert(alertIllegalParameter)
    				return err
    			}
    		}
    
    		signed := hs.finishedHash.hashForClientCertificate(sigType, sigHash)
    		if err := verifyHandshakeSignature(sigType, pub, sigHash, signed, certVerify.signature); err != nil {
    			c.sendAlert(alertDecryptError)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_client.go

    			certVerify.signatureAlgorithm = signatureAlgorithm
    		} else {
    			sigType, sigHash, err = legacyTypeAndHashFromPublicKey(key.Public())
    			if err != nil {
    				c.sendAlert(alertIllegalParameter)
    				return err
    			}
    		}
    
    		signed := hs.finishedHash.hashForClientCertificate(sigType, sigHash)
    		signOpts := crypto.SignerOpts(sigHash)
    		if sigType == signatureRSAPSS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  6. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    				var host string
    				if restConfig != nil {
    					host = restConfig.Host
    				}
    				crHash := strings.Join([]string{crName, crNamespace, componentName, host}, "-")
    				oh := object.NewK8sObject(&unstructured.Unstructured{Object: unsObj}, nil, nil).Hash()
    				cache.RemoveObject(crHash, oh)
    				return true
    			}
    			return false
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/fetch.go

    // If the hash does not match go.sum (or the sumdb if enabled), hashZip returns
    // an error and does not write ziphashfile.
    func hashZip(mod module.Version, zipfile, ziphashfile string) (err error) {
    	hash, err := dirhash.HashZip(zipfile, dirhash.DefaultHash)
    	if err != nil {
    		return err
    	}
    	if err := checkModSum(mod, hash); err != nil {
    		return err
    	}
    	hf, err := lockedfile.Create(ziphashfile)
    	if err != nil {
    		return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/hash/Hashing.java

       * SipHash-2-4 algorithm</a> using a seed value of {@code k = 00 01 02 ...}.
       *
       * @since 15.0
       */
      public static HashFunction sipHash24() {
        return SipHashFunction.SIP_HASH_24;
      }
    
      /**
       * Returns a hash function implementing the <a href="https://131002.net/siphash/">64-bit
       * SipHash-2-4 algorithm</a> using the given seed.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/Hashing.java

       * SipHash-2-4 algorithm</a> using a seed value of {@code k = 00 01 02 ...}.
       *
       * @since 15.0
       */
      public static HashFunction sipHash24() {
        return SipHashFunction.SIP_HASH_24;
      }
    
      /**
       * Returns a hash function implementing the <a href="https://131002.net/siphash/">64-bit
       * SipHash-2-4 algorithm</a> using the given seed.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/coderepo_test.go

    						}
    						z.Close()
    						if !reflect.DeepEqual(names, tt.zip) {
    							t.Fatalf("zip = %v\nwant %v\n", names, tt.zip)
    						}
    					}
    
    					if needHash {
    						sum, err := dirhash.HashZip(zipfile, dirhash.Hash1)
    						if err != nil {
    							t.Errorf("repo.Zip(%q): %v", tt.version, err)
    						} else if sum != tt.zipSum {
    							t.Errorf("repo.Zip(%q): got file with sum %q, want %q", tt.version, sum, tt.zipSum)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 20:10:14 UTC 2023
    - 29.4K bytes
    - Viewed (0)
Back to top