Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for types (0.49 sec)

  1. doc/go1.17_spec.html

    </p>
    
    <h2 id="Properties_of_types_and_values">Properties of types and values</h2>
    
    <h3 id="Type_identity">Type identity</h3>
    
    <p>
    Two types are either <i>identical</i> or <i>different</i>.
    </p>
    
    <p>
    A <a href="#Type_definitions">defined type</a> is always different from any other type.
    Otherwise, two types are identical if their <a href="#Types">underlying</a> type literals are
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.cc

        const auto* shapes_and_types =
            ic->output_handle_shapes_and_types(output.index);
        if (shapes_and_types == nullptr) return nullptr;
    
        for (const auto& p : *shapes_and_types) {
          auto* out_shape_and_type = handle_data.add_shape_and_type();
          ic->ShapeHandleToProto(p.shape, out_shape_and_type->mutable_shape());
          out_shape_and_type->set_dtype(p.dtype);
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * ClosingFuture)}.
         *
         * @param <V1> the type returned by the first future
         * @param <V2> the type returned by the second future
         * @param <V3> the type returned by the third future
         * @param <V4> the type returned by the fourth future
         * @param <V5> the type returned by the fifth future
         * @param <U> the type returned by the function
         */
        public interface ClosingFunction5<
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

              </description>
              <type>String</type>
            </field>
            <field>
              <name>properties</name>
              <version>3.0.0+</version>
              <description>Properties about the contributor, such as an instant messenger handle.</description>
              <type>Properties</type>
              <association xml.mapStyle="inline">
                <type>String</type>
                <multiplicity>*</multiplicity>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.5.md

    * fix nil dereference when doing a volume type check on persistent volumes ([#39529](https://github.com/kubernetes/kubernetes/pull/39529), [@sjenning](https://github.com/sjenning))
    * Generate OpenAPI definition for inlined types ([#39466](https://github.com/kubernetes/kubernetes/pull/39466), [@mbohlool](https://github.com/mbohlool))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 136.4K bytes
    - Viewed (1)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDataClassConverters.kt

                token,
            )
        }
        add(FirErrors.ACTUAL_TYPE_ALIAS_TO_NULLABLE_TYPE) { firDiagnostic ->
            ActualTypeAliasToNullableTypeImpl(
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
        add(FirErrors.ACTUAL_TYPE_ALIAS_TO_NOTHING) { firDiagnostic ->
            ActualTypeAliasToNothingImpl(
                firDiagnostic as KtPsiDiagnostic,
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 208.3K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    equal to the corresponding item from the specified items. static <T> Matcher<T> instanceOf(java.lang.Class<?> type) Creates a matcher that matches when the examined object is an instance of the specified type, as determined by calling the Class.isInstance(Object) method on that type, passing the the examined object. static <T> Matcher<T> is(java.lang.Class<T> type) Deprecated. use isA(Class type) instead. static <T> Matcher<T> is(Matcher<T> matcher) Decorates another Matcher, retaining its behaviour,...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 236.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

    internal class IncompatibleTypesImpl(
        override val typeA: KtType,
        override val typeB: KtType,
        firDiagnostic: KtPsiDiagnostic,
        token: KtLifetimeToken,
    ) : KtAbstractFirDiagnostic<KtElement>(firDiagnostic, token), KtFirDiagnostic.IncompatibleTypes
    
    internal class IncompatibleTypesWarningImpl(
        override val typeA: KtType,
        override val typeB: KtType,
        firDiagnostic: KtPsiDiagnostic,
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 225.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

            override val diagnosticClass get() = IncompatibleTypes::class
            val typeA: KtType
            val typeB: KtType
        }
    
        interface IncompatibleTypesWarning : KtFirDiagnostic<KtElement> {
            override val diagnosticClass get() = IncompatibleTypesWarning::class
            val typeA: KtType
            val typeB: KtType
        }
    
        interface TypeVarianceConflictError : KtFirDiagnostic<PsiElement> {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 171.1K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    5; public static final int ENTITY_REF = 6; public static final int IGNORABLE_WHITESPACE = 7; public static final int PROCESSING_INSTRUCTION = 8; public static final int COMMENT = 9; public static final int DOCDECL = 10; public static final String[] TYPES; public static final String FEATURE_PROCESS_NAMESPACES = http://xmlpull.org/v1/doc/features.html#process-namespaces; public static final String FEATURE_REPORT_NAMESPACE_ATTRIBUTES = http://xmlpull.org/v1/doc/features.html#report-namespace-prefixes;...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 164.6K bytes
    - Viewed (0)
Back to top