Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 84 for statistics (0.18 sec)

  1. platforms/software/resources/src/main/java/org/gradle/internal/resource/transfer/DefaultExternalResourceConnector.java

            }
    
            @Override
            public String toString() {
                return "External resources access stats are not recorded. Run Gradle with -D" + SYSPROP_KEY + "=(count|trace) to record statistics";
            }
        }
    
        private static class CountingStats implements ExternalResourceAccessStats {
            private final AtomicInteger resourceCount = new AtomicInteger();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/op_stat_pass.cc

                                std::vector<std::string> accepted_dialects = {})
          : accepted_dialects_(accepted_dialects), os_(os), total_ops_(0) {}
    
      // Prints the resultant operation statistics pos_t iterating over the module.
      void runOnOperation() override;
    
      // Prints summary of op stats.
      void PrintSummary();
    
      // Keeps track of dtype counts per op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. android/guava-tests/benchmark/com/google/common/cache/LoadingCacheSingleThreadBenchmark.java

        // Currently, this is going into /dev/null, but I'll fix that
        System.out.println("hit rate: " + hit / req);
      }
    
      // for proper distributions later:
      // import JSci.maths.statistics.ProbabilityDistribution;
      // int key = (int) dist.inverse(random.nextDouble());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 3.4K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherRegistry.java

         */
        @CheckReturnValue
        SnapshotHierarchy updateVfsAfterBuildFinished(SnapshotHierarchy root);
    
        /**
         * Get statistics about the received changes.
         */
        FileWatchingStatistics getAndResetStatistics();
    
        /**
         * Configures debug logging.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. src/runtime/mpagecache.go

    	// slower, safer thing by iterating over each bit individually.
    	for i := uint(0); i < 64; i++ {
    		if c.cache&(1<<i) != 0 {
    			p.chunkOf(ci).free1(pi + i)
    
    			// Update density statistics.
    			p.scav.index.free(ci, pi+i, 1)
    		}
    		if c.scav&(1<<i) != 0 {
    			p.chunkOf(ci).scavenged.setRange(pi+i, 1)
    		}
    	}
    
    	// Since this is a lot like a free, we need to make sure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 14:30:00 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. cmd/veeam-sos-api.go

    //     system.xml. Vendors can work with Veeam Product Management and the Alliances team on getting approval to integrate
    //     specific system recommendations based on current support case statistics and storage performance possibilities.
    //     Vendors might change the settings based on the configuration and scale out of the solution (more storage nodes =>
    //     higher task limit).
    //
    //     <S3ConcurrentTaskLimit>
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 20 18:54:52 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/python/converter_python_api.h

    // representing the contents of the converted model. When extended_return
    // flag is set to true returns a dictionary that contains string representation
    // of the converted model and some statistics like arithmetic ops count.
    // `debug_info_str` contains the `GraphDebugInfo` proto. When
    // `enable_mlir_converter` is True, use MLIR-based conversion instead of
    // TOCO conversion.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/net/rpc/debug.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package rpc
    
    /*
    	Some HTML presented at http://machine:port/debug/rpc
    	Lists services, their methods, and some statistics, still rudimentary.
    */
    
    import (
    	"fmt"
    	"html/template"
    	"net/http"
    	"slices"
    	"strings"
    )
    
    const debugText = `<html>
    	<body>
    	<title>Services</title>
    	{{range .}}
    	<hr>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/benchmark.h

      int64_t max_iters = 0;   // Maximum iterations to run, ignored if <= 0.
      int64_t max_micros = 0;  // Maximum microseconds to run, ignored if <= 0.
    };
    
    // Stats holds statistics collected during benchmarking.
    struct Stats {
      std::vector<int64_t> per_iter_us;  // Per-iteration deltas in us.
      int64_t total_us;                  // Total time in us.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/configuration/BuildFeature.java

         * Use {@link Provider#getOrNull()} to safely retrieve a nullable value or check {@link Provider#isPresent()}.
         * <p>
         * This method is primarily useful for gathering feature usage statistics, as it corresponds to the user intention.
         * <p>
         * Note that the requested state does not always imply that the feature is active in the build.
         * In case an effective status is needed, use {@link #getActive()}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 30 19:28:25 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top