Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 530 for pusha (0.03 sec)

  1. pilot/pkg/networking/core/accesslog.go

    		tcpGrpcListenerAccessLog: tcpGrpcAccessLog(true),
    	}
    }
    
    func (b *AccessLogBuilder) setTCPAccessLog(push *model.PushContext, proxy *model.Proxy, tcp *tcp.TcpProxy, class networking.ListenerClass, svc *model.Service) {
    	mesh := push.Mesh
    	cfgs := push.Telemetry.AccessLogging(push, proxy, class, svc)
    
    	if len(cfgs) == 0 {
    		// No Telemetry API configured, fall back to legacy mesh config setting
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/runtime/lfstack.go

    type lfstack uint64
    
    func (head *lfstack) push(node *lfnode) {
    	node.pushcnt++
    	new := lfstackPack(node, node.pushcnt)
    	if node1 := lfstackUnpack(new); node1 != node {
    		print("runtime: lfstack.push invalid packing: node=", node, " cnt=", hex(node.pushcnt), " packed=", hex(new), " -> node=", node1, "\n")
    		throw("lfstack.push")
    	}
    	for {
    		old := atomic.Load64((*uint64)(head))
    		node.next = old
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. cluster/addons/addon-manager/Makefile

    	docker build --pull -t $(IMAGE)-$(ARCH):$(VERSION) $(TEMP_DIR) --build-arg BASEIMAGE=$(BASEIMAGE)
    
    push: build
    	docker push $(IMAGE)-$(ARCH):$(VERSION)
    ifeq ($(ARCH),amd64)
    	# Backward compatibility. TODO: deprecate this image tag
    	docker rmi $(IMAGE):$(VERSION) 2>/dev/null || true
    	docker tag $(IMAGE)-$(ARCH):$(VERSION) $(IMAGE):$(VERSION)
    	docker push $(IMAGE):$(VERSION)
    endif
    
    test:
    	cp ./* $(TEMP_DIR)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 01:39:45 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. pilot/pkg/xds/ecds.go

    }
    
    var _ model.XdsResourceGenerator = &EcdsGenerator{}
    
    func ecdsNeedsPush(req *model.PushRequest) bool {
    	if req == nil {
    		return true
    	}
    	// If none set, we will always push
    	if len(req.ConfigsUpdated) == 0 {
    		return true
    	}
    	// Only push if config updates is triggered by EnvoyFilter, WasmPlugin, or Secret.
    	for config := range req.ConfigsUpdated {
    		switch config.Kind {
    		case kind.EnvoyFilter:
    			return true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 18:25:42 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/envoyfilter/rc_patch_test.go

    				proxy:              sidecarNode,
    				push:               push,
    				routeConfiguration: sidecarOutboundRC,
    			},
    			want: patchedSidecarOutputRC,
    		},
    		{
    			name: "sidecar inbound rc patch",
    			args: args{
    				patchContext:       networking.EnvoyFilter_SIDECAR_INBOUND,
    				proxy:              sidecarNode,
    				push:               push,
    				routeConfiguration: sidecarInboundRC,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  6. cluster/images/etcd/README.md

    only be created and pushed when using the `all-push` make target.
    
    #### How to release
    
    First, update `ETCD_VERSION` and `REVSION` in the `Makefile`.
    
    Next, build and test the image:
    
    ```console
    $ make build test
    ```
    
    Last, build and push the docker images for all supported architectures.
    
    ```console
    # Build images for all the architecture and push the manifest image as well
    $ make all-push
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 27 12:41:39 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. pilot/pkg/xds/monitoring.go

    	)
    
    	proxiesConvergeDelay = monitoring.NewDistribution(
    		"pilot_proxy_convergence_time",
    		"Delay in seconds between config change and a proxy receiving all required configuration.",
    		[]float64{.1, .5, 1, 3, 5, 10, 20, 30},
    	)
    
    	pushContextErrors = monitoring.NewSum(
    		"pilot_xds_push_context_errors",
    		"Number of errors (timeouts) initiating push context.",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/name_table.go

    func (configgen *ConfigGeneratorImpl) BuildNameTable(node *model.Proxy, push *model.PushContext) *dnsProto.NameTable {
    	if node.Type != model.SidecarProxy {
    		// DNS resolution is only for sidecars
    		return nil
    	}
    	return dnsServer.BuildNameTable(dnsServer.Config{
    		Node:                        node,
    		Push:                        push,
    		MulticlusterHeadlessEnabled: features.MulticlusterHeadlessEnabled,
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. pilot/pkg/xds/endpoints/mtls_checker.go

    type mtlsChecker struct {
    	push            *model.PushContext
    	svcPort         int
    	destinationRule *networkingapi.ClientTLSSettings_TLSmode
    }
    
    func newMtlsChecker(push *model.PushContext, svcPort int, dr *config.Config, subset string) *mtlsChecker {
    	return &mtlsChecker{
    		push:            push,
    		svcPort:         svcPort,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. src/runtime/sys_windows_386.s

    	ADDL	$4, SP
    
    	// address to callback parameters into CX
    	LEAL	4(SP), CX
    
    	// save registers as required for windows callback
    	PUSHL	DI
    	PUSHL	SI
    	PUSHL	BP
    	PUSHL	BX
    
    	// Go ABI requires DF flag to be cleared.
    	CLD
    
    	// determine index into runtimeĀ·cbs table
    	SUBL	$runtimeĀ·callbackasm(SB), AX
    	MOVL	$0, DX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top