Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 138 for updatePod (0.15 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            // Updated version no longer depends on project
            def updated = mavenRepo.module('org', 'direct', '1.1').publish()
    
            // Chain of deps to make sure upgrade happens after substituting and finding deps
            def b = mavenRepo.module('org', 'b', '1.0').dependsOn(updated).publish()
            mavenRepo.module('org', 'a', '1.0').dependsOn(b).publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    func (proxier *Proxier) SyncLoop() {
    	// Update healthz timestamp at beginning in case Sync() never succeeds.
    	if proxier.healthzServer != nil {
    		proxier.healthzServer.Updated(proxier.ipFamily)
    	}
    
    	// synthesize "last change queued" time as the informers are syncing.
    	metrics.SyncProxyRulesLastQueuedTimestamp.SetToCurrentTime()
    	proxier.syncRunner.Loop(wait.NeverStop)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  3. cmd/iam-store.go

    	// values loaded from disk are not stale. They might be stale if the
    	// cached.updatedAt is more recent than the refresh cycle began.
    	if cache.updatedAt.Before(loadedAt) {
    		// No one has updated anything since the config was loaded,
    		// so we just replace whatever is on the disk into memory.
    		cache.iamGroupPolicyMap = newCache.iamGroupPolicyMap
    		cache.iamGroupsMap = newCache.iamGroupsMap
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    // other modules due to requirements that were previously pruned out.)
    //
    // expandGraph returns the updated roots, along with the module graph loaded
    // from those roots and any error encountered while loading that graph.
    // expandGraph returns non-nil requirements and a non-nil graph regardless of
    // errors. On error, the roots might not be updated to be consistent.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The <<#rel5.0:default_memory_settings,default memory settings>> for the command-line client, the Gradle daemon, and all workers including compilers and test executors, have been greatly reduced.
     * The <<#rel5.0:default_tool_versions,default versions of several code quality plugins>> have been updated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    //
    // We compute both of these goals, and check whether either of them have been met.
    // The background scavenger continues operating as long as either one of the goals
    // has not been met.
    //
    // The goals are updated after each GC.
    //
    // Synchronous scavenging happens for one of two reasons: if an allocation would
    // exceed the memory limit or whenever the heap grows in size, for some
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. cmd/bucket-handlers.go

    		dnsLogIf(GlobalContext, err)
    		return
    	}
    
    	bucketsSet := set.NewStringSet()
    	bucketsToBeUpdated := set.NewStringSet()
    	bucketsInConflict := set.NewStringSet()
    
    	// This means that domain is updated, we should update
    	// all bucket entries with new domain name.
    	domainMissing := err == dns.ErrDomainMissing
    	if dnsBuckets != nil {
    		for _, bucket := range buckets {
    			bucketsSet.Add(bucket.Name)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

    - Updated cni-plugins to v1.4.1. ([#123894](https://github.com/kubernetes/kubernetes/pull/123894), [@saschagrunert](https://github.com/saschagrunert)) [SIG Cloud Provider, Node and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context_test.go

    								t.Errorf("Unexpected envoy filter generated %s/%s", ns, ef.Name)
    							}
    						// Updated Envoy filter.
    						case updateSet.Contains(key):
    							cfg := updates[key]
    							// If the filter is updated, it should have a previous version.
    							if previousVersion == nil {
    								t.Errorf("Updated Envoy filter %s/%s did not exist", ns, ef.Name)
    							} else if reflect.DeepEqual(*previousVersion, ef) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    //
    // +k8s:deepcopy-gen=false
    type TypeMeta struct {
    	// Kind is a string value representing the REST resource this object represents.
    	// Servers may infer this from the endpoint the client submits requests to.
    	// Cannot be updated.
    	// In CamelCase.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
    	// +optional
    	Kind string `json:"kind,omitempty" protobuf:"bytes,1,opt,name=kind"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
Back to top