Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 572 for updateIPs (2.81 sec)

  1. pilot/pkg/xds/eds.go

    	kind.KubernetesGateway,
    	kind.HTTPRoute,
    	kind.TCPRoute,
    	kind.TLSRoute,
    	kind.GRPCRoute,
    )
    
    func edsNeedsPush(updates model.XdsUpdates) bool {
    	// If none set, we will always push
    	if len(updates) == 0 {
    		return true
    	}
    	for config := range updates {
    		if !skippedEdsConfigs.Contains(config.Kind) {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/ztunnelserver.go

    	log.Debug("sending snapshot to ztunnel")
    	if err := z.sendSnapshot(ctx, conn); err != nil {
    		return err
    	}
    	for {
    		// listen for updates:
    		select {
    		case update, ok := <-conn.Updates:
    			if !ok {
    				log.Debug("update channel closed - returning")
    				return nil
    			}
    			log.Debugf("got update to send to ztunnel")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. pilot/pkg/xds/workload.go

    	_ model.XdsDeltaResourceGenerator = &WorkloadGenerator{}
    )
    
    // GenerateDeltas computes Workload resources. This is design to be highly optimized to delta updates,
    // and supports *on-demand* client usage. A client can subscribe with a wildcard subscription and get all
    // resources (with delta updates), or on-demand and only get responses for specifically subscribed resources.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/prepare_patterns.td

    //===----------------------------------------------------------------------===//
    
    def LowerTensorScatterAdd: Pat<
      (TF_TensorScatterAddOp $input, $indices, $updates),
      (TF_TensorScatterUpdateOp $input, $indices,
         (TF_AddOp $updates, (CreateGatherNdOp $updates, $input, $indices)))>;
    
    //===----------------------------------------------------------------------===//
    // AddV2 op patterns.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. pilot/pkg/xds/discovery.go

    	RequestRateLimit *rate.Limiter
    
    	// InboundUpdates describes the number of configuration updates the discovery server has received
    	InboundUpdates *atomic.Int64
    	// CommittedUpdates describes the number of configuration updates the discovery server has
    	// received, process, and stored in the push context. If this number is less than InboundUpdates,
    	// there are updates we have not yet processed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. pilot/pkg/xds/cds.go

    			// taken directly from LDS... waypoints need CDS updates on kind.Address changes
    			// after implementing use-waypoint which decouples waypoint creation, wl pod creation
    			// user specifying waypoint use. Without this we're not getting correct waypoint config
    			// in a timely manner
    			return true
    		}
    		// Otherwise, only handle full pushes (skip endpoint-only updates)
    		if !req.Full {
    			return false
    		}
    	default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 21:27:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. hack/verify-vendor-licenses.sh

    # limitations under the License.
    
    # This script checks whether updating of licenses files is needed
    # or not. We should run `hack/update-vendor-licenses.sh` and commit the results,
    # if actually updates them.
    # Usage: `hack/verify-vendor-licenses.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    source "${KUBE_ROOT}/hack/lib/verify-generated.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:43 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/collection_ops_util.cc

    }
    
    Value ScatterAccumulateElements(Value indices, Value updates, Value buffer,
                                    OpBuilder builder, Location loc) {
      auto buffer_type = mlir::cast<RankedTensorType>(buffer.getType());
      auto updates_type = mlir::cast<RankedTensorType>(updates.getType());
      int64_t maybe_contiguous_start = GetFirstIfIndicesAreContiguous(indices);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. pkg/kubelet/status/status_manager.go

    // the latest v1.PodStatus. It also syncs updates back to the API server.
    type Manager interface {
    	PodStatusProvider
    
    	// Start the API server status sync loop.
    	Start()
    
    	// SetPodStatus caches updates the cached status for the given pod, and triggers a status update.
    	SetPodStatus(pod *v1.Pod, status v1.PodStatus)
    
    	// SetContainerReadiness updates the cached container status with the given readiness, and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    def LegalizeScatterNd : Pat<
      (TF_ScatterNdOp $indices, $updates, $shape, ConstantStrAttr<StrAttr, "">),
      (TFL_ScatterNdOp (CreateTFCastToInt32Op $indices), $updates,
        (CreateTFCastToInt32Op $shape))>;
    
    def LegalizeScatterNdDefaultBadindicesPolicy : Pat<
      (TF_ScatterNdOp $indices, $updates, $shape, ConstantStrAttr<StrAttr, "DEFAULT">),
      (TFL_ScatterNdOp (CreateTFCastToInt32Op $indices), $updates,
        (CreateTFCastToInt32Op $shape))>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top