Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 154 for cctype (0.1 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractFileTree.java

        @Override
        public FileTree visit(Closure closure) {
            return visit(fileVisitorFrom(closure));
        }
    
        static FileVisitor fileVisitorFrom(Closure closure) {
            return DefaultGroovyMethods.asType(closure, FileVisitor.class);
        }
    
        @Override
        public FileTree visit(final Action<? super FileVisitDetails> visitor) {
            return visit(new FileVisitor() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

                                       OpBuilder &builder) {
      auto x_type = mlir::cast<RankedTensorType>(x.getType());
      auto y_type = mlir::cast<RankedTensorType>(y.getType());
      auto result_type = GetStaticBroadcastType(x_type, y_type, broadcast_dims);
      if (!result_type) {
        emitError(loc) << "could not binary broadcast " << x_type << ", " << y_type
                       << " with broadcast_dims = " << broadcast_dims;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/MergeProvider.java

            for (Provider<R> provider : items) {
                Value<? extends R> value = Providers.internal(provider).calculateValue(consumer);
                if (value.isMissing()) {
                    return value.asType();
                }
                values.add(value);
            }
    
            ImmutableList.Builder<R> result = ImmutableList.builderWithExpectedSize(values.size());
            for (Value<? extends R> value : values) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:34 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/TransformBackedProvider.java

        protected final Class<OUT> type;
        protected final ProviderInternal<? extends IN> provider;
        protected final Transformer<? extends OUT, ? super IN> transformer;
    
        public TransformBackedProvider(
            @Nullable Class<OUT> type,
            ProviderInternal<? extends IN> provider,
            Transformer<? extends OUT, ? super IN> transformer
        ) {
            this.type = type;
            this.transformer = transformer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/testdata/invalid-configs/kms/invalid-config-type.yaml

    Rita Zhang <******@****.***> 1677726350 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 00:36:07 UTC 2023
    - 269 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/reduce-type-precision.mlir

    // RUN: tf-opt %s -split-input-file -tfl-reduce-type-precision -verify-diagnostics
    
    func.func @testI8ToI4WithinRange() -> (tensor<4xi8>) {
      %0 = arith.constant dense<[-8, 0, 1, 7]> : tensor<4xi8>
      // expected-error@+1 {{type of return operand 0 ('tensor<4xi4>') doesn't match function result type ('tensor<4xi8>')}}
      func.return %0 : tensor<4xi8>
    }
    
    func.func @testI8ToI4NotWithinRange() -> tensor<4xi8> {
      %0 = arith.constant dense<[-10, 2, 3, 8]> : tensor<4xi8>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 01 20:01:11 UTC 2023
    - 502 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/stablehlo_quantizer_odml_oss.ipynb

            "  rng = np.random.default_rng(seed=1235)\n",
            "  for _ in range(2):\n",
            "    yield {\n",
            "        'lhs_operand': rng.uniform(low=-1.0, high=1.0, size=input_shape).astype(\n",
            "            np.float32\n",
            "        )\n",
            "    }\n",
            "converter = tf.lite.TFLiteConverter.from_saved_model(saved_model_dir)\n",
            "converter.target_spec.supported_ops = [\n",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 12 03:40:43 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/vcstest/go/mod/gitrepo1.txt

    handle dir
    
    -- index.html --
    <!DOCTYPE html>
    <html>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 167 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/codeQuality/codeQuality/kotlin/config/checkstyle/suppressions.xml

    <?xml version="1.0"?>
    
    <!DOCTYPE suppressions PUBLIC
        "-//Puppy Crawl//DTD Suppressions 1.1//EN"
        "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
    
    <suppressions>
        <suppress checks="TypeName"
              files="bad_name.java"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 256 bytes
    - Viewed (0)
  10. src/net/http/cgi/host.go

    	}
    
    	if req.ContentLength > 0 {
    		env = append(env, fmt.Sprintf("CONTENT_LENGTH=%d", req.ContentLength))
    	}
    	if ctype := req.Header.Get("Content-Type"); ctype != "" {
    		env = append(env, "CONTENT_TYPE="+ctype)
    	}
    
    	envPath := os.Getenv("PATH")
    	if envPath == "" {
    		envPath = "/bin:/usr/bin:/usr/ucb:/usr/bsd:/usr/local/bin"
    	}
    	env = append(env, "PATH="+envPath)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top