Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 197 for Refresh (0.13 sec)

  1. pkg/registry/core/service/portallocator/controller/repair.go

    	err := wait.PollImmediate(time.Second, 10*time.Second, func() (bool, error) {
    		var err error
    		snapshot, err = c.alloc.Get()
    		return err == nil, err
    	})
    	if err != nil {
    		return fmt.Errorf("unable to refresh the port allocations: %v", err)
    	}
    	// If not yet initialized.
    	if snapshot.Range == "" {
    		snapshot.Range = c.portRange.String()
    	}
    	// Create an allocator because it is easy to use.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/AbstractLockingIntegrationTest.groovy

    }
    configurations {
        lockedConf
    }
    
    dependencies {
        lockedConf 'org:foo:1.+'
        lockedConf 'org:bar:1.+'
    }
    """
    
            when:
            succeeds'dependencies', '--write-locks', '--refresh-dependencies'
    
            then:
            lockfileFixture.verifyLockfile('lockedConf', ['org:foo:1.0', 'org:bar:1.0'])
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease.go

    		return err
    	}
    	endpointPorts := createEndpointPortSpec(p, "https")
    
    	// Ensure that there will be no race condition with the RemoveEndpointLeases.
    	c.lock.Lock()
    	defer c.lock.Unlock()
    
    	// Refresh the TTL on our key, independently of whether any error or
    	// update conflict happens below. This makes sure that at least some of
    	// the servers will add our endpoint lease.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    	gvks := sets.New[schema.GroupVersionKind]()
    	if p.Spec.MatchConstraints == nil || len(p.Spec.MatchConstraints.ResourceRules) == 0 {
    		return nil
    	}
    	restMapperRefreshAttempted := false // at most once per policy, refresh RESTMapper and retry resolution.
    	for _, rule := range p.Spec.MatchConstraints.ResourceRules {
    		groups := extractGroups(&rule.Rule)
    		if len(groups) == 0 {
    			continue
    		}
    		versions := extractVersions(&rule.Rule)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. cmd/common-main.go

    		} else {
    			dnsTTL = 10 * time.Minute
    		}
    	}
    
    	// Call to refresh will refresh names in cache.
    	go func() {
    		// Baremetal setups set DNS refresh window up to dnsTTL duration.
    		t := time.NewTicker(dnsTTL)
    		defer t.Stop()
    		for {
    			select {
    			case <-t.C:
    				globalDNSCache.Refresh()
    
    			case <-GlobalContext.Done():
    				return
    			}
    		}
    	}()
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/CacheBuilder.java

            : expireAfterAccessNanos;
      }
    
      /**
       * Specifies that active entries are eligible for automatic refresh once a fixed duration has
       * elapsed after the entry's creation, or the most recent replacement of its value. The semantics
       * of refreshes are specified in {@link LoadingCache#refresh}, and are performed by calling {@link
       * CacheLoader#reload}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    // because a counter refresh may call f.lookup.
    func (f *file) invalidateCounters() {
    	// Mark every counter as needing to refresh its count pointer.
    	if head := f.counters.Load(); head != nil {
    		for c := head; c != &f.end; c = c.next.Load() {
    			c.invalidate()
    		}
    		for c := head; c != &f.end; c = c.next.Load() {
    			c.refresh()
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/ztunnel-dashboard.gen.json

                   "legendFormat": "Pending Proxies ({{pod}})"
                }
             ],
             "title": "Workload Manager",
             "type": "timeseries"
          }
       ],
       "refresh": "15s",
       "schemaVersion": 39,
       "templating": {
          "list": [
             {
                "name": "datasource",
                "query": "prometheus",
                "type": "datasource"
             }
          ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

            assertEquals(ConfigType.DATA, crawlingConfigHelper.getConfigType("DX"));
        }
    
        public void test_getCrawlingConfig() {
            crawlingConfigHelper.refresh();
            assertNull(crawlingConfigHelper.getCrawlingConfig(null));
            assertNull(crawlingConfigHelper.getCrawlingConfig(""));
            assertNull(crawlingConfigHelper.getCrawlingConfig("XXX"));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. pkg/registry/core/service/ipallocator/controller/repair.go

    				if err != nil {
    					return false, err
    				}
    
    				snapshotByFamily[family] = snapshot
    			}
    		}
    		return true, nil
    	})
    
    	if err != nil {
    		return fmt.Errorf("unable to refresh the service IP block: %v", err)
    	}
    
    	// ensure that ranges are assigned
    	for family, snapshot := range snapshotByFamily {
    		if snapshot.Range == "" {
    			snapshot.Range = c.networkByFamily[family].String()
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top