Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for pushfw (0.13 sec)

  1. pilot/pkg/xds/delta.go

    			}
    		case ev := <-con.PushCh():
    			pushEv := ev.(*Event)
    			err := s.pushConnectionDelta(con, pushEv)
    			pushEv.done()
    			if err != nil {
    				return err
    			}
    		case <-con.StopCh():
    			return nil
    		}
    	}
    }
    
    // Compute and send the new configuration for a connection.
    func (s *DiscoveryServer) pushConnectionDelta(con *Connection, pushEv *Event) error {
    	pushRequest := pushEv.pushRequest
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  2. pilot/pkg/xds/ads.go

    }
    
    func (conn *Connection) Push(ev any) error {
    	pushEv := ev.(*Event)
    	err := conn.s.pushConnection(conn, pushEv)
    	pushEv.done()
    	return err
    }
    
    // processRequest handles one discovery request. This is currently called from the 'main' thread, which also
    // handles 'push' requests and close - the code will eventually call the 'push' code, and it needs more mutex
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. pilot/pkg/xds/discovery.go

    			proxiesQueueTime.Record(time.Since(push.Start).Seconds())
    			var closed <-chan struct{}
    			if client.deltaStream != nil {
    				closed = client.deltaStream.Context().Done()
    			} else {
    				closed = client.StreamDone()
    			}
    			go func() {
    				pushEv := &Event{
    					pushRequest: push,
    					done:        doneFunc,
    				}
    
    				select {
    				case client.PushCh() <- pushEv:
    					return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. pilot/pkg/features/experimental.go

    	"istio.io/istio/pkg/env"
    	"istio.io/istio/pkg/log"
    )
    
    // Define experimental features here.
    var (
    	// FilterGatewayClusterConfig controls if a subset of clusters(only those required) should be pushed to gateways
    	FilterGatewayClusterConfig = env.Register("PILOT_FILTER_GATEWAY_CLUSTER_CONFIG", false,
    		"If enabled, Pilot will send only clusters that referenced in gateway virtual services attached to gateway").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. security/pkg/nodeagent/sds/sdsservice.go

    func (s *sdsservice) register(rpcs *grpc.Server) {
    	sds.RegisterSecretDiscoveryServiceServer(rpcs, s)
    }
    
    func (s *sdsservice) push(secretName string) {
    	s.Lock()
    	defer s.Unlock()
    	for _, client := range s.clients {
    		go func(client *Context) {
    			select {
    			case client.XdsConnection().PushCh() <- secretName:
    			case <-client.XdsConnection().StreamDone():
    			}
    		}(client)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/runtime/syscall_windows.go

    func (p *abiDesc) assignArg(t *_type) {
    	if t.Size_ > goarch.PtrSize {
    		// We don't support this right now. In
    		// stdcall/cdecl, 64-bit ints and doubles are
    		// passed as two words (little endian); and
    		// structs are pushed on the stack. In
    		// fastcall, arguments larger than the word
    		// size are passed by reference. On arm,
    		// 8-byte aligned arguments round up to the
    		// next even register and can be split across
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/inline.go

    	p.emitted = i
    }
    
    func (p *parseState) inline(s string) []Inline {
    	s = trimSpaceTab(s)
    	// Scan text looking for inlines.
    	// Leaf inlines are converted immediately.
    	// Non-leaf inlines have potential starts pushed on a stack while we await completion.
    	// Links take priority over other emphasis, so the emphasis must be delayed.
    	p.s = s
    	p.list = nil
    	p.emitted = 0
    	var opens []int // indexes of open ![ and [ Plains in p.list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. src/runtime/cgocall.go

    // stack switch, runtime.cgocallback saves the current SP as
    // m.g0.sched.sp, so that any use of m.g0's stack during the execution
    // of the callback will be done below the existing stack frames.
    // Before overwriting m.g0.sched.sp, it pushes the old value on the
    // m.g0 stack, so that it can be restored later.
    //
    // runtime.cgocallbackg (below) is now running on a real goroutine
    // stack (not an m.g0 stack).  First it calls runtime.exitsyscall, which will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/decl.go

    	// ones. White and grey objects may depend on white and black objects.
    	// A dependency on a grey object indicates a cycle which may or may not be
    	// valid.
    	//
    	// When objects turn grey, they are pushed on the object path (a stack);
    	// they are popped again when they turn black. Thus, if a grey object (a
    	// cycle) is encountered, it is on the object path, and all the objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/link.go

    // At the time of fill/spill, the offset must be adjusted by the architecture-dependent
    // adjustment to hardware SP that occurs in a call instruction.  E.g., for AMD64,
    // at Offset+8 because the return address was pushed.
    type RegSpill struct {
    	Addr           Addr
    	Reg            int16
    	Spill, Unspill As
    }
    
    // A Func represents a Go function. If non-nil, it must be a *ir.Func.
    type Func interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top