Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 95 for IMMEDIATE (0.17 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    // (See comment in go/types.identical, case *Interface, for more.)
    func (h Hasher) shallowHash(t types.Type) uint32 {
    	// t is the type of an interface method (Signature),
    	// its params or results (Tuples), or their immediate
    	// elements (mostly Slice, Pointer, Basic, Named),
    	// so there's no need to optimize anything else.
    	switch t := t.(type) {
    	case *aliases.Alias:
    		return h.shallowHash(aliases.Unalias(t))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/func.go

    	freeBlocks *Block // free Blocks linked by succstorage[0].b.  All other fields except ID are 0/nil.
    
    	cachedPostorder  []*Block   // cached postorder traversal
    	cachedIdom       []*Block   // cached immediate dominators
    	cachedSdom       SparseTree // cached dominator tree
    	cachedLoopnest   *loopnest  // cached loop nest information
    	cachedLineStarts *xposmap   // cached map/set of xpos to integers
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. cmd/erasure-object_test.go

    		files, _ := disk.ListDir(ctx, "", bucket, object, -1)
    		for _, file := range files {
    			if file != "xl.meta" {
    				disk.Delete(ctx, bucket, pathJoin(object, file), DeleteOptions{
    					Recursive: true,
    					Immediate: false,
    				})
    			}
    		}
    	}
    
    	gr, err := xl.GetObjectNInfo(ctx, bucket, object, nil, nil, opts)
    	if err != nil {
    		if err != toObjectErr(errErasureReadQuorum, bucket, object) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/RegularImmutableMap.java

      // ImmutableMap.Builder, so that it can remember any DuplicateKey encountered and produce an
      // exception for a later buildOrThrow(). If builder is null that means that a duplicate
      // key will lead to an immediate exception. If it is not null then a duplicate key will instead be
      // stored in the builder, which may use it to throw an exception later.
      static <K, V> RegularImmutableMap<K, V> create(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  5. CONTRIBUTING.md

    There is a somewhat non-obvious filter present on the page that allows you to control which type of messages are displayed.
    The filter is a dropdown box that appears when you click the `Severity ⬇️ ` label in the black header bar to the immediate right of the Gradle version.
    
    If you have a large number of messages of different types, filtering by severity to see only `Error`s can be helpful when processing the report.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/a.out.go

    	C_MBCON    // could be C_MOVCON or C_BITCON
    	C_MOVCON   // generated by a 16-bit constant, optionally inverted and/or shifted by multiple of 16
    	C_BITCON   // bitfield and logical immediate masks
    	C_ADDCON2  // 24-bit constant
    	C_LCON     // 32-bit constant
    	C_MOVCON2  // a constant that can be loaded with one MOVZ/MOVN and one MOVK
    	C_MOVCON3  // a constant that can be loaded with one MOVZ/MOVN and two MOVKs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  7. pkg/ledger/smt.go

    	atomicUpdate bool
    }
    
    // this is the closest time.Duration comes to Forever, with a duration of ~145 years
    // we can'tree use int64 max because the duration gets added to Now(), and the ints
    // rollover, causing an immediate expiration (ironic, eh?)
    const forever time.Duration = 1<<(63-1) - 1
    
    // newSMT creates a new smt given a keySize, hash function, cache (nil will be defaulted to TTLCache), and retention
    // duration for old nodes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 14K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top