Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,164 for integers (0.27 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/rewrite_util.td

    include "mlir/IR/PatternBase.td"
    
    // Here, the element type can be any integer or float type. But, note that only
    // 32 bit integers are supported for the values.
    class GetScalarOfType<int value> : NativeCodeCall<
      "GetScalarOfType(getElementTypeOrSelf($0)," # value # ")">;
    
    // Here, the element type can be any integer or float type. But, note that only
    // 32 bit integers are supported for the values.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 21 02:54:35 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/CombinatorsTest.kt

                "foo"
            )
        }
    
        @Test
        fun `can parse integers`() {
            val parser = combinator.integerLiteral
    
            // regular integers
            assertSuccess(parser("0"))
            assertSuccess(parser("5"))
            assertSuccess(parser("13"))
            assertSuccess(parser("1_000_000"))
    
            // unsigned integers
            assertSuccess(parser("0u"))
            assertSuccess(parser("5U"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. pkg/apis/resource/namedresources.go

    	VersionValue *string
    }
    
    // NamedResourcesIntSlice contains a slice of 64-bit integers.
    type NamedResourcesIntSlice struct {
    	// Ints is the slice of 64-bit integers.
    	Ints []int64
    }
    
    // NamedResourcesStringSlice contains a slice of strings.
    type NamedResourcesStringSlice struct {
    	// Strings is the slice of strings.
    	Strings []string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/encoding/binary/varint.go

    package binary
    
    // This file implements "varint" encoding of 64-bit integers.
    // The encoding is:
    // - unsigned integers are serialized 7 bits at a time, starting with the
    //   least significant bits
    // - the most significant bit (msb) in each output byte indicates if there
    //   is a continuation byte (msb = 1)
    // - signed integers are mapped to unsigned integers using "zig-zag"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/resource/v1alpha2/namedresources.go

    	VersionValue *string `json:"version,omitempty" protobuf:"bytes,10,opt,name=version"`
    }
    
    // NamedResourcesIntSlice contains a slice of 64-bit integers.
    type NamedResourcesIntSlice struct {
    	// Ints is the slice of 64-bit integers.
    	//
    	// +listType=atomic
    	Ints []int64 `json:"ints" protobuf:"bytes,1,opt,name=ints"`
    }
    
    // NamedResourcesStringSlice contains a slice of strings.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/doc.go

    // license that can be found in the LICENSE file.
    
    // Package stringintconv defines an Analyzer that flags type conversions
    // from integers to strings.
    //
    // # Analyzer stringintconv
    //
    // stringintconv: check for string(int) conversions
    //
    // This checker flags conversions of the form string(x) where x is an integer
    // (but not byte or rune) type. Such conversions are discouraged because they
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 982 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/numerical_utils.cc

    // multiplier.
    //
    // Args:
    //   double_multiplier: The double-precision floating-point multiplier.
    //
    // Returns:
    //   A quantized multiplier, represented as a pair of integers: the quantized
    //   multiplier and the shift amount. The shift amount is the number of bits
    //   that the quantized multiplier should be shifted to the right before being
    //   used.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 17 19:57:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. src/runtime/libfuzzer.go

    	end := unsafe.Pointer(&__stop___sancov_cntrs)
    
    	// PC tables are arrays of ptr-sized integers representing pairs [PC,PCFlags] for every instrumented block.
    	// The number of PCs and PCFlags is the same as the number of 8-bit counters. Each PC table entry has
    	// the size of two ptr-sized integers. We allocate one more byte than what we actually need so that we can
    	// get a pointer representing the end of the PC table array.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 23 01:12:02 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  9. docs/debugging/healing-bin/main.go

    					}
    					buf := bytes.NewBuffer(nil)
    					if _, err = msgp.CopyToJSON(buf, bytes.NewReader(b)); err != nil {
    						return err
    					}
    
    					dec := json.NewDecoder(buf)
    					// Use number to preserve integers.
    					dec.UseNumber()
    					var htr map[string]interface{}
    					if err = dec.Decode(&htr); err != nil {
    						return err
    					}
    					ht[file.Name] = htr
    				}
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/teststdio/testdata/fib.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build test_run
    
    // Compute Fibonacci numbers with two goroutines
    // that pass integers back and forth.  No actual
    // concurrency, just threads and synchronization
    // and foreign code on multiple pthreads.
    
    package main
    
    import (
    	"runtime"
    	"strconv"
    
    	"cgostdio/stdio"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 965 bytes
    - Viewed (0)
Back to top