Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 231 for PROPERTIES (0.31 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/service/scopes/BuildScopeServices.java

    import org.gradle.initialization.layout.ResolvedBuildLayout;
    import org.gradle.initialization.properties.DefaultProjectPropertiesLoader;
    import org.gradle.initialization.properties.DefaultSystemPropertiesInstaller;
    import org.gradle.initialization.properties.ProjectPropertiesLoader;
    import org.gradle.initialization.properties.SystemPropertiesInstaller;
    import org.gradle.internal.actor.ActorFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

         */
        @Nonnull
        List<String> getInactiveProfileIds();
    
        /**
         * Provides a map of system properties.
         */
        @Nonnull
        Map<String, String> getSystemProperties();
    
        /**
         * Provides a map of user properties.
         * User properties
         */
        @Nonnull
        Map<String, String> getUserProperties();
    
        @Nonnull
        ModelResolver getModelResolver();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/connection/RealCall.kt

          override fun timedOut() {
            ******@****.***()
          }
        }.apply {
          timeout(client.callTimeoutMillis.toLong(), MILLISECONDS)
        }
    
      private val executed = AtomicBoolean()
    
      // These properties are only accessed by the thread executing the call.
    
      /** Initialized in [callStart]. */
      private var callStackTrace: Any? = null
    
      /** Finds an exchange to send the next request and receive the next response. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlay.kt

         * * if a property appears in both sources, then the property in [overlay] overrides ("shadow") the matching property in [underlay]
         * * properties that appear only one of the sources get copied to the result together; the ones from [underlay] appear first.
         */
        fun overlayResolvedDocuments(
            underlay: DocumentWithResolution,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/lib/output.json

                "overrides": [
                   {
                      "matcher": {
                         "id": "byRegexp",
                         "options": "/(virtual|resident)/i"
                      },
                      "properties": [
                         {
                            "id": "custom.fillOpacity",
                            "value": 0
                         },
                         {
                            "id": "custom.lineWidth",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DistributionFactory.java

                }
                systemProperties.putAll(SystemPropertiesHandler.getSystemProperties(new File(determineRootDir(connectionParameters), "gradle.properties")));
                systemProperties.putAll(SystemPropertiesHandler.getSystemProperties(new File(determineRealUserHomeDir(connectionParameters), "gradle.properties")));
                return systemProperties;
            }
    
            private File determineRootDir(ConnectionParameters connectionParameters) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    Gradle allows configuring multiple properties that affect the selection of a toolchain, such as language version or vendor.
    Even though these properties can be configured independently, the configuration must follow certain rules in order to form a _valid_ specification.
    
    A `JavaToolchainSpec` is considered _valid_ in two cases:
    
    1. when no properties have been set, i.e. the specification is _empty_;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

        /**
         * Creates a JAR that is unique to the test. The uniqueness is achieved via a properties file with a value containing the path to the test itself.
         */
        def createJarWithProperties(String path, Map<String, ?> properties = [source: 1]) {
            def props = new Properties()
            def sw = new StringWriter()
            props.putAll(properties.collectEntries { k, v -> [k, String.valueOf(v)] })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/values_test.go

    			Type: "integer",
    		},
    		ValueValidation: &schema.ValueValidation{
    			Format: "int64",
    		},
    	}
    	mapListElementSchema = schema.Structural{
    		Generic: schema.Generic{
    			Type: "object",
    		},
    		Properties: map[string]schema.Structural{
    			"key": stringSchema,
    			"val": intSchema,
    		},
    	}
    	mapListSchema = schema.Structural{
    		Extensions: schema.Extensions{XListType: &listTypeMap, XListMapKeys: []string{"key"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

                return;
            }
    
            if (logger.isDebugEnabled()) {
                logger.debug("Initializing SmbClient...");
            }
    
            super.init();
    
            final Properties props = new Properties();
            System.getProperties().entrySet().stream().filter(e -> e.getKey().toString().startsWith("jcifs.")).forEach(e -> {
                props.setProperty((String) e.getKey(), (String) e.getValue());
            });
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 23 01:54:10 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top