Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,161 for INC (0.03 sec)

  1. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/PropertiesFileAwareClasspathResourceHasherTest.groovy

            def propertiesEntry2 = contextFor(context, 'some/path/to/bar.properties', ["created-by": "1.8.0_232-b18 (Azul Systems, Inc.)"])
            def propertiesEntry3 = contextFor(context, 'some/other/path/to/fuzz.properties', ["created-by": "1.8.0_232-b18 (Azul Systems, Inc.)"])
    
            def hash1 = unfilteredHasher.hash(propertiesEntry1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/podresources/server_v1.go

    	metrics.PodResourcesEndpointRequestsTotalCount.WithLabelValues("v1").Inc()
    	metrics.PodResourcesEndpointRequestsGetCount.WithLabelValues("v1").Inc()
    
    	if !utilfeature.DefaultFeatureGate.Enabled(kubefeatures.KubeletPodResourcesGet) {
    		metrics.PodResourcesEndpointErrorsGetCount.WithLabelValues("v1").Inc()
    		return nil, fmt.Errorf("PodResources API Get method disabled")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 13:00:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. index.yaml

        icon: https://min.io/resources/img/logo/MINIO_wordmark.png
        keywords:
        - minio
        - storage
        - object-storage
        - s3
        - cluster
        maintainers:
        - email: ******@****.***
          name: MinIO, Inc
        name: minio
        sources:
        - https://github.com/minio/minio
        urls:
        - https://charts.min.io/helm-releases/minio-5.2.0.tgz
        version: 5.2.0
      - apiVersion: v1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/ir/BUILD

        tbl_outs = [
            (
                ["-gen-op-decls"],
                "QuantOps.h.inc",
            ),
            (
                ["-gen-op-defs"],
                "QuantOps.cc.inc",
            ),
            (
                [
                    "-gen-dialect-decls",
                    "-dialect=quantfork",
                ],
                "QuantOpsDialect.h.inc",
            ),
            (
                [
                    "-gen-dialect-defs",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 29 02:59:58 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/BUILD

            "ir/tfl_ops_dialect.cc.inc",
            "ir/tfl_ops_dialect.h.inc",
            "ir/tfl_ops_enums.cc.inc",
            "ir/tfl_ops_enums.h.inc",
            "ir/tfl_ops_interface.cc.inc",
            "ir/tfl_ops_interface.h.inc",
            "runtime_verifiers.inc",
            "utils/attribute_utils.cc",
        ],
        hdrs = [
            "ir/tfl_ops.h",
            "transforms/passes.h",
            "utils/attribute_utils.h",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/loopbce.go

    		min, nxt = ind.Args[0], n
    	} else {
    		// Not a recognized induction variable.
    		return
    	}
    
    	if nxt.Args[0] == ind { // nxt = ind + inc
    		inc = nxt.Args[1]
    	} else if nxt.Args[1] == ind { // nxt = inc + ind
    		inc = nxt.Args[0]
    	} else {
    		panic("unreachable") // one of the cases must be true from the above.
    	}
    
    	return
    }
    
    // findIndVar finds induction variables in a function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. src/crypto/rand/rand_plan9.go

    		return 0, err
    	}
    	var (
    		counter uint64
    		block   [aes.BlockSize]byte
    	)
    	inc := func() {
    		counter++
    		if counter == 0 {
    			panic("crypto/rand counter wrapped")
    		}
    		byteorder.LePutUint64(block[:], counter)
    	}
    	blockCipher.Encrypt(r.key[:aes.BlockSize], block[:])
    	inc()
    	blockCipher.Encrypt(r.key[aes.BlockSize:], block[:])
    	inc()
    	r.mu.Unlock()
    
    	n = len(b)
    	for len(b) >= aes.BlockSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/internal/fuzz/pcg.go

    	if seed := godebugSeed(); seed != nil {
    		now = uint64(*seed)
    	}
    	inc := globalInc.Add(1)
    	r.state = now
    	r.inc = (inc << 1) | 1
    	r.step()
    	r.state += now
    	r.step()
    	return r
    }
    
    func (r *pcgRand) step() {
    	r.state *= multiplier
    	r.state += r.inc
    }
    
    func (r *pcgRand) save(randState, randInc *uint64) {
    	*randState = r.state
    	*randInc = r.inc
    }
    
    func (r *pcgRand) restore(randState, randInc uint64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:28:14 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. test/typeparam/issue47258.go

    	int32 | int64 | float64 | complex64
    }
    
    //go:noline
    func inc[T Numeric](x T) T {
    	x++
    	return x
    }
    func main() {
    	if got, want := inc(int32(5)), int32(6); got != want {
    		panic(fmt.Sprintf("got %d, want %d", got, want))
    	}
    	if got, want := inc(float64(5)), float64(6.0); got != want {
    		panic(fmt.Sprintf("got %d, want %d", got, want))
    	}
    	if got, want := inc(complex64(5)), complex64(6.0); got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 686 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/BUILD

        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "clustering_passes",
        hdrs = [
            "clustering_passes.h",
        ],
        textual_hdrs = [
            "clustering_passes.h.inc",
        ],
        deps = [
            ":extract_head_tail_outside_compilation",
            ":extract_outside_compilation",
            ":hoist_broadcast_read",
            ":mark_ops_for_outside_compilation",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 17:50:14 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top