- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 777 for property (0.17 sec)
-
guava/src/com/google/common/base/StandardSystemProperty.java
private final String key; StandardSystemProperty(String key) { this.key = key; } /** Returns the key used to look up this system property. */ public String key() { return key; } /** * Returns the current value for this system property by delegating to {@link * System#getProperty(String)}. * * <p>The value returned by this method is non-null except in rare circumstances: *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 23 15:09:35 UTC 2023 - 5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java
} private static Object getPropertyValue(Object value, String property) throws IntrospectionException { if (value == null || property == null || property.isEmpty()) { return null; } ClassMap classMap = getClassMap(value.getClass()); String methodBase = Character.toTitleCase(property.charAt(0)) + property.substring(1); try {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.8K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/Javadocs.java
import org.gradle.api.provider.Property; import java.net.URI; /** * Configuration for generating Javadocs */ public abstract class Javadocs { /** * Link to Java API to use when generating Javadoc */ public abstract Property<URI> getJavaApi(); /** * Link to Groovy API to use when generating Javadoc */ public abstract Property<URI> getGroovyApi(); /**
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Mar 17 08:08:46 UTC 2023 - 1.4K bytes - Viewed (0) -
module.xml
<?xml version="1.0" encoding="UTF-8"?> <project name="module" basedir="."> <property name="modules.dir" value="${basedir}/modules" /> <property name="target.dir" value="${basedir}/target/modules" /> <!-- Maven Repository --> <property name="maven.snapshot.repo.url" value="https://maven.codelibs.org/" /> <property name="maven.release.repo.url" value="https://maven.codelibs.org/" /> <property name="opensearch.version" value="2.17.1" />
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 25 12:43:59 UTC 2024 - 4.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/searchOptions.jsp
</h3> <div> <fieldset class="form-group"> <legend><la:message key="labels.index_num" /></legend> <label for="contentNum"><la:message key="labels.index_num" /></label> <la:select property="num" styleId="numSearchOption" styleClass="form-control"> <option value="10"> <la:message key="labels.search_result_select_num" /> </option> <la:option value="10">10</la:option>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Jul 17 08:19:53 UTC 2019 - 3.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/searchOptions.jsp
</h3> <div> <fieldset class="form-group"> <legend><la:message key="labels.index_num" /></legend> <label for="contentNum"><la:message key="labels.index_num" /></label> <la:select property="num" styleId="numSearchOption" styleClass="form-control"> <option value="10"> <la:message key="labels.search_result_select_num" /> </option> <la:option value="10">10</la:option>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Jul 17 08:19:53 UTC 2019 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/bsentity/dbmeta/RoleDbm.java
// Property Gateway // ================ // ----------------------------------------------------- // Column Property // ---------------
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.1K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDocumentationExtension.java
action.execute(kotlinDslReference); } /** * This property is wired into very slow documentation generation tasks. * * Passing -PquickDocs will disable slow documentation tasks. * */ public abstract Property<Boolean> getQuickFeedback();
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Aug 20 14:11:17 UTC 2024 - 4.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/profile/index.jsp
<div class="input-group mb-3"> <c:set var="ph_old_password"> <la:message key="labels.profile.placeholder_old_password" /> </c:set> <la:password property="oldPassword" class="form-control" placeholder="${ph_old_password}" /> <div class="input-group-append"> <span class="input-group-text"><em class="fa fa-lock fa-fw"></span> </div> </div>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 3.6K bytes - Viewed (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportParameter.kt
import org.gradle.api.file.RegularFileProperty import org.gradle.api.provider.Property import org.gradle.workers.WorkParameters interface IncubatingApiReportParameter : WorkParameters { val srcDirs: ConfigurableFileCollection val htmlReportFile: RegularFileProperty val textReportFile: RegularFileProperty val title: Property<String> val releasedVersionsFile: RegularFileProperty
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 1.1K bytes - Viewed (0)