Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 340 for Decrement (0.17 sec)

  1. src/cmd/internal/obj/link.go

    	Pc       int64     // for back ends or assembler: virtual or actual program counter, depending on phase
    	Pos      src.XPos  // source position of this instruction
    	Spadj    int32     // effect of instruction on stack pointer (increment or decrement amount)
    	As       As        // assembler opcode
    	Reg      int16     // 2nd source operand
    	RegTo2   int16     // 2nd destination operand
    	Mark     uint16    // bitmask of arch-specific items
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/MapMakerInternalMap.java

        /**
         * Removes an entry from within a table. All entries following the removed node can stay, but
         * all preceding ones need to be cloned.
         *
         * <p>This method does not decrement count for the removed entry, but does decrement count for
         * all partially collected entries which are skipped. As such callers which are modifying count
         * must re-read it after calling removeFromChain.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    	counted := new(countedConn)
    	counted.Conn = conn
    
    	d.mu.Lock()
    	defer d.mu.Unlock()
    	d.total++
    	d.live++
    
    	runtime.SetFinalizer(counted, d.decrement)
    	return counted, nil
    }
    
    func (d *countingDialer) decrement(*countedConn) {
    	d.mu.Lock()
    	defer d.mu.Unlock()
    	d.live--
    }
    
    func (d *countingDialer) Read() (total, live int64) {
    	d.mu.Lock()
    	defer d.mu.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. src/go/ast/ast.go

    	}
    
    	// A SendStmt node represents a send statement.
    	SendStmt struct {
    		Chan  Expr
    		Arrow token.Pos // position of "<-"
    		Value Expr
    	}
    
    	// An IncDecStmt node represents an increment or decrement statement.
    	IncDecStmt struct {
    		X      Expr
    		TokPos token.Pos   // position of Tok
    		Tok    token.Token // INC or DEC
    	}
    
    	// An AssignStmt node represents an assignment or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        /**
         * Removes an entry from within a table. All entries following the removed node can stay, but
         * all preceding ones need to be cloned.
         *
         * <p>This method does not decrement count for the removed entry, but does decrement count for
         * all partially collected entries which are skipped. As such callers which are modifying count
         * must re-read it after calling removeFromChain.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/mips/obj0.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: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  7. src/math/big/natdiv.go

    the remainder r̂ for a given q̂ is u - q̂·v, which must be positive. If it is
    negative, then the guess q̂ is too big.
    
    This gives us a way to compute q. First compute q̂ with 2-by-1-digit division.
    Then, while u < q̂·v, decrement q̂; this loop executes at most twice, because
    q̂ ≤ q+2.
    
    
    Scaling Inputs
    
    The Good Guess Guarantee requires that the top digit of v (vₙ₋₁) be at least B/2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  8. src/runtime/panic.go

    			// There were panic messages and startpanic_m
    			// says it's okay to try to print them.
    
    			// startpanic_m set panicking, which will
    			// block main from exiting, so now OK to
    			// decrement runningPanicDefers.
    			runningPanicDefers.Add(-1)
    
    			printpanics(msgs)
    		}
    
    		docrash = dopanic_m(gp, pc, sp)
    	})
    
    	if docrash {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  9. src/go/printer/testdata/parser.go

    	case token.ARROW:
    		// send statement
    		arrow := p.pos
    		p.next() // consume "<-"
    		y := p.parseRhs()
    		return &ast.SendStmt{x[0], arrow, y}
    
    	case token.INC, token.DEC:
    		// increment or decrement
    		s := &ast.IncDecStmt{x[0], p.pos, p.tok}
    		p.next() // consume "++" or "--"
    		return s
    	}
    
    	// expression
    	return &ast.ExprStmt{x[0]}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  10. pkg/controller/replicaset/replica_set_test.go

    	pod.DeletionTimestamp = &metav1.Time{Time: time.Now()}
    	pod.ResourceVersion = "1"
    	manager.expectations.ExpectDeletions(logger, rsKey, []string{controller.PodKey(&pod)})
    
    	// A pod added with a deletion timestamp should decrement deletions, not creations.
    	manager.addPod(logger, &pod)
    
    	queueRS, _ := manager.queue.Get()
    	if queueRS != rsKey {
    		t.Fatalf("Expected to find key %v in queue, found %v", rsKey, queueRS)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
Back to top