Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for updatedCerts (0.17 sec)

  1. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/FakeKeyStore.java

                newCerts[0] = cert;
                certChains.put(alias, newCerts);
            } else {
                Certificate[] updatedCerts = Arrays.copyOf(certs, certs.length + 1);
                updatedCerts[certs.length] = cert;
                certChains.put(alias, updatedCerts);
            }
        }
    
        @Override
        public void engineDeleteEntry(String alias) throws KeyStoreException {
            keys.remove(alias);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. tests/integration/ambient/cacert_rotation_test.go

    	retry.UntilOrFail(t, func() bool {
    		updatedCert, _, err := getWorkloadSecret(t, []v1.Pod{ztunnelPod}, serviceAccount, istioCtl)
    		if err != nil {
    			t.Logf("failed to get current workload secret: %v", err)
    			return false
    		}
    
    		// retry when workload cert is not updated
    		if originalCert.CertChain[0].ValidFrom != updatedCert.CertChain[0].ValidFrom {
    			newSecret = updatedCert
    			t.Logf("workload cert is updated")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top