Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 939 for integers (0.16 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/binding/DefaultStructBindingsStoreTest.groovy

            [Object, Serializable]                | [Serializable]
            [Object, Number, Comparable, Integer] | [Integer]
            [Integer, Object, Number, Comparable] | [Integer]
            [Integer, Double]                     | [Integer, Double]
            [Integer, Object, Double]             | [Integer, Double]
            [Integer, Object, Comparable, Double] | [Integer, Double]
        }
    
        String getName(ModelType<?> type) {
            type.displayName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    def BothElementTypesSameWidthIntOrFloat : Constraint<CPred<
      "getElementTypeOrSelf($0.getType()).isIntOrFloat() && "
      "getElementTypeOrSelf($1.getType()).isIntOrFloat()">,
      "element types must be integers or floats">;
    
    // TODO(mgester): Due to restrictions of xla::BitcastConvertType we currently
    // only lower if both input and output types are int or float and have same width
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. 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)
  4. src/encoding/gob/decode.go

    	value.SetBool(state.decodeUint() != 0)
    }
    
    // decInt8 decodes an integer and stores it as an int8 in value.
    func decInt8(i *decInstr, state *decoderState, value reflect.Value) {
    	v := state.decodeInt()
    	if v < math.MinInt8 || math.MaxInt8 < v {
    		error_(i.ovfl)
    	}
    	value.SetInt(v)
    }
    
    // decUint8 decodes an unsigned integer and stores it as a uint8 in value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  5. 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)
  6. guava/src/com/google/common/net/InetAddresses.java

        }
    
        return getInet4Address(Ints.toByteArray(coercedHash));
      }
    
      /**
       * Returns an integer representing an IPv4 address regardless of whether the supplied argument is
       * an IPv4 address or not.
       *
       * <p>IPv6 addresses are <b>coerced</b> to IPv4 addresses before being converted to integers.
       *
       * <p>As long as there are applications that assume that all IP addresses are IPv4 addresses and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/response-model.md

    You can use **type annotations** the same way you would for input data in function **parameters**, you can use Pydantic models, lists, dictionaries, scalar values like integers, booleans, etc.
    
    === "Python 3.10+"
    
        ```Python hl_lines="16  21"
        {!> ../../../docs_src/response_model/tutorial001_01_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="18  23"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/InetAddresses.java

        }
    
        return getInet4Address(Ints.toByteArray(coercedHash));
      }
    
      /**
       * Returns an integer representing an IPv4 address regardless of whether the supplied argument is
       * an IPv4 address or not.
       *
       * <p>IPv6 addresses are <b>coerced</b> to IPv4 addresses before being converted to integers.
       *
       * <p>As long as there are applications that assume that all IP addresses are IPv4 addresses and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.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 Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/batch/v1/generated.proto

      optional JobTemplateSpec jobTemplate = 5;
    
      // The number of successful finished jobs to retain. Value must be non-negative integer.
      // Defaults to 3.
      // +optional
      optional int32 successfulJobsHistoryLimit = 6;
    
      // The number of failed finished jobs to retain. Value must be non-negative integer.
      // Defaults to 1.
      // +optional
      optional int32 failedJobsHistoryLimit = 7;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top