Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for abihash (0.24 sec)

  1. src/cmd/link/internal/ld/symtab.go

    			addgostring(ctxt, ldr, modulehashes, fmt.Sprintf("go:link.linkhash.%d", i), string(shlib.Hash))
    
    			// modulehashes[i].runtimehash
    			abihash := ldr.LookupOrCreateSym("go:link.abihash."+modulename, 0)
    			ldr.SetAttrReachable(abihash, true)
    			modulehashes.AddAddr(ctxt.Arch, abihash)
    		}
    
    		slice(modulehashes.Sym(), uint64(len(ctxt.Shlibs)))
    	} else {
    		moduledata.AddUint(ctxt.Arch, 0) // modulename
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    		if linkmode != LinkExternal {
    			// TODO(mwhudson): the approach here will work OK when
    			// linking internally for notes that we want to be included
    			// in a loadable segment (e.g. the abihash note) but not for
    			// notes that we do not want to be mapped (e.g. the package
    			// list note). The real fix is probably to define new values
    			// for Symbol.Type corresponding to mapped and unmapped notes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testshared/shared_test.go

    	if note.section.Flags != elf.SHF_ALLOC {
    		t.Errorf("abi hash section has flags %v, want SHF_ALLOC", note.section.Flags)
    	}
    	if !isOffsetLoaded(f, note.section.Offset) {
    		t.Errorf("abihash section not contained in PT_LOAD segment")
    	}
    	var hashbytes elf.Symbol
    	symbols, err := f.Symbols()
    	if err != nil {
    		t.Errorf("error reading symbols %v", err)
    		return
    	}
    	for _, sym := range symbols {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/NtlmPasswordAuthentication.java

            to.context = from.context;
            if ( from.hashesExternal ) {
                to.hashesExternal = true;
                to.ansiHash = from.ansiHash != null ? Arrays.copyOf(from.ansiHash, from.ansiHash.length) : null;
                to.unicodeHash = from.unicodeHash != null ? Arrays.copyOf(from.unicodeHash, from.unicodeHash.length) : null;
            }
            else {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  5. pkg/registry/rbac/validation/rule_test.go

    	return string(hash.Sum(nil))
    }
    
    // byHash sorts a set of policy rules by a hash of its fields
    type byHash []rbacv1.PolicyRule
    
    func (b byHash) Len() int           { return len(b) }
    func (b byHash) Less(i, j int) bool { return hashOf(b[i]) < hashOf(b[j]) }
    func (b byHash) Swap(i, j int)      { b[i], b[j] = b[j], b[i] }
    
    func TestDefaultRuleResolver(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    			ldr.AddToSymValue(s, int64(sect.Vaddr))
    		}
    	}
    
    	if ctxt.BuildMode == BuildModeShared {
    		s := ldr.LookupOrCreateSym("go:link.abihashbytes", 0)
    		sect := ldr.SymSect(ldr.LookupOrCreateSym(".note.go.abihash", 0))
    		ldr.SetSymSect(s, sect)
    		ldr.SetSymValue(s, int64(sect.Vaddr+16))
    	}
    
    	// If there are multiple text sections, create runtime.text.n for
    	// their section Vaddr, using n for index
    	n := 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. operator/pkg/cache/cache.go

    		}
    	}
    	return objectCaches[name]
    }
    
    // RemoveObject removes object with objHash in the Cache with the given name from the object Cache.
    func RemoveObject(name, objHash string) {
    	objectCachesMu.RLock()
    	objectCache := objectCaches[name]
    	objectCachesMu.RUnlock()
    
    	if objectCache != nil {
    		objectCache.Mu.Lock()
    		delete(objectCache.Cache, objHash)
    		objectCache.Mu.Unlock()
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 13:12:49 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. cluster/gce/gci/mounter/stage-upload.sh

    gsutil cp "${ACI_DIR}/${MOUNTER_ACI_IMAGE}" "${MOUNTER_GCS_DIR}"
    
    echo "Upload completed"
    echo "Updated gci-mounter ACI version and SH512 in cluster/gce/gci/configure.sh"
    ACI_HASH=$(sha512sum "${ACI_DIR}/${MOUNTER_ACI_IMAGE}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 23 18:27:20 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

     */
        public NtlmPasswordAuthentication( String domain, String username,
                        byte[] challenge, byte[] ansiHash, byte[] unicodeHash ) {
            if( domain == null || username == null ||
                                        ansiHash == null || unicodeHash == null ) {
                throw new IllegalArgumentException( "External credentials cannot be null" );
            }
            this.domain = domain;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.5K bytes
    - Viewed (0)
  10. operator/pkg/helmreconciler/prune.go

    	return nil
    }
    
    // RemoveObject removes object with objHash in componentName from the object cache.
    func (h *HelmReconciler) removeFromObjectCache(componentName, objHash string) {
    	crHash, err := h.getCRHash(componentName)
    	if err != nil {
    		scope.Error(err.Error())
    	}
    	cache.RemoveObject(crHash, objHash)
    	scope.Infof("Removed object %s from Cache.", objHash)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top