Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 194 for pushKey (0.27 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/converter.go

    		}
    	}
    }
    
    func (c *fromUnstructuredContext) recordUnknownField(field string) {
    	if !c.returnUnknownFields {
    		return
    	}
    
    	pathLen := len(c.parentPath)
    	c.pushKey(field)
    	errPath := strings.Join(c.parentPath, "")
    	c.parentPath = c.parentPath[:pathLen]
    	c.unknownFieldErrors = append(c.unknownFieldErrors, fmt.Errorf(`unknown field "%s"`, errPath))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  2. src/net/http/http.go

    	// If the target is a path, it will inherit the scheme and host of the
    	// parent request.
    	//
    	// The HTTP/2 spec disallows recursive pushes and cross-authority pushes.
    	// Push may or may not detect these invalid pushes; however, invalid
    	// pushes will be detected and canceled by conforming clients.
    	//
    	// Handlers that wish to push URL X should call Push before sending any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. pilot/pkg/xds/ads.go

    }
    
    func (conn *Connection) Process(req *discovery.DiscoveryRequest) error {
    	return conn.s.processRequest(req, conn)
    }
    
    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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. pilot/pkg/xds/eds_test.go

    				errChan <- errors.New("no endpoints")
    				wgConnect.Done()
    				return
    			}
    
    			wgConnect.Done()
    
    			// Check we received all pushes
    			log.Infof("Waiting for pushes %v", id)
    
    			// Pushes may be merged so we may not get nPushes pushes
    			got, err := adscConn.Wait(15*time.Second, v3.EndpointType)
    
    			// If in incremental mode, shouldn't receive cds|rds|lds here
    			if inc {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  5. pilot/pkg/xds/monitoring.go

    	pushes = monitoring.NewSum(
    		"pilot_xds_pushes",
    		"Pilot build and send errors for lds, rds, cds and eds.",
    	)
    
    	cdsSendErrPushes = pushes.With(typeTag.Value("cds_senderr"))
    	edsSendErrPushes = pushes.With(typeTag.Value("eds_senderr"))
    	ldsSendErrPushes = pushes.With(typeTag.Value("lds_senderr"))
    	rdsSendErrPushes = pushes.With(typeTag.Value("rds_senderr"))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. pilot/pkg/xds/delta.go

    			return nil
    		default:
    		}
    		// If there wasn't already a request, poll for requests and pushes. Note: if we have a huge
    		// amount of incoming requests, we may still send some pushes, as we do not `continue` above;
    		// however, requests will be handled ~2x as much as pushes. This ensures a wave of requests
    		// cannot completely starve pushes. However, this scenario is unlikely.
    		select {
    		case req, ok := <-con.deltaReqChan:
    			if ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  7. architecture/networking/pilot.md

    #### Pushes
    
    A push occurs when Istiod detects an update of some set of configuration is needed. This results in roughly the same result as a Request (new configuration is pushed to the client), and is just triggered by a different source.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  8. pkg/xds/server.go

    			return nil
    		default:
    		}
    		// If there wasn't already a request, poll for requests and pushes. Note: if we have a huge
    		// amount of incoming requests, we may still send some pushes, as we do not `continue` above;
    		// however, requests will be handled ~2x as much as pushes. This ensures a wave of requests
    		// cannot completely starve pushes. However, this scenario is unlikely.
    		select {
    		case req, ok := <-con.reqChan:
    			if ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. pilot/pkg/xds/discovery.go

    	for {
    		select {
    		case <-stopCh:
    			return
    		default:
    			// We can send to it until it is full, then it will block until a pushes finishes and reads from it.
    			// This limits the number of pushes that can happen concurrently
    			semaphore <- struct{}{}
    
    			// Get the next proxy to push. This will block if there are no updates required.
    			client, push, shuttingdown := queue.Dequeue()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. src/runtime/mkpreempt.go

    	lfp.restore()
    	label("nofp2:")
    	l.restore()
    
    	p("MOVW %d(R13), R14", lfp.stack)     // sigctxt.pushCall pushes LR on stack, restore it
    	p("MOVW.P %d(R13), R15", lfp.stack+4) // load PC, pop frame (including the space pushed by sigctxt.pushCall)
    	p("UNDEF")                            // shouldn't get here
    }
    
    func genARM64() {
    	// Add integer registers R0-R26
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 15.3K bytes
    - Viewed (0)
Back to top