Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for abihash (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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