Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 241 for IMMEDIATE (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    					}, func() {
    						startWG.Done()
    						_ = <-finishCh
    					})
    					cts.requestWG.Done()
    				}(matches, isResource, rdu)
    				if rng.Float32() < 0.8 {
    					if testDebugLogs {
    						t.Logf("Immediate request %#+v, plName=%s", rdu, expectedPLName)
    					}
    					close(finishCh)
    				} else {
    					cts.addHeldRequest(expectedPLName, rdu, finishCh)
    				}
    			}
    		}
    	}
    	startWG.Wait()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/FluentFuture.java

     * existing {@code ListenableFuture}, implemented atop a {@link ForwardingListenableFuture} that
     * forwards to that future and adds the desired methods.
     *
     * @since 23.0
     */
    @DoNotMock("Use FluentFuture.from(Futures.immediate*Future) or SettableFuture")
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public abstract class FluentFuture<V extends @Nullable Object>
        extends GwtFluentFutureCatchingSpecialization<V> {
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 11 19:08:44 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/loong64/asm.go

    			if o.type_ == 6 && p.To.Target() != nil {
    				otxt := p.To.Target().Pc - pc
    
    				// On loong64, the immediate value field of the conditional branch instructions
    				// BFPT and BFPT is 21 bits, and the others are 16 bits. The jump target address
    				// is to logically shift the immediate value in the instruction code to the left
    				// by 2 bits and then sign extend.
    				bound := int64(1 << (18 - 1))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

            if (!selected.has(n) && match(nodes[n])) {
              select(n);
            }
          }
        }
    
        updateButtons();
      }
    
      function toggleSvgSelect(elem) {
        // Walk up to immediate child of graph0
        while (elem != null && elem.parentElement != graph0) {
          elem = elem.parentElement;
        }
        if (!elem) return;
    
        // Disable regexp mode.
        regexpActive = false;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    	qs.lockAndSyncTime(ctx)
    	defer qs.lock.Unlock()
    
    	if qCfg.DesiredNumQueues > 0 {
    		// Adding queues is the only thing that requires immediate action
    		// Removing queues is handled by attrition, removing a queue when
    		// it goes empty and there are too many.
    		numQueues := len(qs.queues)
    		if qCfg.DesiredNumQueues > numQueues {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/FluentFuture.java

     * existing {@code ListenableFuture}, implemented atop a {@link ForwardingListenableFuture} that
     * forwards to that future and adds the desired methods.
     *
     * @since 23.0
     */
    @DoNotMock("Use FluentFuture.from(Futures.immediate*Future) or SettableFuture")
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public abstract class FluentFuture<V extends @Nullable Object>
        extends GwtFluentFutureCatchingSpecialization<V> {
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 11 19:08:44 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  7. cmd/format-erasure.go

    	}
    
    	tmpFormat := mustGetUUID()
    
    	// Purge any existing temporary file, okay to ignore errors here.
    	defer disk.Delete(context.TODO(), minioMetaBucket, tmpFormat, DeleteOptions{
    		Recursive: false,
    		Immediate: false,
    	})
    
    	// write to unique file.
    	if err = disk.WriteAll(context.TODO(), minioMetaBucket, tmpFormat, formatData); err != nil {
    		return err
    	}
    
    	// Rename file `uuid.json` --> `format.json`.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    	AddrOffset             // [R, X] - use address R + X
    	AddrPostReg            // [Rn], Rm - - use address Rn, set Rn = Rn + Rm
    )
    
    // A MemImmediate is a memory reference made up of a base R and immediate X.
    // The effective memory address is R or R+X depending on AddrMode.
    type MemImmediate struct {
    	Base RegSP
    	Mode AddrMode
    	imm  int32
    }
    
    func (MemImmediate) isArg() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  9. src/cmd/link/internal/arm64/asm.go

    					o0 = uint32(val >> 32)
    					o1 = uint32(val)
    				} else {
    					o0 = uint32(val)
    					o1 = uint32(val >> 32)
    				}
    
    				// The first instruction (ADRP) has a 21-bit immediate field,
    				// and the second (ADD or LD/ST) has a 12-bit immediate field.
    				// The first instruction is only for high bits, but to get the carry bits right we have
    				// to put the full addend, including the bottom 12 bits again.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  10. cmd/kube-proxy/app/server.go

    nSyncPeriod.Duration, "iptables-min-sync-period", o.config.IPTables.MinSyncPeriod.Duration, "The minimum period between iptables rule resyncs (e.g. '5s', '1m', '2h22m'). A value of 0 means every Service or EndpointSlice change will result in an immediate iptables resync.")
    
    	fs.DurationVar(&o.config.IPVS.SyncPeriod.Duration, "ipvs-sync-period", o.config.IPVS.SyncPeriod.Duration, "An interval (e.g. '5s', '1m', '2h22m') indicating how frequently various re-synchronizing and cleanup operations...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
Back to top