Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 93 of 93 for consistency (0.11 sec)

  1. src/cmd/internal/obj/arm/asm5.go

    		if p == nil {
    			if c.checkpool(op, pc) {
    				p = op
    				continue
    			}
    
    			// can't happen: blitrl is not nil, but checkpool didn't flushpool
    			ctxt.Diag("internal inconsistency")
    
    			break
    		}
    
    		p.Pc = int64(pc)
    		o = c.oplook(p)
    		m = int(o.size)
    
    		if m%4 != 0 || p.Pc%4 != 0 {
    			ctxt.Diag("!pc invalid: %v size=%d", p, m)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/pv_controller.go

    	}
    	provisionerName := storageClass.Provisioner
    	logger.V(4).Info("provisionClaimOperation", "PVC", klog.KObj(claim), "pluginName", pluginName, "provisionerName", provisionerName)
    
    	// Add provisioner annotation to be consistent with external provisioner workflow
    	newClaim, err := ctrl.setClaimProvisioner(ctx, claim, provisionerName)
    	if err != nil {
    		// Save failed, the controller will retry in the next sync
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    		// ambiguous, since we don't know what protocol we're switching to.
    		// Conceivably, it's one that doesn't need us to send the body.
    		// Given that we'll send the body if ExpectContinueTimeout expires,
    		// be consistent and always send it if we aren't closing the connection.
    		if resp.Close || rc.treq.Request.Close {
    			close(continueCh) // don't send the body; the connection will close
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top