Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for PROPERTY (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            """
                class Resolve extends DefaultTask {
                    @Internal
                    final Property<ArtifactCollection> artifacts = project.objects.property(ArtifactCollection)
                    @Console
                    final Property<String> identifier = project.objects.property(String)
    
                    Resolve() {
                        outputs.upToDateWhen { false }
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

    object schemas with x-kubernetes-preserve-unknown-fields. - Object properties where the property schema is of an \"unknown type\". An \"unknown type\" is recursively defined as:\n  - A schema with no type and x-kubernetes-preserve-unknown-fields set to true\n  - An array where the items schema is of an \"unknown type\"\n  - An object where the additionalProperties schema is of an \"unknown type\"\n\nOnly property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible. Accessible property names...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /**
         * Assert the property is not null.
         * @param property The value of the property. (NotNull)
         */
        protected void assertPropertyNotNull(String property) {
            if (property == null) {
                String msg = "The argument 'property' for message should not be null.";
                throw new IllegalArgumentException(msg);
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
Back to top