Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for elfhash (0.27 sec)

  1. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    			if err != nil {
    				t.Fatalf("couldn't read temp file: %v", err)
    			}
    
    			if (oldHash != newHash) != rt.manifestShouldChange {
    				t.Errorf(
    					"failed StaticPodControlPlane\n%s\n\texpected manifest change: %t\n\tgot: %t\n\tnewHash: %v",
    					rt.description,
    					rt.manifestShouldChange,
    					(oldHash != newHash),
    					newHash,
    				)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

            case 1:
                dgst = Crypto.getSHA512();
                break;
            default:
                throw new SmbUnsupportedOperationException();
            }
    
            if ( oldHash != null ) {
                dgst.update(oldHash);
            }
            dgst.update(input, off, len);
            return dgst.digest();
        }
    
    
        Cipher createEncryptionCipher ( byte[] key ) throws CIFSException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route.go

    			break
    		}
    	}
    
    	switch {
    	case subsetPLSHash != nil:
    		consistentHash = subsetPLSHash
    	case subsetHash != nil:
    		consistentHash = subsetHash
    	case plsHash != nil:
    		consistentHash = plsHash
    	}
    	return consistentHash, mergedDR
    }
    
    // SortVHostRoutes moves the catch all routes alone to the end, while retaining
    // the relative order of other routes in the slice.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableSet.java

            }
          }
          return insertInHashTable(e);
        }
    
        private SetBuilderImpl<E> insertInHashTable(E e) {
          requireNonNull(hashTable);
          int eHash = e.hashCode();
          int i0 = Hashing.smear(eHash);
          int mask = hashTable.length - 1;
          for (int i = i0; i - i0 < maxRunBeforeFallback; i++) {
            int index = i & mask;
            Object tableEntry = hashTable[index];
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  5. src/cmd/internal/goobj/objfile.go

    )
    
    // Blocks
    const (
    	BlkAutolib = iota
    	BlkPkgIdx
    	BlkFile
    	BlkSymdef
    	BlkHashed64def
    	BlkHasheddef
    	BlkNonpkgdef
    	BlkNonpkgref
    	BlkRefFlags
    	BlkHash64
    	BlkHash
    	BlkRelocIdx
    	BlkAuxIdx
    	BlkDataIdx
    	BlkReloc
    	BlkAux
    	BlkData
    	BlkRefName
    	BlkEnd
    	NBlk
    )
    
    // File header.
    // TODO: probably no need to export this.
    type Header struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  6. src/crypto/internal/boring/LICENSE

     *
     * This library is free for commercial and non-commercial use as long as
     * the following conditions are aheared to.  The following conditions
     * apply to all code found in this distribution, be it the RC4, RSA,
     * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
     * included with this distribution is covered by the same copyright terms
     * except that the holder is Tim Hudson (******@****.***).
     *
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. cmd/data-usage-cache.go

    		d.Info.LastUpdate = other.Info.LastUpdate
    	}
    	existingRoot.merge(*otherRoot)
    	eHash := d.rootHash()
    	for key := range otherRoot.Children {
    		entry := other.Cache[key]
    		flat := other.flatten(entry)
    		existing := d.Cache[key]
    		// If not found, merging simply adds.
    		existing.merge(flat)
    		d.replaceHashed(dataUsageHash(key), &eHash, existing)
    	}
    }
    
    type objectIO interface {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/objfile.go

    	h.Offsets[goobj.BlkRefFlags] = w.Offset()
    	w.refFlags()
    
    	// Hashes
    	h.Offsets[goobj.BlkHash64] = w.Offset()
    	for _, s := range ctxt.hashed64defs {
    		w.Hash64(s)
    	}
    	h.Offsets[goobj.BlkHash] = w.Offset()
    	for _, s := range ctxt.hasheddefs {
    		w.Hash(s)
    	}
    	// TODO: hashedrefs unused/unsupported for now
    
    	// Reloc indexes
    	h.Offsets[goobj.BlkRelocIdx] = w.Offset()
    	nreloc := uint32(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. src/crypto/rsa/rsa_test.go

    	priv := new(PrivateKey)
    	priv.PublicKey = PublicKey{N: n, E: testEncryptOAEPData[0].e}
    	priv.D = d
    	sha1 := crypto.SHA1
    	sha256 := crypto.SHA256
    
    	out, err := priv.Decrypt(random, in, &OAEPOptions{MGFHash: sha1, Hash: sha256})
    
    	if err != nil {
    		t.Errorf("error: %s", err)
    	} else if !bytes.Equal(out, msg) {
    		t.Errorf("bad result %#v (want %#v)", out, msg)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 12 00:55:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ErrVerification", Var, 0},
    		{"GenerateKey", Func, 0},
    		{"GenerateMultiPrimeKey", Func, 0},
    		{"OAEPOptions", Type, 5},
    		{"OAEPOptions.Hash", Field, 5},
    		{"OAEPOptions.Label", Field, 5},
    		{"OAEPOptions.MGFHash", Field, 20},
    		{"PKCS1v15DecryptOptions", Type, 5},
    		{"PKCS1v15DecryptOptions.SessionKeyLen", Field, 5},
    		{"PSSOptions", Type, 2},
    		{"PSSOptions.Hash", Field, 4},
    		{"PSSOptions.SaltLength", Field, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top