Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 149 for prop4 (0.04 sec)

  1. maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java

                    request.setRemoteRepositories(req.getRemoteRepositories());
                }
            } else {
                Properties props = new Properties();
                EnvironmentUtils.addEnvVars(props);
                props.putAll(System.getProperties());
                request.setSystemProperties(props);
            }
    
            return request;
        }
    
        @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            configurationCacheRun 'ok', '-Dsome.prop=42'
    
            then:
            outputContains 'sys prop value at configuration time = 42'
            outputContains 'sys prop value at execution time = 42'
            configurationCache.assertStateStored()
    
            when:
            configurationCacheRun 'ok', '-Dsome.prop=42'
    
            then:
            outputDoesNotContain 'sys prop value at configuration time = 42'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java

                if (tesseractOCRConfig == null) {
                    final Properties props = new Properties();
                    PropertiesUtil.load(props, tesseractConfigPath);
                    final Map<String, String> propMap =
                            props.entrySet().stream().collect(Collectors.toMap(e -> (String) e.getKey(), e -> (String) e.getValue()));
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/normalization/ConfigureRuntimeClasspathNormalizationIntegrationTest.groovy

                super(backingFile, finalizedBy)
                withProperties() { Properties props ->
                    props.putAll(initialProps)
                }
            }
    
            PropertiesResource changeProperty(String key, String value) {
                withProperties(true) { Properties props ->
                    props.setProperty(key, value)
                }
                changed()
                return this
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  5. src/mdo/writer.vm

                }
            }
        }
    
        private <T> void writeProperties(String tagName, Map<String, String> props, XmlSerializer serializer) throws IOException {
            if (props != null && !props.isEmpty()) {
                serializer.startTag(NAMESPACE, tagName);
                for (Map.Entry<String, String> entry : props.entrySet()) {
                    writeTag(entry.getKey(), null, entry.getValue(), serializer);
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. src/mdo/writer-stax.vm

        private <T> void writeProperties(String tagName, Map<String, String> props, XMLStreamWriter serializer, InputLocationTracker locationTracker) throws IOException, XMLStreamException {
    #else
        private <T> void writeProperties(String tagName, Map<String, String> props, XMLStreamWriter serializer) throws IOException, XMLStreamException {
    #end
            if (props != null && !props.isEmpty()) {
                serializer.writeStartElement(namespace, tagName);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/openapi/schemas_test.go

    	}
    	for _, f := range cust.Fields {
    		prop, found := ts.Properties[f.Name]
    		if !found {
    			t.Errorf("type field not found in schema, field: %s", f.Name)
    		}
    		fdv := f.DefaultValue()
    		if prop.Default != nil {
    			pdv := types.DefaultTypeAdapter.NativeToValue(prop.Default)
    			if !reflect.DeepEqual(fdv, pdv) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 17:18:27 UTC 2022
    - 13K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginDependenciesResolver.java

                if (requiredMavenVersion != null) {
                    Map<String, String> props = new LinkedHashMap<>(pluginArtifact.getProperties());
                    props.put("requiredMavenVersion", requiredMavenVersion);
                    pluginArtifact = pluginArtifact.setProperties(props);
                }
            } catch (ArtifactDescriptorException e) {
                throw new PluginResolutionException(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/properties_providers.adoc

    Properties can be set and retrieved using the `project` object:
    
    ====
    include::sample[dir="snippets/providers/property/kotlin",files="build.gradle.kts[tags=set-prop]"]
    include::sample[dir="snippets/providers/property/groovy",files="build.gradle[tags=set-prop]"]
    ====
    
    Properties:
    
    * Properties with these types are configurable.
    * `Property` extends the `Provider` interface.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder_test.go

    			for _, metaField := range []string{"kind", "apiVersion", "metadata"} {
    				if _, found := got.schema.Properties["kind"]; found {
    					prop := got.schema.Properties[metaField]
    					prop.Description = ""
    					got.schema.Properties[metaField] = prop
    				}
    			}
    
    			if !reflect.DeepEqual(&wantedSchema, got.schema) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top