Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 354 for Gotype (0.23 sec)

  1. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_helper.h

        if (auto qtype = mlir::dyn_cast_or_null<UniformQuantizedType>(
                quant::GetUniformQuantizedTypeForBias(
                    quant_params, legacy_float_scale, adjusted_quant_dim))) {
          return quant::UniformQuantizedType::get(
              qtype.getFlags(), qtype.getStorageType(), qtype.getExpressedType(),
              qtype.getScale() * scale, qtype.getZeroPoint(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/notations/ClientModuleNotationParserFactory.java

            this.stringInterner = stringInterner;
        }
    
        @Nonnull
        @Override
        public NotationParser<Object, org.gradle.api.artifacts.ClientModule> create() {
            return NotationParserBuilder.toType(org.gradle.api.artifacts.ClientModule.class)
                    .fromCharSequence(new DependencyStringNotationConverter<>(instantiator, DefaultClientModule.class, stringInterner))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomDomParser.java

        public static final class AddDTDFilterInputStream extends FilterInputStream {
            private static final int MARK = 10000;
            private static final String DOCTYPE = "<!DOCTYPE project SYSTEM \"m2-entities.ent\">\n";
    
            private int count;
            private byte[] prefix = DOCTYPE.getBytes();
    
            public AddDTDFilterInputStream(InputStream in) throws IOException {
                super(new BufferedInputStream(in));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileOrUriNotationConverter.java

        private static final Pattern ENCODED_URI = Pattern.compile("%([0-9a-fA-F]{2})");
    
        public static NotationParser<Object, Object> parser() {
            return NotationParserBuilder
                .toType(Object.class)
                .typeDisplayName("a File or URI")
                .noImplicitConverters()
                .converter(new FileOrUriNotationConverter())
                .toComposite();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. src/syscall/net_wasip1.go

    	SHUT_WR   = 0x2
    	SHUT_RDWR = SHUT_RD | SHUT_WR
    )
    
    type sdflags = uint32
    
    //go:wasmimport wasi_snapshot_preview1 sock_accept
    //go:noescape
    func sock_accept(fd int32, flags fdflags, newfd unsafe.Pointer) Errno
    
    //go:wasmimport wasi_snapshot_preview1 sock_shutdown
    //go:noescape
    func sock_shutdown(fd int32, flags sdflags) Errno
    
    func Socket(proto, sotype, unused int) (fd int, err error) {
    	return 0, ENOSYS
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:12:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

                  np.random.uniform(size=bias_shape), dtype=dtypes.float32
              )
    
            self._kernel = np.random.uniform(size=y_shape).astype('f4')
            self._min = (-0.8, -0.8, -0.9)
            self._max = (0.9, 0.9, 1.0)
    
          @def_function.function(
              input_signature=[
                  tensor_spec.TensorSpec(
                      name='x', shape=x_signature, dtype=dtypes.float32
                  )
              ]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/UpgradeUtil.java

                        logger.info("Created {}/{} mapping.", index, docType);
                        return true;
                    }
                    logger.warn("Failed to create {}/{} mapping.", index, docType);
                } catch (final Exception e) {
                    logger.warn("Failed to create {}/{} mapping.", index, docType, e);
                }
            }
            return false;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ModuleVersionSelectorParsers.java

                } else if (dependency.getVersionConstraint().getRequiredVersion().isEmpty()) {
                    throw new InvalidUserDataException("Cannot convert a version catalog entry: '" + notation.get() + "' to an object of type ModuleVersionSelector. Version cannot be empty for '" + caller + "'.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

      enum Type {
        kSuccess,          // Succeeded.
        kNonFatalFailure,  // Failed but the test can continue.
        kFatalFailure      // Failed and the test should be terminated.
      };
    
      // C'tor.  TestPartResult does NOT have a default constructor.
      // Always use this constructor (with parameters) to create a
      // TestPartResult object.
      TestPartResult(Type a_type,
                     const char* a_file_name,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

      enum Type {
        kSuccess,          // Succeeded.
        kNonFatalFailure,  // Failed but the test can continue.
        kFatalFailure      // Failed and the test should be terminated.
      };
    
      // C'tor.  TestPartResult does NOT have a default constructor.
      // Always use this constructor (with parameters) to create a
      // TestPartResult object.
      TestPartResult(Type a_type,
                     const char* a_file_name,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top