Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 737 for numKeys (0.12 sec)

  1. tensorflow/c/experimental/filesystem/modular_filesystem_registration.cc

      if (scheme == nullptr)
        return errors::InvalidArgument(
            "Attempted to register filesystem with `nullptr` URI scheme");
      return OkStatus();
    }
    
    // Checks if the plugin and core ABI numbers match.
    //
    // If the numbers don't match, plugin cannot be loaded.
    static Status CheckABI(int pluginABI, int coreABI, StringPiece where) {
      if (pluginABI != coreABI)
        return errors::FailedPrecondition(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 07 22:08:43 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  2. platforms/software/publish/src/main/java/org/gradle/api/publish/VariantVersionMappingStrategy.java

         */
        void fromResolutionOf(Configuration configuration);
    
    
        /**
         * Declares that this variant should use versions from the resolution
         * of the configuration provided as an argument.
         *
         * @param configurationName a resolvable configuration name where to pick resolved version numbers
         */
        void fromResolutionOf(String configurationName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/README.md

    just include the error numbers and error strings, but also the signal numbers
    and a wide variety of miscellaneous constants. The constants come from the list
    of include files in the `includes_${uname}` variable. A regex then picks out
    the desired `#define` statements, and generates the corresponding Go constants.
    The error numbers and strings are generated from `#include <errno.h>`, and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 14:32:58 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  4. src/net/port.go

    //
    // Some system resolvers will return a valid port number when given a number
    // over 65536 (see https://golang.org/issues/11715). Alas, the parser
    // can't bail early on numbers > 65536. Therefore reasonably large/small
    // numbers are parsed in full and rejected if invalid.
    func parsePort(service string) (port int, needsLookup bool) {
    	if service == "" {
    		// Lock in the legacy behavior that an empty string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:31:56 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  5. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/files/SamplesFilesMiscIntegrationTest.groovy

            def dslDir = sample.dir.file(dsl)
            executer.inDirectory(dslDir)
            def reportsDir = dslDir.file('build/reports')
            reportsDir.createDir().file('my-report.pdf').touch()
            reportsDir.file('numbers.csv').touch()
    
            and: "A PDF report in a subdirectory of build/reports"
            reportsDir.createDir("metrics").file("scatterPlot.pdf").touch()
    
            when:
            succeeds('moveReports')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. src/math/big/doc.go

    // license that can be found in the LICENSE file.
    
    /*
    Package big implements arbitrary-precision arithmetic (big numbers).
    The following numeric types are supported:
    
    	Int    signed integers
    	Rat    rational numbers
    	Float  floating-point numbers
    
    The zero value for an [Int], [Rat], or [Float] correspond to 0. Thus, new
    values can be declared in the usual ways and denote 0 without further
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/sparsetree.go

    // a node with the same immediate dominator) or nil if there
    // are no remaining siblings in the arbitrary but repeatable
    // order chosen. Because the Child-Sibling order is used
    // to assign entry and exit numbers in the treewalk, those
    // numbers are also consistent with this order (i.e.,
    // Sibling(x) has entry number larger than x's exit number).
    func (t SparseTree) Sibling(x *Block) *Block {
    	return t[x.ID].sibling
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/dev_linux.go

    // license that can be found in the LICENSE file.
    
    // Functions to access/create device major and minor numbers matching the
    // encoding used by the Linux kernel and glibc.
    //
    // The information below is extracted and adapted from bits/sysmacros.h in the
    // glibc sources:
    //
    // dev_t in glibc is 64-bit, with 32-bit major and minor numbers. glibc's
    // default encoding is MMMM Mmmm mmmM MMmm, where M is a hex digit of the major
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 19:01:58 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_test.go

    import (
    	"reflect"
    	"strings"
    	"testing"
    )
    
    // Test_ServiceSpecRemovedFieldProtobufNumberReservation tests that the reserved protobuf field numbers
    // for removed fields are not re-used. DO NOT remove this test for any reason, this ensures that tombstoned
    // protobuf field numbers are not accidentally reused by other fields.
    func Test_ServiceSpecRemovedFieldProtobufNumberReservation(t *testing.T) {
    	obj := reflect.ValueOf(ServiceSpec{}).Type()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 03:01:07 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/primitives/DoublesTest.java

            Long.MAX_VALUE
          };
    
      private static final double[] VALUES = Doubles.concat(NUMBERS, new double[] {NaN});
    
      public void testHashCode() {
        for (double value : VALUES) {
          assertThat(Doubles.hashCode(value)).isEqualTo(((Double) value).hashCode());
        }
      }
    
      public void testIsFinite() {
        for (double value : NUMBERS) {
          assertThat(Doubles.isFinite(value))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 31.5K bytes
    - Viewed (0)
Back to top