Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 189 for integers (0.7 sec)

  1. android/guava/src/com/google/common/collect/Comparators.java

       * reached, but not the other, the shorter iterable is considered to be less than the longer one.
       * For example, a lexicographical natural ordering over integers considers {@code [] < [1] < [1,
       * 1] < [1, 2] < [2]}.
       *
       * <p>Note that {@code Collections.reverseOrder(lexicographical(comparator))} is not equivalent to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. pkg/apis/batch/types.go

    	// must not contain duplicates. At least one element is required.
    	// The indexes are represented as intervals separated by commas.
    	// The intervals can be a decimal integer or a pair of decimal integers separated by a hyphen.
    	// The number are listed in represented by the first and last element of the series,
    	// separated by a hyphen.
    	// For example, if the completed indexes are 1, 3, 4, 5 and 7, they are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/types.go

    	// must not contain duplicates. At least one element is required.
    	// The indexes are represented as intervals separated by commas.
    	// The intervals can be a decimal integer or a pair of decimal integers separated by a hyphen.
    	// The number are listed in represented by the first and last element of the series,
    	// separated by a hyphen.
    	// For example, if the completed indexes are 1, 3, 4, 5 and 7, they are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

                is ClassId -> printer.append(value.asString())
                is DeprecationInfo -> renderDeprecationInfo(value, printer)
                is Visibility -> printer.append(value::class.java.simpleName)
                // Unsigned integers
                is UByte -> printer.append(value.toString())
                is UShort -> printer.append(value.toString())
                is UInt -> printer.append(value.toString())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. src/encoding/binary/binary.go

    	"errors"
    	"io"
    	"math"
    	"reflect"
    	"slices"
    	"sync"
    )
    
    var errBufferTooSmall = errors.New("buffer too small")
    
    // A ByteOrder specifies how to convert byte slices into
    // 16-, 32-, or 64-bit unsigned integers.
    //
    // It is implemented by [LittleEndian], [BigEndian], and [NativeEndian].
    type ByteOrder interface {
    	Uint16([]byte) uint16
    	Uint32([]byte) uint32
    	Uint64([]byte) uint64
    	PutUint16([]byte, uint16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. src/math/big/nat.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements unsigned multi-precision integers (natural
    // numbers). They are the building blocks for the implementation
    // of signed integers, rationals, and floating-point numbers.
    //
    // Caution: This implementation relies on the function "alias"
    //          which assumes that (nat) slice capacities are never
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  7. src/syscall/syscall_darwin.go

    	p := (*byte)(unsafe.Pointer(&buf[0]))
    	bytes, err := ByteSliceFromString(name)
    	if err != nil {
    		return nil, err
    	}
    
    	// Magic sysctl: "setting" 0.3 to a string name
    	// lets you read back the array of integers form.
    	if err = sysctl([]_C_int{0, 3}, p, &n, &bytes[0], uintptr(len(name))); err != nil {
    		return nil, err
    	}
    	return buf[0 : n/siz], nil
    }
    
    func direntIno(buf []byte) (uint64, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

    // Rint is specified as RoundHalfToEven, which happens to be the same behavior
    // as TF_RoundOp, so lower to TF_RoundOp.
    def LowerRintOp : Pat<(TF_RintOp:$res TF_FloatTensor:$input), (TF_RoundOp $input)>;
    
    // Rounds on integers should just be bypassed.
    def LowerRoundOpOnIntTensor : Pat<
      (TF_RoundOp:$res TF_IntTensor:$input),
      (TF_IdentityOp $input)>;
    
    // Implements TF Round on floats using basic operations. TF Round is specified
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  9. src/time/zoneinfo_read.go

    	} else {
    		switch p[0] {
    		case 0:
    			version = 1
    		case '2':
    			version = 2
    		case '3':
    			version = 3
    		default:
    			return nil, errBadData
    		}
    	}
    
    	// six big-endian 32-bit integers:
    	//	number of UTC/local indicators
    	//	number of standard/wall indicators
    	//	number of leap seconds
    	//	number of transition times
    	//	number of local time zones
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. src/encoding/gob/encode.go

    	e.next = enc.freeList
    	enc.freeList = e
    }
    
    // Unsigned integers have a two-state encoding. If the number is less
    // than 128 (0 through 0x7F), its value is written directly.
    // Otherwise the value is written in big-endian byte order preceded
    // by the byte length, negated.
    
    // encodeUint writes an encoded unsigned integer to state.b.
    func (state *encoderState) encodeUint(x uint64) {
    	if x <= 0x7F {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top