Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,161 for INC (0.03 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/BUILD

            "passes/insert_weight_param.cc",
            "passes/lift_quantizable_spots_as_functions.cc",
            "passes/lift_quantizable_spots_as_functions_fusion.inc",
            "passes/lift_quantizable_spots_as_functions_simple.inc",
            "passes/merge_fusion_with_dequantize.cc",
            "passes/nchw_convolution_to_nhwc.cc",
            "passes/optimize_graph.cc",
            "passes/post_quantize.cc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/union_gauge.go

    	for _, gauge := range ug {
    		gauge.Set(x)
    	}
    }
    
    func (ug unionGauge) Add(x float64) {
    	for _, gauge := range ug {
    		gauge.Add(x)
    	}
    }
    
    func (ug unionGauge) Inc() {
    	for _, gauge := range ug {
    		gauge.Inc()
    	}
    }
    
    func (ug unionGauge) Dec() {
    	for _, gauge := range ug {
    		gauge.Dec()
    	}
    }
    
    func (ug unionGauge) SetToCurrentTime() {
    	for _, gauge := range ug {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 17:37:20 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/ir/gpu_ops.cc

    #include "tensorflow/compiler/mlir/tfrt/ir/gpu_ops.cpp.inc"
          >();
    }
    
    }  // namespace gpu
    }  // namespace tfrt
    
    //===----------------------------------------------------------------------===//
    // TableGen'd op method definitions
    //===----------------------------------------------------------------------===//
    
    #define GET_OP_CLASSES
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 00:21:42 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

      // Internal helper methods
    
      /** Circularly increment i. */
      final int inc(int i) {
        return (++i == items.length) ? 0 : i;
      }
    
      /**
       * Inserts element at current put position, advances, and signals. Call only when occupying
       * monitor.
       */
      private void insert(E x) {
        items[putIndex] = x;
        putIndex = inc(putIndex);
        ++count;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/mips/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.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/arm64/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.5K bytes
    - Viewed (0)
  7. test/typeparam/issue47925d.go

    	return I[T](J[T](g(x)))
    }
    
    type S struct {
    	x int
    }
    
    func (s *S) foo() {}
    func (s *S) bar() {}
    
    var cnt int
    
    func inc(s *S) *S {
    	cnt++
    	return s
    }
    
    func main() {
    	i := f(&S{x: 7}, inc)
    	if i.(*S).x != 7 {
    		panic("bad")
    	}
    	if cnt != 1 {
    		panic("multiple calls")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 687 bytes
    - Viewed (0)
  8. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompilerFactory.java

    import org.gradle.internal.jvm.Jvm;
    import org.gradle.internal.time.Time;
    import org.gradle.internal.time.Timer;
    import sbt.internal.inc.AnalyzingCompiler;
    import sbt.internal.inc.AnalyzingCompiler$;
    import sbt.internal.inc.RawCompiler;
    import sbt.internal.inc.ScalaInstance;
    import sbt.internal.inc.ZincUtil;
    import sbt.internal.inc.classpath.ClassLoaderCache;
    import scala.Option;
    import scala.collection.JavaConverters;
    import xsbti.ArtifactInfo;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. samples/jwt-server/testdata/README.MD

    ### Creating CA
    
    ```
    openssl genrsa -out ca.key 2048
    
    openssl req -new -x509 -days 3650 -key ca.key -subj "/C=US/ST=AZ/O=Acme, Inc./CN=Acme Root CA" -out ca.crt
    ```
    
    ### Creating Server Certificate
    ```
    openssl req -newkey rsa:2048 -nodes -keyout server.key -subj "/C=US/ST=AZ/O=Acme, Inc./CN=*.com" -out server.csr
    ```
    
    ### Signing Certificate with CA
    ```
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 12 01:55:25 UTC 2022
    - 566 bytes
    - Viewed (0)
  10. 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)
Back to top