Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,381 for INC (0.08 sec)

  1. pkg/lazy/lazy_test.go

    	"istio.io/istio/pkg/test/util/assert"
    )
    
    func TestLazySerial(t *testing.T) {
    	t.Run("retry", func(t *testing.T) {
    		computations := atomic.NewInt32(0)
    		l := NewWithRetry(func() (int32, error) {
    			res := computations.Inc()
    			if res > 2 {
    				return res, nil
    			}
    
    			return res, fmt.Errorf("not yet")
    		})
    		res, err := l.Get()
    		assert.Error(t, err)
    		assert.Equal(t, res, 1)
    
    		res, err = l.Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 17:36:41 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/controller/repair.go

    func (c *Repair) runOnce() error {
    	return retry.RetryOnConflict(retry.DefaultBackoff, func() error {
    		err := c.doRunOnce()
    		if err != nil {
    			clusterIPRepairReconcileErrors.Inc()
    		}
    		return err
    	})
    }
    
    // doRunOnce verifies the state of the cluster IP allocations and returns an error if an unrecoverable problem occurs.
    func (c *Repair) doRunOnce() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  3. src/cmd/internal/telemetry/telemetry_bootstrap.go

    //go:build cmd_go_bootstrap || compiler_bootstrap
    
    package telemetry
    
    import "flag"
    
    type dummyCounter struct{}
    
    func (dc dummyCounter) Inc() {}
    
    func Start()                                                              {}
    func StartWithUpload()                                                    {}
    func Inc(name string)                                                     {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/BUILD

        ],
        alwayslink = True,
    )
    
    cc_library(
        name = "tf_legalize_hlo",
        srcs = [
            "transforms/generated_legalize_hlo.inc",
            "transforms/legalize_hlo.cc",
        ],
        hdrs = [
            "transforms/passes.h",
            "transforms/passes.h.inc",
        ],
        copts = [
            "-Ithird_party",
        ],
        deps = [
            ":hlo_legalize_tf_inc_gen",
            ":hlo_matchers",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/BUILD

    gentbl_cc_library(
        name = "tfr_ops_inc_gen",
        compatible_with = get_compatible_with_portable(),
        tbl_outs = [
            (
                ["-gen-op-decls"],
                "ir/tfr_ops.h.inc",
            ),
            (
                ["-gen-op-defs"],
                "ir/tfr_ops.cc.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "ir/tfr_ops.td",
        deps = [
            ":tfr_ops_td_files",
        ],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompiler.java

    import org.gradle.language.base.internal.compile.Compiler;
    import org.gradle.util.internal.GFileUtils;
    import sbt.internal.inc.Analysis;
    import sbt.internal.inc.IncrementalCompilerImpl;
    import sbt.internal.inc.Locate;
    import sbt.internal.inc.LoggedReporter;
    import sbt.internal.inc.PlainVirtualFileConverter;
    import sbt.internal.inc.ScalaInstance;
    import scala.Option;
    import xsbti.T2;
    import xsbti.VirtualFile;
    import xsbti.compile.AnalysisContents;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_ops.cc

    #define GET_OP_CLASSES
    #include "tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_ops.cc.inc"
    
    namespace mlir {
    namespace quant {
    
    void RegisterOpsHook(TF::TensorFlowDialect &dialect) {
      dialect.addOperations<
    #define GET_OP_LIST
    #include "tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_ops.cc.inc"
          >();
    }
    
    void RegisterOps() {
      TF_DIALECT_REGISTER_ADDITIONAL_OPERATIONS(RegisterOpsHook);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 24 12:48:34 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/tensorflow/BUILD

                ["-gen-rewriters"],
                "fallback_to_flex_patterns.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "fallback_to_flex_patterns.td",
        deps = [":ptq_td_files"],
    )
    
    cc_library(
        name = "tf_quantization_passes",
        srcs = [
            "fallback_to_flex_ops.cc",
            "fallback_to_flex_patterns.inc",
            "tf_to_quant.cc",
        ],
        hdrs = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top