Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for abihash (0.3 sec)

  1. 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)
  2. 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)
  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. 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)
  6. 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)
  7. RELEASE.md

    ## Thanks to our Contributors
    
    This release contains contributions from many people at Google, as well as:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top