Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for property (0.19 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setUserInfo(final boolean value) {
            setSystemPropertyAsBoolean(Constants.USER_INFO_PROPERTY, value);
        }
    
        default boolean isUserInfo() {
            return getSystemPropertyAsBoolean(Constants.USER_INFO_PROPERTY, true);
        }
    
        default void setUserFavorite(final boolean value) {
            setSystemPropertyAsBoolean(Constants.USER_FAVORITE_PROPERTY, value);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

            private ActivationFrame nextFrame(String property) {
                return new ActivationFrame(property, Optional.empty());
            }
    
            private <P> ActivationFrame nextFrame(String property, Function<P, InputLocationTracker> child) {
                @SuppressWarnings("unchecked")
                final Optional<P> parent = (Optional<P>) stk.peek().parent;
                return new ActivationFrame(property, parent.map(child));
            }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 13:13:07 GMT 2024
    - 73.1K bytes
    - Viewed (0)
  3. .teamcity/.mvn/wrapper/maven-wrapper.jar

    org.apache.maven.wrapper; public synchronized class WrapperExecutor { public static final String DISTRIBUTION_URL_PROPERTY = distributionUrl; public static final String DISTRIBUTION_BASE_PROPERTY = distributionBase; public static final String ZIP_STORE_BASE_PROPERTY = zipStoreBase; public static final String DISTRIBUTION_PATH_PROPERTY = distributionPath; public static final String ZIP_STORE_PATH_PROPERTY = zipStorePath; private final java.util.Properties properties; private final java.io.File propertiesFile;...
    Archive
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 49.5K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        @Test
        void testPluginConfigProperties() throws Exception {
            PomTestWrapper pom = buildPom("plugin-config-properties");
            assertEquals(
                    "my.property", pom.getValue("build/plugins[1]/configuration[1]/systemProperties[1]/property[1]/name"));
        }
    
        /*MNG-3900*/
        @Test
        void testProfilePropertiesInterpolation() throws Exception {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            super.visitValueParameter(valueParameter)
            valueParameter.correspondingProperty?.let { visitProperty(it) }
        }
    
        override fun visitProperty(property: FirProperty) {
            if (visitedProperty.add(property)) {
                super.visitProperty(property)
            }
        }
    
        override fun visitScript(script: FirScript) {
            script.declarations.forEach {
                it.accept(this)
            }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            Map<String, String> userProperties = new HashMap<>(request.getUserProperties());
            if (!userProperties.containsKey(ProfileActivationContext.PROPERTY_NAME_PACKAGING)) {
                userProperties.put(ProfileActivationContext.PROPERTY_NAME_PACKAGING, model.getPackaging());
            }
            context.setUserProperties(userProperties);
            context.setProjectDirectory(model.getProjectDirectory());
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 61.5K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/components/callResolver/Fe10IdeNormalAnalysisSourceModuleResolveCallTestGenerated.java

      }
    
      @Test
      @TestMetadata("annotationOnProperty_property.kt")
      public void testAnnotationOnProperty_property() {
        runTest("analysis/analysis-api/testData/components/callResolver/resolveCall/annotationOnProperty_property.kt");
      }
    
      @Test
      @TestMetadata("annotationOnProperty_set.kt")
      public void testAnnotationOnProperty_set() {
    Java
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Apr 16 19:28:19 GMT 2024
    - 53.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                } catch (final SearchPhaseExecutionException e) {
                    throw new InvalidQueryException(messages -> messages.addErrorsInvalidQueryParseError(UserMessages.GLOBAL_PROPERTY_KEY),
                            "Invalid query: " + searchRequestBuilder, e);
                } catch (final OpenSearchException e) {
                    if (logger.isDebugEnabled()) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCallResolver.kt

                // and the only FIR that we have for that PSI is an implicit invoke call, that means that
                // `Foo.Bar` is definitely not a property access - otherwise it would have had its own FIR.
                // So, it does not make sense to try to resolve such parts of qualifiers as KtCall
                if ((psi as? KtExpression)?.getPossiblyQualifiedCallExpression() == null) {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 70.8K bytes
    - Viewed (1)
  10. android/guava/src/com/google/common/base/CharMatcher.java

       * SPACE_SEPARATOR, LINE_SEPARATOR, PARAGRAPH_SEPARATOR, CONTROL, FORMAT, SURROGATE, and
       * PRIVATE_USE according to ICU4J.
       *
       * <p>See also the Unicode Default_Ignorable_Code_Point property (available via ICU).
       *
       * @deprecated Most invisible characters are supplementary characters; see the class
       *     documentation.
       * @since 19.0 (since 1.0 as constant {@code INVISIBLE})
       */
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.7K bytes
    - Viewed (0)
Back to top