Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 312 for pusha (0.06 sec)

  1. tools/build-kind-image.sh

    export DOCKER_CLI_EXPERIMENTAL=enabled
    # images must be pushed to be referenced by docker manifest
    # we push only after all builds have succeeded
    for image in "${images[@]}"; do
        docker push "${image}"
    done
    docker manifest rm "${registry}" || true
    docker manifest create "${registry}" "${images[@]}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 12 17:36:35 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pilot/pkg/networking/grpcgen/rds.go

    // Returns true of the request is of this type.
    func (g *GrpcConfigGenerator) BuildHTTPRoutes(node *model.Proxy, push *model.PushContext, routeNames []string) model.Resources {
    	resp := model.Resources{}
    	for _, routeName := range routeNames {
    		if rc := buildHTTPRoute(node, push, routeName); rc != nil {
    			resp = append(resp, &discovery.Resource{
    				Name:     routeName,
    				Resource: protoconv.MessageToAny(rc),
    			})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. src/runtime/sys_netbsd_386.s

    	MOVL	$SYS__lwp_create, AX
    	INT	$0x80
    	JCC	2(PC)
    	NEGL	AX
    	MOVL	AX, ret+12(FP)
    	RET
    
    TEXT runtime·lwp_tramp(SB),NOSPLIT,$0
    
    	// Set FS to point at m->tls
    	LEAL	m_tls(BX), BP
    	PUSHAL				// save registers
    	PUSHL	BP
    	CALL	lwp_setprivate<>(SB)
    	POPL	AX
    	POPAL
    
    	// Now segment is established. Initialize m, g.
    	get_tls(AX)
    	MOVL	DX, g(AX)
    	MOVL	BX, g_m(DX)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. .github/workflows/sigbuild-docker.yml

              echo "DATE=$(date +'%Y-%m-%d')" >> "$GITHUB_OUTPUT"
            id: tf-version
          -
            name: Build and push
            id: docker_build
            uses: docker/build-push-action@c56af957549030174b10d6867f20e78cfd7debc5 # v3.2.0
            with:
              push: true
              context: ./tensorflow/tools/tf_sig_build_dockerfiles
              target: devel
              build-args: |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top