Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for insight (0.34 sec)

  1. pkg/ptr/pointer_test.go

    	"istio.io/istio/pkg/test"
    )
    
    // Cannot use assert.assertEqual due to import loop
    func assertEqual[T any](t test.Failer, a, b T) {
    	t.Helper()
    	if !cmp.Equal(a, b) {
    		t.Fatalf("Left: %v\nRight: %v", a, b)
    	}
    }
    
    func TestEmpty(t *testing.T) {
    	type ts struct{}
    	assertEqual(t, Empty[string](), "")
    	assertEqual(t, Empty[int](), 0)
    	assertEqual(t, Empty[ts](), ts{})
    	assertEqual(t, Empty[*ts](), nil)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 23:31:08 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/compact.go

    	// - Compare to see if (local compact_time) = (remote compact_time).
    	// - If yes, increment both local and remote compact_time, and do a compaction.
    	// - If not, set local to remote compact_time.
    	//
    	// Technical details/insights:
    	//
    	// The protocol here is lease based. If one compactor CAS successfully, the others would know it when they fail in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 17 02:54:36 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ListenableFuture.java

     *
     * <pre>{@code
     * final String name = ...;
     * inFlight.add(name);
     * ListenableFuture<Result> future = service.query(name);
     * future.addListener(new Runnable() {
     *   public void run() {
     *     processedCount.incrementAndGet();
     *     inFlight.remove(name);
     *     lastProcessed.set(name);
     *     logger.info("Done with {0}", name);
     *   }
     * }, executor);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. pkg/ctrlz/assets/static/css/dark_syntax-1.14.0.css

    /* // limitations under the License. */
    
    /* PrismJS 1.14.0
    http://prismjs.com/download.html#themes=prism-tomorrow&languages=clike+javascript+bash+docker+go+java+protobuf+python+yaml */
    /**
     * prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML
     * Based on https://github.com/chriskempson/tomorrow-theme
     * @author Rose Pritchard
     */
    
    .token.comment,
    .token.block-comment,
    .token.prolog,
    .token.doctype,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableMapEntry.java

       * created arrays to have a {@code @Nullable} element type even when they're created directly with
       * {@code new ImmutableMapEntry[...]}, so it seems silly to insist on that only here.
       */
      @SuppressWarnings("unchecked") // Safe as long as the javadocs are followed
      static <K, V> ImmutableMapEntry<K, V>[] createEntryArray(int size) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    - Local profile reports
    - Low level profiling
    
    == What is a build scan?
    
    https://scans.gradle.com/[Build scans] are a persistent, shareable record of what happened when running a build.
    Build scans provide insights into your build that you can use to identify and fix performance bottlenecks.
    
    In Gradle 4.3 and above, you can create a build scan using the `--scan` command line option:
    
    [listing.terminal]
    ----
    $ gradle build --scan
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. docs/compression/README.md

    # Compression Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
    
    MinIO server allows streaming compression to ensure efficient disk space usage.
    Compression happens inflight, i.e objects are compressed before being written to disk(s).
    MinIO uses [`klauspost/compress/s2`](https://github.com/klauspost/compress/tree/master/s2)
    streaming compression due to its stability and performance.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 11 11:55:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. src/net/main_test.go

    		}
    		gss = append(gss, stack)
    	}
    	slices.Sort(gss)
    	return gss
    }
    
    func printInflightSockets() {
    	sos := sw.Sockets()
    	if len(sos) == 0 {
    		return
    	}
    	fmt.Fprintf(os.Stderr, "Inflight sockets:\n")
    	for s, so := range sos {
    		fmt.Fprintf(os.Stderr, "%v: %v\n", s, so)
    	}
    	fmt.Fprintf(os.Stderr, "\n")
    }
    
    func printSocketStats() {
    	sts := sw.Stats()
    	if len(sts) == 0 {
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    Develocity provides much richer data compared to what can be obtained from CI servers.
    For example, you can get insights into the execution of single tasks, how many tasks were retrieved from the cache, how long it took to download from the cache, the properties that were used to calculate the cache key and more.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top