Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 142 for prop2 (5.11 sec)

  1. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/source/model/PropertyMetaDataTest.groovy

        final ClassMetaData classMetaData = Mock()
        final PropertyMetaData propertyMetaData = new PropertyMetaData('prop', classMetaData)
    
        def formatsSignature() {
            def type = new TypeMetaData('org.gradle.SomeClass')
            propertyMetaData.type = type
    
            expect:
            propertyMetaData.signature == 'org.gradle.SomeClass prop'
        }
    
        def usesGetterToLocateOverriddenProperty() {
            MethodMetaData getter = Mock()
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/rtinfo/internal/DefaultRuntimeInformation.java

        }
    
        private String loadMavenVersion() {
            Properties props = new Properties();
    
            String resource = "META-INF/maven/org.apache.maven/maven-core/pom.properties";
    
            try (InputStream is = DefaultRuntimeInformation.class.getResourceAsStream("/" + resource)) {
                if (is != null) {
                    props.load(is);
                } else {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 18 11:03:17 GMT 2023
    - 4K bytes
    - Viewed (0)
  3. .teamcity/mvnw.cmd

    @setlocal EnableExtensions EnableDelayedExpansion
    for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a
    @endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS%
    
    :endReadAdditionalConfig
    
    SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
    set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar"
    Batch File
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 6.5K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/ClassExtensionDoc.groovy

            List<PropertyDoc> properties = []
            mixinClasses.each { mixin ->
                mixin.classProperties.each { prop ->
                    properties << prop.forClass(targetClass)
                }
            }
            extraProperties.each { prop ->
                properties << prop.forClass(targetClass)
            }
            return properties.sort { it.name }
        }
    
        List<MethodDoc> getExtensionMethods() {
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.5K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/internal/impl/PropertiesAsMapTest.java

    class PropertiesAsMapTest {
    
        @Test
        void testPropertiesAsMap() {
            Properties props = new Properties();
            props.setProperty("foo1", "bar1");
            props.setProperty("foo2", "bar2");
            PropertiesAsMap pam = new PropertiesAsMap(props);
            assertEquals(2, pam.size());
            Set<Entry<String, String>> set = pam.entrySet();
            assertNotNull(set);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/it/admin/SystemInfoTests.java

            final Map<String, Object> res = JsonPath.from(response).getMap("response");
            assertTrue(res.containsKey("env_props"));
            assertTrue(res.containsKey("system_props"));
            assertTrue(res.containsKey("fess_props"));
            assertTrue(res.containsKey("bug_report_props"));
            assertEquals(new Integer(0), JsonPath.from(response).get("response.status"));
        }
    
        @Override
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/baseuri-interpolation/pom.xml

      <description>
        Test interpolation of ${project.baseUri}
      </description>
    
      <properties>
        <!-- this is where we collect all the interpolated values for the POM dump -->
        <prop1>${project.baseUri}</prop1>
      </properties>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.2K bytes
    - Viewed (0)
  8. docs/en/docs/js/termynal.js

            let attrs = '';
            for (let prop in line) {
                // Custom add class
                if (prop === 'class') {
                    attrs += ` class=${line[prop]} `
                    continue
                }
                if (prop === 'type') {
                    attrs += `${this.pfx}="${line[prop]}" `
                } else if (prop !== 'value') {
                    attrs += `${this.pfx}-${prop}="${line[prop]}" `
                }
    JavaScript
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 9.3K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/settings/SettingsUtilsTest.java

                    .property(ap)
                    .os(ao)
                    .packaging("pom")
                    .build();
            Map<String, String> props = new HashMap<>();
            int count = entropy.nextInt(10);
            for (int i = 0; i < count; i++) {
                props.put("name" + Long.toHexString(entropy.nextLong()), "value" + Long.toHexString(entropy.nextLong()));
            }
            count = entropy.nextInt(3);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/exentity/WebAuthentication.java

                final Properties props = new Properties();
                getWebConfig().getConfigParameterMap(ConfigName.CONFIG).entrySet().stream()
                        .filter(e -> e.getKey().startsWith(Config.JCIFS_PREFIX)).forEach(e -> {
                            props.setProperty(e.getKey(), e.getValue());
                        });
                return new NTLMScheme(new JcifsEngine(props));
            }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
Back to top