Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 627 for pusha (0.05 sec)

  1. src/runtime/mspanset.go

    	// may be safely recycled.
    	popped atomic.Uint32
    
    	// spans is the set of spans in this block.
    	spans [spanSetBlockEntries]atomicMSpanPointer
    }
    
    // push adds span s to buffer b. push is safe to call concurrently
    // with other push and pop operations.
    func (b *spanSet) push(s *mspan) {
    	// Obtain our slot.
    	cursor := uintptr(b.index.incTail().tail() - 1)
    	top, bottom := cursor/spanSetBlockEntries, cursor%spanSetBlockEntries
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/lex/stack.go

    )
    
    // A Stack is a stack of TokenReaders. As the top TokenReader hits EOF,
    // it resumes reading the next one down.
    type Stack struct {
    	tr []TokenReader
    }
    
    // Push adds tr to the top (end) of the input stack. (Popping happens automatically.)
    func (s *Stack) Push(tr TokenReader) {
    	s.tr = append(s.tr, tr)
    }
    
    func (s *Stack) Next() ScanToken {
    	tos := s.tr[len(s.tr)-1]
    	tok := tos.Next()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 09 22:33:23 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  3. pilot/pkg/xds/nds.go

    )
    
    func ndsNeedsPush(req *model.PushRequest) bool {
    	if req == nil {
    		return true
    	}
    	if !req.Full {
    		// NDS generally handles full push. We only allow partial pushes, when headless endpoints change.
    		return headlessEndpointsUpdated(req)
    	}
    	// If none set, we will always push
    	if len(req.ConfigsUpdated) == 0 {
    		return true
    	}
    	for config := range req.ConfigsUpdated {
    		if _, f := skippedNdsConfigs[config.Kind]; !f {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/seh.go

    		return
    	}
    
    	// This implementation expects the following function prologue layout:
    	// - 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 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/FinalizeBuildCacheConfigurationBuildOperationIntegrationTest.groovy

            settingsFile << """
                buildCache {
                    local {
                        enabled = true
                        directory = '${cacheDir.absoluteFile.toURI().toString()}'
                        push = true
                    }
                }
            """
            executer.withBuildCacheEnabled()
    
            when:
            succeeds("help")
    
            then:
            def result = result()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. pkg/ctrlz/assets/static/js/jquery-3.2.1.slim.min.js

    id='"+u+"-\r\\' msallowcapture=''><option selected=''></option></select>",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+K+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+K+"*(?:value|"+J+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ja(function(a){a.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 68K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/configgen.go

    	// BuildNameTable returns list of hostnames and the associated IPs
    	BuildNameTable(node *model.Proxy, push *model.PushContext) *dnsProto.NameTable
    
    	// BuildExtensionConfiguration returns the list of extension configuration for the given proxy and list of names. This is the ECDS output.
    	BuildExtensionConfiguration(node *model.Proxy, push *model.PushContext, extensionConfigNames []string,
    		pullSecrets map[string][]byte) []*core.TypedExtensionConfig
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_builder.go

    	// If stat name is configured, build the alt statname.
    	if len(cb.req.Push.Mesh.InboundClusterStatName) != 0 {
    		localCluster.cluster.AltStatName = telemetry.BuildStatPrefix(cb.req.Push.Mesh.InboundClusterStatName,
    			string(instance.Service.Hostname), "", instance.Port.ServicePort, clusterPort, &instance.Service.Attributes)
    	}
    
    	opts := buildClusterOpts{
    		mesh:            cb.req.Push.Mesh,
    		mutable:         localCluster,
    		policy:          nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  9. pkg/queue/metrics_test.go

    		wg := sync.WaitGroup{}
    		wg.Add(1)
    		q.Push(func() error {
    			wg.Done()
    			return nil
    		})
    		wg.Wait()
    
    	}
    	close(s)
    }
    
    func BenchmarkMetricsQueueDisabled(b *testing.B) {
    	features.EnableControllerQueueMetrics = false
    	q := NewQueue(1 * time.Microsecond)
    	s := make(chan struct{})
    	go q.Run(s)
    	for n := 0; n < b.N; n++ {
    		wg := sync.WaitGroup{}
    		wg.Add(1)
    		q.Push(func() error {
    			wg.Done()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 21 16:30:36 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. pilot/pkg/xds/workload_test.go

    	expect(ads.ExpectResponse(), "ns/policy1")
    
    	// A new policy should push only that one
    	createAuthorizationPolicy(s, "policy2", "ns")
    	expect(ads.ExpectResponse(), "ns/policy2")
    
    	deleteRBAC(s, "policy2", "ns")
    	expectRemoved(ads.ExpectResponse(), "ns/policy2")
    
    	// Irrelevant update shouldn't push
    	createPod(s, "pod", "sa", "127.0.0.1", "node")
    	ads.ExpectNoResponse()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top