Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for pushfw (1.66 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. samples/bookinfo/README.md

    ```
    
    Docker images are now created.
    
    ## Push docker images to docker hub
    
    After the local build is successful, you will need to push the images to Docker hub.  You may need to login to Docker before you run the command using `docker login`.
    
    ```bash
    cd samples/bookinfo
    BOOKINFO_LATEST=true BOOKINFO_TAG=$TAG BOOKINFO_HUB=$HUB src/build-services.sh --push
    ```
    
    For example:
    
    ```bash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/runtime/asm_386.s

    	MOVL	BX, (g_stack+stack_lo)(BP)
    	MOVL	SP, (g_stack+stack_hi)(BP)
    
    	// find out information about the processor we're on
    	// first see if CPUID instruction is supported.
    	PUSHFL
    	PUSHFL
    	XORL	$(1<<21), 0(SP) // flip ID bit
    	POPFL
    	PUSHFL
    	POPL	AX
    	XORL	0(SP), AX
    	POPFL	// restore EFLAGS
    	TESTL	$(1<<21), AX
    	JNE 	has_cpuid
    
    bad_proc: // show that the program requires MMX.
    	MOVL	$2, 0(SP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/schedule.go

    	score       []int8
    	inBlockUses []bool
    }
    
    func (h ValHeap) Len() int      { return len(h.a) }
    func (h ValHeap) Swap(i, j int) { a := h.a; a[i], a[j] = a[j], a[i] }
    
    func (h *ValHeap) Push(x interface{}) {
    	// Push and Pop use pointer receivers because they modify the slice's length,
    	// not just its contents.
    	v := x.(*Value)
    	h.a = append(h.a, v)
    }
    func (h *ValHeap) Pop() interface{} {
    	old := h.a
    	n := len(old)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/defer_activation_transpose.cc

        // Match input permutation that converts: NHWC -> NCHW.
        return IsTransposeOpWithPermuation(lhs.getDefiningOp(),
                                           kNhwcToNchwPermutation);
      }
    
      // Pushes the transpose op at the input to the result.
      void rewrite(mlir::stablehlo::ReduceWindowOp op,
                   PatternRewriter& rewriter) const override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top