Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 340 for Decrement (0.16 sec)

  1. src/runtime/race_arm64.s

    	MOVD	R30, R20	// callee-saved, preserved across the CALL
    	MOVD	m_g0(R10), R11
    	CMP	R11, g
    	BEQ	call	// already on g0
    	MOVD	(g_sched+gobuf_sp)(R11), R12
    	MOVD	R12, RSP
    call:
    	// Decrement SP past where the frame pointer is saved in the Go arm64
    	// ABI (one word below the stack pointer) so the race detector library
    	// code doesn't clobber it
    	SUB	$16, RSP
    	BL	R9
    	MOVD	R19, RSP
    	JMP	(R20)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/schedule.go

    			i := sort.Search(len(edges), func(i int) bool {
    				return edges[i].x.ID >= v.ID
    			})
    			j := sort.Search(len(edges), func(i int) bool {
    				return edges[i].x.ID > v.ID
    			})
    			// Decrement inEdges for each target of edges from v.
    			for _, e := range edges[i:j] {
    				inEdges[e.y.ID]--
    				if inEdges[e.y.ID] == 0 {
    					heap.Push(priq, e.y)
    				}
    			}
    		}
    		if len(b.Values) != nv {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. pkg/controller/controller_utils.go

    	// is successfully deleted.
    	SuccessfulDeletePodReason = "SuccessfulDelete"
    )
    
    // RSControlInterface is an interface that knows how to add or delete
    // ReplicaSets, as well as increment or decrement them. It is used
    // by the deployment controller to ease testing of actions that it takes.
    type RSControlInterface interface {
    	PatchReplicaSet(ctx context.Context, namespace, name string, data []byte) error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/net/InetAddresses.java

       * both IPv4 and IPv6 addresses.
       *
       * @param address the InetAddress to decrement
       * @return a new InetAddress that is one less than the passed in address
       * @throws IllegalArgumentException if InetAddress is at the beginning of its range
       * @since 18.0
       */
      public static InetAddress decrement(InetAddress address) {
        byte[] addr = address.getAddress();
        int i = addr.length - 1;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/InetAddresses.java

       * both IPv4 and IPv6 addresses.
       *
       * @param address the InetAddress to decrement
       * @return a new InetAddress that is one less than the passed in address
       * @throws IllegalArgumentException if InetAddress is at the beginning of its range
       * @since 18.0
       */
      public static InetAddress decrement(InetAddress address) {
        byte[] addr = address.getAddress();
        int i = addr.length - 1;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller.go

    	errCh := make(chan error, len(pods))
    	successfulDeletes := int32(len(pods))
    	logger := klog.FromContext(ctx)
    
    	failDelete := func(pod *v1.Pod, err error) {
    		// Decrement the expected number of deletes because the informer won't observe this deletion
    		jm.expectations.DeletionObserved(logger, jobKey)
    		if !apierrors.IsNotFound(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/loong64/obj.go

    			}
    
    			q = p
    
    			if autosize != 0 {
    				// Make sure to save link register for non-empty frame, even if
    				// it is a leaf function, so that traceback works.
    				// Store link register before decrement SP, so if a signal comes
    				// during the execution of the function prologue, the traceback
    				// code will not see a half-updated stack frame.
    				// This sequence is not async preemptible, as if we open a frame
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    //	B) decrement use counts of the values' args.
    func clobber(vv ...*Value) bool {
    	for _, v := range vv {
    		v.reset(OpInvalid)
    		// Note: leave v.Block intact.  The Block field is used after clobber.
    	}
    	return true
    }
    
    // clobberIfDead resets v when use count is 1. Returns true.
    // clobberIfDead is used by rewrite rules to decrement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	// time to be a division by zero.
    	//
    	// Example:
    	//  const divisor = 0
    	//  var x int = 1/divisor
    	DivByZero
    
    	// NonNumericIncDec occurs when an increment or decrement operator is
    	// applied to a non-numeric value.
    	//
    	// Example:
    	//  func f() {
    	//  	var c = "c"
    	//  	c++
    	//  }
    	NonNumericIncDec
    
    	/* exprs > ptr */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. src/internal/types/errors/codes.go

    	// time to be a division by zero.
    	//
    	// Example:
    	//  const divisor = 0
    	//  var x int = 1/divisor
    	DivByZero
    
    	// NonNumericIncDec occurs when an increment or decrement operator is
    	// applied to a non-numeric value.
    	//
    	// Example:
    	//  func f() {
    	//  	var c = "c"
    	//  	c++
    	//  }
    	NonNumericIncDec
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
Back to top