Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 61 for cctype (0.1 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/Collectors.java

            private final Class<? extends T> type;
            protected final Collector<T> delegate;
            private final ValueCollector<T> valueCollector;
    
            public TypedCollector(@Nullable Class<? extends T> type, Collector<T> delegate) {
                this.type = type;
                this.delegate = delegate;
                this.valueCollector = ValueSanitizers.collectorFor(type);
            }
    
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. src/database/sql/fakedb_test.go

    			}
    			mrows = append(mrows, mrow)
    		}
    
    		var colType []string
    		for _, column := range s.colName {
    			colType = append(colType, t.coltype[t.columnIndex(column)])
    		}
    
    		t.mu.Unlock()
    
    		setMRows = append(setMRows, mrows)
    		setColumns = append(setColumns, s.colName)
    		setColType = append(setColType, colType)
    
    		if s.next == nil {
    			break
    		}
    		s = s.next
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/schemas_test.go

    	//         dates:
    	//           type: array
    	//           items:
    	//             type: string
    	//             format: date-time
    	//      metadata:
    	//        type: object
    	//        additionalProperties:
    	//          type: object
    	//          properties:
    	//            key:
    	//              type: string
    	//            values:
    	//              type: array
    	//              items: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/openapi/schemas_test.go

    	//         dates:
    	//           type: array
    	//           items:
    	//             type: string
    	//             format: date-time
    	//      metadata:
    	//        type: object
    	//        additionalProperties:
    	//          type: object
    	//          properties:
    	//            key:
    	//              type: string
    	//            values:
    	//              type: array
    	//              items: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 17:18:27 UTC 2022
    - 13K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/tests/compose-uniform-quantized-type.mlir

    // RUN: odml-to-stablehlo-opt --compose-uniform-quantized-type \
    // RUN:     --split-input-file --verify-diagnostics %s | FileCheck %s
    
    module {
    // CHECK-LABEL: quantized_conv_op
    // CHECK-SAME: %[[ARG:.*]]: tensor<1x3x3x4xf32>
      func.func @quantized_conv_op(%arg0: tensor<1x3x3x4xf32>) -> tensor<1x3x3x4xf32> {
        %1 = stablehlo.constant dense<1.000000e+03> : tensor<1x1x1x1xf32>  // Input inverse scale.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 37K bytes
    - Viewed (0)
  6. src/syscall/mkerrors.sh

    echo ')'
    
    # Run C program to print error and syscall strings.
    (
    	echo -E "
    #include <stdio.h>
    #include <stdlib.h>
    #include <errno.h>
    #include <ctype.h>
    #include <string.h>
    #include <signal.h>
    
    #define nelem(x) (sizeof(x)/sizeof((x)[0]))
    
    enum { A = 'A', Z = 'Z', a = 'a', z = 'z' }; // avoid need for single quotes below
    
    int errors[] = {
    "
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 21:22:22 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.cc

      ConvertToMlirShape(input_shape, &shape);
      auto type = RankedTensorType::get(shape, elt_type);
    
    #define CONVERT_FLAT(DTYPE, CTYPE) \
      case DTYPE:                      \
        return ConvertFlatTensor<CTYPE>(input_tensor, type);
    
      // TODO(fengliuai): customize the conversions for quantized types.
      switch (input_dtype) {
        CONVERT_FLAT(DT_BOOL, bool)
        CONVERT_FLAT(DT_FLOAT, float)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/javadoc/Javadoc.java

     *   jaxDoclet
     * }
     *
     * dependencies {
     *   //jaxDoclet "some.interesting:Dependency:1.0"
     * }
     *
     * task generateRestApiDocs(type: Javadoc) {
     *   source = sourceSets.main.allJava
     *   destinationDir = reporting.file("rest-api-docs")
     *   options.docletpath = configurations.jaxDoclet.files.asType(List)
     *   options.doclet = "com.lunatech.doclets.jax.jaxrs.JAXRSDoclet"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

                    throw new IllegalArgumentException(String.format("Cannot set the value of a property of type %s with element type %s using a provider with element type %s.", collectionType.getName(), elementType.getName(), collectionProp.getElementType().getName()));
                }
            }
            setSupplier(new CollectingSupplier(new ElementsFromCollectionProvider<>(p)));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/BUILD

            "//tensorflow/compiler/mlir/quantization/stablehlo/cc:saved_model_export",
            "//tensorflow/compiler/mlir/quantization/stablehlo/cc:saved_model_import",
            "//tensorflow/compiler/mlir/quantization/stablehlo/cc:types",
            "//tensorflow/compiler/mlir/quantization/stablehlo/cc:weight_only_ptq",
            "//tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration:component",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
Back to top