Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for pushfw (0.15 sec)

  1. pkg/util/concurrent/debouncer.go

    	var timeChan <-chan time.Time
    	var startDebounce time.Time
    	var lastConfigUpdateTime time.Time
    
    	pushCounter := 0
    	debouncedEvents := 0
    
    	// Keeps track of the push requests. If updates are debounce they will be merged.
    	combinedEvents := sets.New[T]()
    
    	free := true
    	freeCh := make(chan struct{}, 1)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 01 13:44:06 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. pkg/config/analysis/incluster/controller.go

    			gvk := oldcfg.GroupVersionKind
    			if (gvk == config.GroupVersionKind{}) {
    				gvk = newcfg.GroupVersionKind
    			}
    			chKind <- gvk
    		})
    	}
    	oldmsgs := map[string]diag.Messages{}
    	pushFn := func(combinedKinds sets.Set[config.GroupVersionKind]) {
    		res, err := c.analyzer.ReAnalyzeSubset(combinedKinds, stop)
    		if err != nil {
    			log.Errorf("In-cluster analysis has failed: %s", err)
    			return
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/seh.go

    	// - Stack split code (optional)
    	// - PUSHQ	BP
    	// - MOVQ	SP,	BP
    	//
    	// If the prologue layout change, the unwind information should be updated
    	// accordingly.
    
    	// Search for the PUSHQ BP instruction inside the prologue.
    	var pushbp *obj.Prog
    	for p := s.Func().Text; p != nil; p = p.Link {
    		if p.As == APUSHQ && p.From.Type == obj.TYPE_REG && p.From.Reg == REG_BP {
    			pushbp = p
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. pilot/pkg/xds/workload.go

    	// This is only an escape hatch for a lack of complete mapping of "Input changed -> Output changed".
    	// WDS does not suffer this limitation, so we could almost safely ignore these.
    	// However, other code will merge "Partial push + Full push -> Full push", so skipping full pushes isn't viable.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. src/cmd/link/testdata/linkname/push.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // "Push" linknames are ok.
    
    package main
    
    import (
    	"cmd/link/testdata/linkname/p"
    	_ "unsafe"
    )
    
    // Push f1 to p.
    //
    //go:linkname f1 cmd/link/testdata/linkname/p.f1
    func f1() { f2() }
    
    // f2 is pushed from p.
    //
    //go:linkname f2
    func f2()
    
    func main() {
    	p.F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:05:33 UTC 2024
    - 426 bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/ConcurrentGroupingQueue.kt

    import java.util.concurrent.locks.ReentrantLock
    
    import kotlin.concurrent.withLock
    
    
    /**
     * A queue that gives priority to the most recently pushed element.
     */
    internal
    class ConcurrentGroupingQueue<T>(
    
        /**
         * Predicate to check whether the given most recently pushed element (the receiver)
         * supersedes the given less recent element (the argument).
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. pilot/pkg/xds/lds.go

    			// push, recomputing push context. Doing that on every IP change doesn't scale, so we need these to remain
    			// incremental pushes.
    			// This allows waypoints only to push LDS on incremental pushes to Address type which would otherwise be skipped.
    			return true
    		}
    		// Otherwise, only handle full pushes (skip endpoint-only updates)
    		if !req.Full {
    			return false
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/runtime/preempt_amd64.s

    // Code generated by mkpreempt.go; DO NOT EDIT.
    
    #include "go_asm.h"
    #include "asm_amd64.h"
    #include "textflag.h"
    
    TEXT ·asyncPreempt(SB),NOSPLIT|NOFRAME,$0-0
    	PUSHQ BP
    	MOVQ SP, BP
    	// Save flags before clobbering them
    	PUSHFQ
    	// obj doesn't understand ADD/SUB on SP, but does understand ADJSP
    	ADJSP $368
    	// But vet doesn't know ADJSP, so suppress vet stack checking
    	NOP SP
    	MOVQ AX, 0(SP)
    	MOVQ CX, 8(SP)
    	MOVQ DX, 16(SP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 17:17:01 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. .github/workflows/sigbuild-docker-presubmit.yml

            id: date
          -
            name: Build containers, and push to GCR only if the 'build and push to gcr.io for staging' label is applied
            id: docker_build
            uses: docker/build-push-action@c56af957549030174b10d6867f20e78cfd7debc5 # v3.2.0
            with:
              push: ${{ contains(github.event.pull_request.labels.*.name, 'build and push to gcr.io for staging') }}
              context: ./tensorflow/tools/tf_sig_build_dockerfiles
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. releasenotes/notes/full-push-regression.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue: [39652]
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 12 12:34:53 UTC 2022
    - 213 bytes
    - Viewed (0)
Back to top