Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 546 for necessarily (0.17 sec)

  1. pkg/config/analysis/analyzers/analyzers_test.go

    	analyzer         analysis.Analyzer
    	expected         []message
    	skipAll          bool
    }
    
    // Some notes on setting up tests for Analyzers:
    // * The resources in the input files don't necessarily need to be completely defined, just defined enough for the analyzer being tested.
    // * Please keep this list sorted alphabetically by the pkg.name of the analyzer for convenience
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. src/runtime/trace.go

    	// buffer, new threads added to allm after this point must necessarily observe
    	// the new generation number (sched.lock acts as a barrier).
    	//
    	// Threads that exit before this point and are on neither list explicitly
    	// flush their own buffers in traceThreadDestroy.
    	//
    	// Snapshotting freem is necessary because Ms can continue to emit events
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/MoreExecutors.java

       *       complex cases may require using thread pools or making deeper changes.)
       *   <li>If an exception propagates out of a {@code Runnable}, it is not necessarily seen by any
       *       {@code UncaughtExceptionHandler} for the thread. For example, if the callback passed to
       *       {@link Futures#addCallback} throws an exception, that exception will be typically be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    WARNING: A dependency catalog doesn't enforce the version of a dependency: like a regular dependency notation, it declares the requested version or a <<rich_versions.adoc#rich-version-constraints,rich version>>.
    That version is not necessarily the version that is selected during <<dependency_resolution#understanding_dependency_resolution,conflict resolution>>.
    
    [[sub:version-catalog-declaration]]
    === Declaring a version catalog
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/BaseEncoding.java

     * return hex.decode("deadbeef"); // throws an IllegalArgumentException
     * }</pre>
     *
     * <p>It is guaranteed that {@code encoding.decode(encoding.encode(x))} is always equal to {@code
     * x}, but the reverse does not necessarily hold.
     *
     * <table>
     * <caption>Encodings</caption>
     * <tr>
     * <th>Encoding
     * <th>Alphabet
     * <th>{@code char:byte} ratio
     * <th>Default padding
     * <th>Comments
     * <tr>
     * <td>{@link #base16()}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. pkg/controller/replicaset/replica_set.go

    }
    
    func reportSortingDeletionAgeRatioMetric(filteredPods []*v1.Pod, diff int) {
    	now := time.Now()
    	youngestTime := time.Time{}
    	// first we need to check all of the ready pods to get the youngest, as they may not necessarily be sorted by timestamp alone
    	for _, pod := range filteredPods {
    		if pod.CreationTimestamp.Time.After(youngestTime) && podutil.IsPodReady(pod) {
    			youngestTime = pod.CreationTimestamp.Time
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. pkg/volume/plugins.go

    // values.  Those config values are then set to an instance of VolumeConfig
    // and passed to the plugin.
    //
    // Values in VolumeConfig are intended to be relevant to several plugins, but
    // not necessarily all plugins.  The preference is to leverage strong typing
    // in this struct.  All config items must have a descriptive but non-specific
    // name (i.e, RecyclerMinimumTimeout is OK but RecyclerMinimumTimeoutForNFS is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  8. src/net/url/url.go

    // Parse parses a raw url into a [URL] structure.
    //
    // The url may be relative (a path, without a host) or absolute
    // (starting with a scheme). Trying to parse a hostname and path
    // without a scheme is invalid but may not necessarily return an
    // error, due to parsing ambiguities.
    func Parse(rawURL string) (*URL, error) {
    	// Cut off #frag
    	u, frag, _ := strings.Cut(rawURL, "#")
    	url, err := parse(u, false)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  9. docs/en/docs/deployment/docker.md

    Just avoiding the copy of files doesn't necessarily improve things too much, but because it used the cache for that step, it can **use the cache for the next step**. For example, it could use the cache for the instruction that installs dependencies with:
    
    ```Dockerfile
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/CacheBuilder.java

       * table is internally partitioned to try to permit the indicated number of concurrent updates
       * without contention. Because assignment of entries to these partitions is not necessarily
       * uniform, the actual concurrency observed may vary. Ideally, you should choose a value to
       * accommodate as many threads as will ever concurrently modify the table. Using a significantly
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top