Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 51 for property2 (0.15 sec)

  1. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/resolver/FirStandaloneNormalAnalysisSourceModuleResolveReferenceTestGenerated.java

          }
    
          @Test
          @TestMetadata("property1.kt")
          public void testProperty1() {
            runTest("analysis/analysis-api/testData/components/resolver/singleByPsi/typeArgument/propertyAccess/property1.kt");
          }
    
          @Test
          @TestMetadata("property2.kt")
          public void testProperty2() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:01 UTC 2024
    - 215.8K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/resolver/FirIdeNormalAnalysisSourceModuleResolveCandidatesTestGenerated.java

          }
    
          @Test
          @TestMetadata("property1.kt")
          public void testProperty1() {
            runTest("analysis/analysis-api/testData/components/resolver/singleByPsi/typeArgument/propertyAccess/property1.kt");
          }
    
          @Test
          @TestMetadata("property2.kt")
          public void testProperty2() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 215.1K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.artifacts.DependencyArtifact.getExtension()> does not have raw return type assignable to org.gradle.api.provider.Property in (DependencyArtifact.java:0)
    Method <org.gradle.api.artifacts.DependencyArtifact.getName()> does not have raw return type assignable to org.gradle.api.provider.Property in (DependencyArtifact.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/popper.min.js.map

    modifierName\n  );\n}\n","/**\n * Get the prefixed supported property name\n * @method\n * @memberof Popper.Utils\n * @argument {String} property (camelCase)\n * @returns {String} prefixed property (camelCase or PascalCase, depending on the vendor prefix)\n */\nexport default function getSupportedPropertyName(property) {\n  const prefixes = [false, 'ms', 'Webkit', 'Moz', 'O'];\n  const upperProp = property.charAt(0).toUpperCase() + property.slice(1);\n\n  for (let i = 0; i < prefixes.length; i++) {\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

         * <pre>
         * message:
         * </pre>
         * @param property The property name for the message. (NotNull)
         * @return this. (NotNull)
         */
        public FessMessages addErrorsFrontHeader(String property) {
            assertPropertyNotNull(property);
            add(property, new UserMessage(ERRORS_front_header));
            return this;
        }
    
        /**
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

            public static AttachedProperty of(PropertyMetadata property, boolean applyRole) {
                return new AttachedProperty(property, applyRole);
            }
    
            public final PropertyMetadata property;
            public final boolean applyRole;
    
            private AttachedProperty(PropertyMetadata property, boolean applyRole) {
                this.property = property;
                this.applyRole = applyRole;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  7. src/unicode/tables.go

    	Bidi_Control                       = _Bidi_Control                       // Bidi_Control is the set of Unicode characters with property Bidi_Control.
    	Dash                               = _Dash                               // Dash is the set of Unicode characters with property Dash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

        <class>
          <name>ActivationProperty</name>
          <version>4.0.0+</version>
          <description>This is the property specification used to activate a profile. If the value field
            is empty, then the existence of the named property will activate the profile, otherwise it
            does a case-sensitive match against the property value as well.</description>
          <fields>
            <field>
              <name>name</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

            override val diagnosticClass get() = ValReassignmentViaBackingFieldError::class
            val property: KaVariableSymbol
        }
    
        interface ValReassignmentViaBackingFieldWarning : KaFirDiagnostic<KtExpression> {
            override val diagnosticClass get() = ValReassignmentViaBackingFieldWarning::class
            val property: KaVariableSymbol
        }
    
        interface CapturedValInitialization : KaFirDiagnostic<KtExpression> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

    internal class ValReassignmentViaBackingFieldErrorImpl(
        override val property: KaVariableSymbol,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<KtExpression>(firDiagnostic, token), KaFirDiagnostic.ValReassignmentViaBackingFieldError
    
    internal class ValReassignmentViaBackingFieldWarningImpl(
        override val property: KaVariableSymbol,
        firDiagnostic: KtPsiDiagnostic,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
Back to top