Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for adsupdate (0.18 sec)

  1. pilot/pkg/serviceregistry/kube/controller/pod.go

    	endpointsPendingPodUpdate.Record(float64(len(pc.needResync)))
    }
    
    func (pc *PodCache) proxyUpdates(pod *v1.Pod, isPodUpdate bool) {
    	if pc.c != nil {
    		if pc.c.opts.XDSUpdater != nil {
    			ip := pod.Status.PodIP
    			pc.c.opts.XDSUpdater.ProxyUpdate(pc.c.Cluster(), ip)
    		}
    		if isPodUpdate {
    			// Recompute service(s) due to pod label change.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    }
    
    func toFlowSchemaApplyConfiguration(fsUpdate fsStatusUpdate) *flowcontrolapplyconfiguration.FlowSchemaApplyConfiguration {
    	condition := flowcontrolapplyconfiguration.FlowSchemaCondition().
    		WithType(fsUpdate.condition.Type).
    		WithStatus(fsUpdate.condition.Status).
    		WithReason(fsUpdate.condition.Reason).
    		WithLastTransitionTime(fsUpdate.condition.LastTransitionTime).
    		WithMessage(fsUpdate.condition.Message)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  3. maven-core/pom.xml

                <id>create-buildnumber</id>
                <goals>
                  <goal>create</goal>
                </goals>
                <configuration>
                  <doCheck>false</doCheck>
                  <doUpdate>false</doUpdate>
                  <revisionOnScmFailure>NON_CANONICAL</revisionOnScmFailure>
                </configuration>
              </execution>
            </executions>
          </plugin>
          <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. pilot/pkg/model/context.go

    	a := make(Resources, 0, len(r))
    	for _, rr := range r {
    		a = append(a, &discovery.Resource{Resource: rr})
    	}
    	return a
    }
    
    // XdsUpdates include information about the subset of updated resources.
    // See for example EDS incremental updates.
    type XdsUpdates = sets.Set[ConfigKey]
    
    // XdsLogDetails contains additional metadata that is captured by Generators and used by xds processors
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/network.go

    		if c.extractGatewaysInner(svc) {
    			gwsChanged = true
    			break
    		}
    	}
    	c.Unlock()
    	if gwsChanged {
    		c.NotifyGatewayHandlers()
    		// TODO ConfigUpdate via gateway handler
    		c.opts.XDSUpdater.ConfigUpdate(&model.PushRequest{Full: true, Reason: model.NewReasonStats(model.NetworksTrigger)})
    	}
    }
    
    // extractGatewaysInner performs the logic for extractGatewaysFromService without locking the controller.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top