Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 547 for _counters (0.56 sec)

  1. src/runtime/coverage/coverage.go

    	return cfile.WriteCounters(w)
    }
    
    // ClearCounters clears/resets all coverage counter variables in the
    // currently running program. It returns an error if the program in
    // question was not built with the "-cover" flag. Clearing of coverage
    // counters is also not supported for programs not using atomic
    // counter mode (see more detailed comments below for the rationale
    // here).
    func ClearCounters() error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/metrics.cc

        "/tensorflow/core/saved_model/write/count",
        "The number of SavedModels successfully written.", "write_version");
    
    // Counter that tracks total number and `write_version` of SavedModels read.
    auto* saved_model_read_counter = monitoring::Counter<1>::New(
        "/tensorflow/core/saved_model/read/count",
        "The number of SavedModels successfully loaded.", "write_version");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. docs/en/docs/async.md

    But as you go away from the counter and sit at the table with a number for your turn, you can switch 🔀 your attention to your crush, and "work" ⏯ 🤓 on that. Then you are again doing something very "productive" as is flirting with your crush 😍.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. src/internal/coverage/cfile/testdata/harness.go

    	} else {
    		got := fmt.Sprintf("%v", err)
    		checkWant("meta data", got)
    	}
    
    	// Now try to emit counter data file to a bad dir.
    	if err := coverage.WriteCountersDir(mangled); err == nil {
    		log.Fatal("expected error emitting counter data to bad dir")
    	} else {
    		got := fmt.Sprintf("%v", err)
    		checkWant("counter data", got)
    	}
    }
    
    func emitToUnwritableDir() {
    	log.SetPrefix("emitToUnwritableDir: ")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/types.go

    	// This is an action which might be taken on a pod failure - the counter towards
    	// .backoffLimit, represented by the job's .status.failed field, is not
    	// incremented and a replacement pod is created.
    	PodFailurePolicyActionIgnore PodFailurePolicyAction = "Ignore"
    
    	// This is an action which might be taken on a pod failure - the pod failure
    	// is handled in the default way - the counter towards .backoffLimit,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/loader.cc

    namespace tensorflow {
    namespace {
    
    auto* load_attempt_count = monitoring::Counter<2>::New(
        "/tensorflow/cc/saved_model/load_attempt_count",
        "The number of times a SavedModel was successfully loaded.", "model_path",
        "status");
    auto* load_latency = monitoring::Counter<1>::New(
        "/tensorflow/cc/saved_model/load_latency",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. src/cmd/internal/cov/readcovdata.go

    	// Read counter data files.
    	for k, cdf := range p.CounterDataFiles {
    		cf, err := os.Open(cdf)
    		if err != nil {
    			return r.fatal("opening counter data file %s: %s", cdf, err)
    		}
    		defer func(f *os.File) {
    			f.Close()
    		}(cf)
    		var mr *MReader
    		mr, err = NewMreader(cf)
    		if err != nil {
    			return r.fatal("creating reader for counter data file %s: %s", cdf, err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/group_by_dialect.cc

    void GroupByDialectPass::processFunction(
        mlir::func::FuncOp func, int& counter,
        llvm::SmallDenseSet<StringRef>& dialects, Operation* module) {
      // don't re-process functions we generated
      if (func->getAttr("dialect")) return;
      processRegion(func.getBody(), counter, dialects, module);
    }
    
    void GroupByDialectPass::processRegion(mlir::Region& region, int& counter,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/status/server_test.go

    my_metric{} 0
    # TYPE my_other_metric counter
    my_other_metric{} 0
    # TYPE my_metric counter
    my_metric{} 0
    `,
    			expectParseError: true,
    		},
    		{
    			name: "conflict metric labeled",
    			envoy: `# TYPE my_metric counter
    my_metric{app="foo"} 0
    `,
    			app: `# TYPE my_metric counter
    my_metric{app="bar"} 0
    `,
    			output: `# TYPE my_metric counter
    my_metric{app="foo"} 0
    # TYPE my_metric counter
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/GidGenerator.java

         *
         * GIDs generated this way will be in the form of
         * {@code <class-name-hash-32> <obj-hash-32> <counter-32>}
         */
        public String generateGid(String pbxClassName, int hash) {
            int counter = 0;
            String gid;
            do {
                gid = String.format("%08X%08X%08X", pbxClassName.hashCode(), hash, counter++);
            } while (generatedAndReservedIds.contains(gid));
            generatedAndReservedIds.add(gid);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top