Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,161 for INC (0.02 sec)

  1. platforms/software/dependency-management/src/scripts/process-log.groovy

    Map<String, Counter> excludeCounters = [:].withDefault { new Counter(uniqueExcludeCount++) }
    
    class Counter {
        final int id
        Counter(int id) { this.id = id}
    
        int counter = -1
    
        void inc() {
            counter++
        }
    
        String getFormattedId() {
            String.format('%06d', id)
        }
    }
    
    logFile.eachLine { line ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/BUILD

            "infeed_ops_xla_adjust_layout.cc",
            "legalize_tf_collective.cc",
            "legalize_tf_communication.cc",
            "tf_xla_passes.h.inc",
            "tfxla_device_specific_transforms.cc",
            "verify_tfxla_legalization.cc",
            "xla_legalize_tf.cc",
            "xla_legalize_tf_passes.h.inc",
        ],
        hdrs = [
            "passes.h",
        ],
        deps = [
            ":legalization_op_config",
            ":legalize_tf",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. pkg/test/loadbalancersim/network/helper.go

    }
    
    func (c *ConnectionHelper) Latency() *timeseries.Instance {
    	return &c.hist
    }
    
    func (c *ConnectionHelper) Request(request func(onDone func()), onDone func()) {
    	start := time.Now()
    	c.total.Inc()
    	c.active.Inc()
    
    	wrappedDone := func() {
    		// Calculate the latency for this request.
    		latency := time.Since(start)
    
    		// Add the latency observation.
    		c.hist.AddObservation(latency.Seconds(), time.Now())
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 18:19:25 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf_mlir_reduce_main.cc

    /* Copyright 2021 Google Inc. All Rights Reserved.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 21 20:13:57 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/counter/counter.go

    // type aliasing or restructuring the internal/counter package.
    import (
    	"flag"
    	"path"
    	"runtime/debug"
    
    	"golang.org/x/telemetry/internal/counter"
    )
    
    // Inc increments the counter with the given name.
    func Inc(name string) {
    	New(name).Inc()
    }
    
    // Add adds n to the counter with the given name.
    func Add(name string, n int64) {
    	New(name).Add(n)
    }
    
    // New returns a counter with the given name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 18:02:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/go/doc/comment/html.go

    					next = n
    				}
    				next = inc(next)
    			}
    			out.WriteString(">")
    			p.tight = !x.BlankBetween()
    			for _, blk := range item.Content {
    				p.block(out, blk)
    			}
    			p.tight = false
    		}
    		out.WriteString("</")
    		out.WriteString(kind)
    	}
    }
    
    // inc increments the decimal string s.
    // For example, inc("1199") == "1200".
    func inc(s string) string {
    	b := []byte(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/arm/l.go

    // Inferno utils/5l/asm.c
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/5l/asm.c
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/drop_while_shape_invariant.cc

    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    class DropWhileShapeInvariantPass
        : public impl::DropWhileShapeInvariantPassBase<
              DropWhileShapeInvariantPass> {
      void runOnOperation() override;
    };
    
    #define GEN_PASS_DEF_DROPWHILESHAPEINVARIANTINDEVICECLUSTERPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    class DropWhileShapeInvariantInDeviceClusterPass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. src/cmd/internal/telemetry/telemetry.go

    func StartWithUpload() {
    	telemetry.Start(telemetry.Config{
    		Upload:       true,
    		TelemetryDir: os.Getenv("TEST_TELEMETRY_DIR"),
    	})
    }
    
    // Inc increments the counter with the given name.
    func Inc(name string) {
    	counter.Inc(name)
    }
    
    // NewCounter returns a counter with the given name.
    func NewCounter(name string) *counter.Counter {
    	return counter.New(name)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_ops.cc

          >();
    }
    
    }  // namespace tfd
    }  // namespace mlir
    
    //===----------------------------------------------------------------------===//
    // TableGen'd op method definitions
    //===----------------------------------------------------------------------===//
    
    #define GET_OP_CLASSES
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 20 20:56:11 UTC 2021
    - 1.7K bytes
    - Viewed (0)
Back to top