Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for Whatever (0.18 sec)

  1. src/cmd/cgo/gcc.go

    				n.Kind = "iconst"
    				// Turn decimal into hex, just for consistency
    				// with enum-derived constants. Otherwise
    				// in the cgo -godefs output half the constants
    				// are in hex and half are in whatever the #define used.
    				n.Const = fmt.Sprintf("%#x", i)
    			} else if n.Define[0] == '\'' {
    				if _, err := parser.ParseExpr(n.Define); err == nil {
    					n.Kind = "iconst"
    					n.Const = n.Define
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. gradle/verification-metadata.xml

    -->
    <!--
       This file declares the dependency verification metadata for dependencies used by Gradle.
       When you upgrade a dependency, verification is likely to fail, so you will need to update
       it.
    
       If, for whatever reason, verification fails for you, DO NOT DISABLE IT but follow the
       troubleshooting guide at https://docs.gradle.org/current/userguide/dependency_verification.html
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    ----
    
    [[sec:bootstrapping-verification]]
    === Bootstrapping dependency verification
    
    It's worth mentioning that while Gradle can generate a dependency verification file for you, you should always check whatever Gradle generated for you because your build may _already_ contain compromised dependencies without you knowing about it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_3x.md

        general mechanism. The dispatcher now exposes all in-flight calls via its
        `runningCalls()` and `queuedCalls()` methods. You can write code that
        selects calls by tag, host, or whatever, and invokes `Call.cancel()` on the
        ones that are no longer necessary.
    
     *  **OkHttp no longer uses the global `java.net.Authenticator` by default.**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  5. cmd/iam-store.go

    	// cached.updatedAt is more recent than the refresh cycle began.
    	if cache.updatedAt.Before(loadedAt) {
    		// No one has updated anything since the config was loaded,
    		// so we just replace whatever is on the disk into memory.
    		cache.iamGroupPolicyMap = newCache.iamGroupPolicyMap
    		cache.iamGroupsMap = newCache.iamGroupsMap
    		cache.iamPolicyDocsMap = newCache.iamPolicyDocsMap
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    }
    
    // next provides a new sample to the controller.
    //
    // input is the sample, setpoint is the desired point, and period is how much
    // time (in whatever unit makes the most sense) has passed since the last sample.
    //
    // Returns a new value for the variable it's controlling, and whether the operation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug.go

    	registers     []Register
    	stackOffset   func(LocalSlot) int32
    	ctxt          *obj.Link
    
    	// The names (slots) associated with each value, indexed by Value ID.
    	valueNames [][]SlotID
    
    	// The current state of whatever analysis is running.
    	currentState stateAtPC
    	changedVars  *sparseSet
    	changedSlots *sparseSet
    
    	// The pending location list entry for each user variable, indexed by VarID.
    	pendingEntries []pendingEntry
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    //
    //	struct {
    //		uintptr_t Context;
    //	};
    //
    // If the Context field is 0, the context function is being called to
    // record the current traceback context. It should record in the
    // Context field whatever information is needed about the current
    // point of execution to later produce a stack trace, probably the
    // stack pointer and PC. In this case the context function will be
    // called from C code.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer.go

    	// goal, and subtract out everything else. This is of course impossible; the definition
    	// is circular! However, this impossible definition contains a key insight: the amount
    	// we're *going* to use matters just as much as whatever we're currently using.
    	//
    	// Consider if the heap shrinks to 1/10th its size, leaving behind lots of free and
    	// unscavenged memory. mappedReady - heapAlloc will be quite large, because of that free
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		cacher.clock.Sleep(1 * time.Second)
    	}()
    
    	// Watch hangs waiting on watchcache being initialized.
    	// Ensure that it terminates when its context is cancelled
    	// (e.g. the request is terminated for whatever reason).
    	_, err = cacher.Watch(ctx, "pods/ns", storage.ListOptions{ResourceVersion: "0"})
    	if !utilfeature.DefaultFeatureGate.Enabled(features.ResilientWatchCacheInitialization) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top