Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for abihash (0.2 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/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)
  3. 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)
  4. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

                            break;
                        case "email":
                            attributes.put("email", jsonParser.getText());
                            break;
                        case "at_hash":
                            attributes.put("at_hash", jsonParser.getText());
                            break;
                        case "email_verified":
                            attributes.put("email_verified", jsonParser.getText());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. operator/pkg/object/objects_test.go

    			gotK8sObjs, err := ParseK8sObjectsFromYAMLManifest(testManifestYaml)
    			if err != nil {
    				gotK8sObjsMap := gotK8sObjs.ToMap()
    				for objHash, want := range tt.objsMap {
    					if gotObj, ok := gotK8sObjsMap[objHash]; ok {
    						gotObjYaml := gotObj.YAMLDebugString()
    						if !util.IsYAMLEqual(gotObjYaml, want) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  6. src/runtime/hash_test.go

    		// that uses aeshash, exec ourselves while turning aes off.
    		cmd := testenv.CleanCmdEnv(testenv.Command(t, os.Args[0], "-test.run=^TestIssue66841$"))
    		cmd.Env = append(cmd.Env, "GODEBUG=cpu.aes=off", "TEST_ISSUE_66841=1")
    		out, err := cmd.CombinedOutput()
    		if err != nil {
    			t.Errorf("%s", string(out))
    		}
    		// Fall through. Might as well run this test when aeshash is on also.
    	}
    	h := newHashSet()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. src/runtime/map_test.go

    func TestMemHashGlobalSeed(t *testing.T) {
    	if os.Getenv("GO_TEST_SUBPROCESS_HASH") != "" {
    		fmt.Println(computeHash())
    		os.Exit(0)
    		return
    	}
    
    	testenv.MustHaveExec(t)
    
    	// aeshash and memhashFallback use separate per-process seeds, so test
    	// both.
    	t.Run("aes", func(t *testing.T) {
    		if !*runtime.UseAeshash {
    			t.Skip("No AES")
    		}
    
    		h1 := subprocessHash(t, "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top