Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for IMMEDIATE (0.09 sec)

  1. android/guava/src/com/google/common/util/concurrent/ListenableFuture.java

     *       {@link AbstractFuture}.)
     * </ul>
     *
     * <p><b>Test doubles</b>: If you need a {@code ListenableFuture} for your test, try a {@link
     * SettableFuture} or one of the methods in the {@link Futures#immediateFuture Futures.immediate*}
     * family. <b>Avoid</b> creating a mock or stub {@code Future}. Mock and stub implementations are
     * fragile because they assume that only certain methods will be called and because they often
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller.go

    	var healthCheckError error
    
    	if kmsPluginCloseGracePeriod < minKMSPluginCloseGracePeriod {
    		kmsPluginCloseGracePeriod = minKMSPluginCloseGracePeriod
    	}
    
    	// really make sure that the immediate check does not hang
    	var cancel context.CancelFunc
    	ctx, cancel = context.WithTimeout(ctx, kmsPluginCloseGracePeriod)
    	defer cancel()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. futures/listenablefuture1/src/com/google/common/util/concurrent/ListenableFuture.java

     *       {@link AbstractFuture}.)
     * </ul>
     *
     * <p><b>Test doubles</b>: If you need a {@code ListenableFuture} for your test, try a {@link
     * SettableFuture} or one of the methods in the {@link Futures#immediateFuture Futures.immediate*}
     * family. <b>Avoid</b> creating a mock or stub {@code Future}. Mock and stub implementations are
     * fragile because they assume that only certain methods will be called and because they often
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ListenableFuture.java

     *       {@link AbstractFuture}.)
     * </ul>
     *
     * <p><b>Test doubles</b>: If you need a {@code ListenableFuture} for your test, try a {@link
     * SettableFuture} or one of the methods in the {@link Futures#immediateFuture Futures.immediate*}
     * family. <b>Avoid</b> creating a mock or stub {@code Future}. Mock and stub implementations are
     * fragile because they assume that only certain methods will be called and because they often
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. docs/bucket/lifecycle/README.md

                    "NewerNoncurrentVersions": 5
                }
            }
        ]
    }
    ```
    Note: This rule has an implicit zero NoncurrentDays, which makes the expiry of those 'extra' noncurrent versions immediate.
    
    #### 3.2.b Automatic removal of all versions (MinIO only extension)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/mips.s

    	//	{
    	//		outcode(int($1), &$2, int($4), &$6);
    	//	}
    	SLL	$4, R1, R2
    
    	//	LSHW imm ',' rreg
    	//	{
    	//		outcode(int($1), &$2, 0, &$4);
    	//	}
    	SLL	$4, R1
    
    	//
    	// move immediate: macro for lui+or, addi, addis, and other combinations
    	//
    	//	LMOVW imm ',' rreg
    	//	{
    	//		outcode(int($1), &$2, 0, &$4);
    	//	}
    	MOVW	$1, R1
    	MOVW	$1, R1
    
    	//	LMOVW ximm ',' rreg
    	//	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. pkg/envoy/proxy.go

    	if network.AllIPv6(e.NodeIPs) {
    		proxyLocalAddressType = "v6"
    	}
    	startupArgs := []string{
    		"-c", fname,
    		"--drain-time-s", fmt.Sprint(int(e.DrainDuration.AsDuration().Seconds())),
    		"--drain-strategy", "immediate", // Clients are notified as soon as the drain process starts.
    		"--local-address-ip-version", proxyLocalAddressType,
    		// Reduce default flush interval from 10s to 1s. The access log buffer size is 64k and each log is ~256 bytes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. src/runtime/mwbbuf.go

    func (b *wbBuf) reset() {
    	start := uintptr(unsafe.Pointer(&b.buf[0]))
    	b.next = start
    	if testSmallBuf {
    		// For testing, make the buffer smaller but more than
    		// 1 write barrier's worth, so it tests both the
    		// immediate flush and delayed flush cases.
    		b.end = uintptr(unsafe.Pointer(&b.buf[wbMaxEntriesPerCall+1]))
    	} else {
    		b.end = start + uintptr(len(b.buf))*unsafe.Sizeof(b.buf[0])
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/dom.go

    	return label[v]
    }
    
    func linkOrig(v, w ID, ancestor []ID) {
    	ancestor[w] = v
    }
    
    // dominatorsSimple computes the dominator tree for f. It returns a slice
    // which maps block ID to the immediate dominator of that block.
    // Unreachable blocks map to nil. The entry block maps to nil.
    func dominatorsSimple(f *Func) []*Block {
    	// A simple algorithm for now
    	// Cooper, Harvey, Kennedy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/sparsetree.go

    	n++
    	t[b.ID].exit = n
    	// reserve n+1 for exit+1, n+2 is next free number, returned.
    	return n + 2
    }
    
    // Sibling returns a sibling of x in the dominator tree (i.e.,
    // a node with the same immediate dominator) or nil if there
    // are no remaining siblings in the arbitrary but repeatable
    // order chosen. Because the Child-Sibling order is used
    // to assign entry and exit numbers in the treewalk, those
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.1K bytes
    - Viewed (0)
Back to top