Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 525 for Primitive (0.41 sec)

  1. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/psiTypeProvider/FirIdeNormalAnalysisSourceModuleAnalysisApiKtTypeByPsiTypeProviderTestGenerated.java

        runTest("analysis/analysis-api/testData/components/psiTypeProvider/psiType/asKtType/nullableString.kt");
      }
    
      @Test
      @TestMetadata("primitive.kt")
      public void testPrimitive() {
        runTest("analysis/analysis-api/testData/components/psiTypeProvider/psiType/asKtType/primitive.kt");
      }
    
      @Test
      @TestMetadata("primitiveArrayWithComplexType.kt")
      public void testPrimitiveArrayWithComplexType() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 28 16:10:06 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/Doubles.java

    import javax.annotation.CheckForNull;
    
    /**
     * Static utility methods pertaining to {@code double} primitives, that are not already found in
     * either {@link Double} or {@link Arrays}.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/PrimitivesExplained">primitive utilities</a>.
     *
     * @author Kevin Bourrillion
     * @since 1.0
     */
    @GwtCompatible(emulated = true)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/primitives/Doubles.java

    import javax.annotation.CheckForNull;
    
    /**
     * Static utility methods pertaining to {@code double} primitives, that are not already found in
     * either {@link Double} or {@link Arrays}.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/PrimitivesExplained">primitive utilities</a>.
     *
     * @author Kevin Bourrillion
     * @since 1.0
     */
    @GwtCompatible(emulated = true)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/eventbus/Subscribe.java

    import java.lang.annotation.Target;
    
    /**
     * Marks a method as an event subscriber.
     *
     * <p>The type of event will be indicated by the method's first (and only) parameter, which cannot
     * be primitive. If this annotation is applied to methods with zero parameters, or more than one
     * parameter, the object containing the method will not be able to register for event delivery from
     * the {@link EventBus}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/typeconversion/DefaultTypeConverter.java

            }), File.class);
            registerConverters();
        }
    
        @Override
        public Object convert(Object notation, Class<?> type, boolean primitive) throws TypeConversionException {
            if (type.isInstance(notation)) {
                return notation;
            }
            if (!primitive && notation == null) {
                return null;
            }
    
            if (type.isEnum()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/psiTypeProvider/FirStandaloneNormalAnalysisSourceModuleAnalysisApiKtTypeByPsiTypeProviderTestGenerated.java

        runTest("analysis/analysis-api/testData/components/psiTypeProvider/psiType/asKtType/nullableString.kt");
      }
    
      @Test
      @TestMetadata("primitive.kt")
      public void testPrimitive() {
        runTest("analysis/analysis-api/testData/components/psiTypeProvider/psiType/asKtType/primitive.kt");
      }
    
      @Test
      @TestMetadata("primitiveArrayWithComplexType.kt")
      public void testPrimitiveArrayWithComplexType() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 28 16:10:06 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/eventbus/Subscribe.java

    import java.lang.annotation.Target;
    
    /**
     * Marks a method as an event subscriber.
     *
     * <p>The type of event will be indicated by the method's first (and only) parameter, which cannot
     * be primitive. If this annotation is applied to methods with zero parameters, or more than one
     * parameter, the object containing the method will not be able to register for event delivery from
     * the {@link EventBus}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/TypeAccessibilityProviderTest.kt

    import org.junit.Test
    
    
    internal
    interface InternalType
    
    
    class TypeAccessibilityProviderTest : TestWithClassPath() {
    
        @Test
        fun `public generic type with primitive component type is accessible`() {
    
            val genericTypeWithPrimitiveComponent = SchemaType.of<PublicGenericType<String>>()
            assertThat(
                accessibilityFor(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/CollectSpliterators.java

      }
    
      /**
       * Implementation of {@link Stream#flatMap} with a primitive spliterator output type.
       *
       * @param <InElementT> the element type of the input spliterator
       * @param <OutElementT> the (boxed) element type of the output spliterators
       * @param <OutConsumerT> the specialized consumer type for the primitive output type
       * @param <OutSpliteratorT> the primitive spliterator type associated with {@code OutElementT}
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 18:19:31 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGeneratorTest.groovy

            def proxyClass = generate(SomeType)
            def impl = proxyClass.newInstance(state, typeConverter)
    
            when:
            impl.value = "12"
            impl.primitive = "14"
    
            then:
            1 * state.set("value", 12)
            1 * state.set("primitive", 14L)
            0 * state._
        }
    
        def "mixes in converting setter for delegated property with scalar type"() {
            def state = Mock(ModelElementState)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.6K bytes
    - Viewed (0)
Back to top