Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 177 for Decrement (0.14 sec)

  1. pilot/pkg/model/jwks_resolver.go

    				e.lastRefreshedTime, e.lastUsedTime, k.issuer)
    			r.keyEntries.Delete(k)
    			return true
    		}
    
    		oldPubKey := e.pubKey
    		// Increment the WaitGroup counter.
    		wg.Add(1)
    
    		go func() {
    			// Decrement the counter when the goroutine completes.
    			defer wg.Done()
    			jwksURI := k.jwksURI
    			if jwksURI == "" {
    				var err error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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. 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)
  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/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)
  9. 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)
  10. 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)
Back to top