Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 87 for Refreshed (0.18 sec)

  1. tests/integration/ambient/cacert_rotation_test.go

    				"cert-chain-alt-2.pem", "root-cert-alt.pem"); err != nil {
    				t.Errorf("failed to update CA secret: %v", err)
    			}
    
    			// perform one retry to handle race condition where ztunnel cert is refreshed before Istiod certificates are reloaded
    			retry.UntilSuccess(func() error {
    				newWorkloadCert := waitForWorkloadCertUpdate(t, ztunnelPod, sa, istioCtl, originalWorkloadSecret)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. pkg/kubelet/token/token_manager.go

    // * Check the cache for the current token request.
    // * If the token exists and does not require a refresh, return the current token.
    // * Attempt to refresh the token.
    // * If the token is refreshed successfully, save it in the cache and return the token.
    // * If refresh fails and the old token is still valid, log an error and return the old token.
    // * If refresh fails and the old token is no longer valid, return an error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 10 10:20:09 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  3. pkg/kubelet/token/token_manager_test.go

    				if _, err := s.mgr.GetServiceAccountToken("a", "b", getTokenRequest()); err != nil {
    					t.Fatalf("unexpected error: %v", err)
    				}
    				if s.tg.count != 2 {
    					t.Fatalf("expected token to be refreshed: call count was %d", s.tg.count)
    				}
    			},
    		},
    		{
    			name: "rotate 24 hour token that expires in 40 hours",
    			exp:  40 * time.Hour,
    			f: func(t *testing.T, s *suite) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 04 00:16:47 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  4. pilot/pkg/model/jwks_resolver.go

    	evictionDuration time.Duration
    
    	// Refresher job running interval.
    	refreshInterval time.Duration
    
    	// Refresher job running interval on failure.
    	refreshIntervalOnFailure time.Duration
    
    	// Refresher job default running interval without failure.
    	refreshDefaultInterval time.Duration
    
    	retryInterval time.Duration
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. src/net/pipe.go

    }
    
    // set sets the point in time when the deadline will time out.
    // A timeout event is signaled by closing the channel returned by waiter.
    // Once a timeout has occurred, the deadline can be refreshed by specifying a
    // t value in the future.
    //
    // A zero value for t prevents timeout.
    func (d *pipeDeadline) set(t time.Time) {
    	d.mu.Lock()
    	defer d.mu.Unlock()
    
    	if d.timer != nil && !d.timer.Stop() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. src/internal/trace/reader.go

    			return ok, err
    		}
    
    		// Refresh the cursor's event.
    		ok, err := bc.nextEvent(r.gen.batches[bc.m], r.gen.freq)
    		if err != nil {
    			return false, err
    		}
    		if ok {
    			// If we successfully refreshed, update the heap.
    			heapUpdate(r.frontier, i)
    		} else {
    			// There's nothing else to read. Delete this cursor from the frontier.
    			r.frontier = heapRemove(r.frontier, i)
    		}
    		return true, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/apidiscovery/v2beta1/generated.proto

      repeated APIResourceDiscovery resources = 2;
    
      // freshness marks whether a group version's discovery document is up to date.
      // "Current" indicates the discovery document was recently
      // refreshed. "Stale" indicates the discovery document could not
      // be retrieved and the returned discovery document may be
      // significantly out of date. Clients that require the latest
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. pkg/apis/apidiscovery/types.go

    	// +listType=map
    	// +listMapKey=resource
    	Resources []APIResourceDiscovery
    	// freshness marks whether a group version's discovery document is up to date.
    	// "Current" indicates the discovery document was recently
    	// refreshed. "Stale" indicates the discovery document could not
    	// be retrieved and the returned discovery document may be
    	// significantly out of date. Clients that require the latest
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/IvySpecificComponentMetadataRulesIntegrationTest.groovy

            }
        }
    }
    
    resolve.doLast { assert ruleInvoked }
    """
    
            then:
            succeeds 'resolve'
        }
    
        def "changed Ivy metadata becomes visible once module is refreshed"() {
            def baseScript = buildFile.text
    
            given:
            repository {
                'org.test:projectA:1.0' {
                    withModule {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesProcessingIntegTest.groovy

        // because of branch
        @RequiredFeature(feature=GradleMetadataResolveRunner.GRADLE_METADATA, value="false")
        def "changed component metadata becomes visible when module is refreshed" () {
    
            def commonBuildFile = buildFile.text + """
                dependencies {
                    conf "org.utils:api:1.+"
                }
    
                def status11 = null
                def branch11 = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
Back to top