Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 684 for PROPERTIES (0.21 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/JvmOptions.java

        }
    
        /**
         * @return all jvm args including system properties
         */
        public List<String> getAllJvmArgs() {
            List<String> args = new ArrayList<>();
            formatSystemProperties(getMutableSystemProperties(), args);
    
            // We have to add these after the system properties so they can override any system properties
            // (identical properties later in the command line override earlier ones)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. src/main/config/openapi/openapi-user.yaml

                  schema:
                    type: object
                    properties:
                      record_count:
                        type: integer
                        example: 9
                      data:
                        type: array
                        items:
                          type: object
                          properties:
                            label:
                              type: string
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest.groovy

            actualFile.assertExists()
            TestFile expectedFile = testDirectory.file("expectedFiles/$expectedFileName").assertIsFile()
            Properties expected = new Properties()
            expected.load(new ByteArrayInputStream(expectedFile.bytes))
            Properties actual = new Properties()
            actual.load(new ByteArrayInputStream(actualFile.bytes))
            assert expected == actual
        }
    
        String getActualXml(File file) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java

                    return;
                }
    
                FileChannel channel = null;
                FileLock lock = null;
                try {
                    Properties props = new Properties();
    
                    channel = new RandomAccessFile(touchfile, "rw").getChannel();
                    lock = channel.lock();
    
                    if (touchfile.canRead()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    Remember to run a full build regularly.
    ====
    
    == Declare properties in `gradle.properties` file
    
    In Gradle, properties can be defined in the build script, in a `gradle.properties` file or as parameters on the command line.
    
    It's common to declare properties on the command line for ad-hoc scenarios.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. pom.xml

    								<path>${project.build.directory}/fess/WEB-INF/classes/fess_config.properties</path>
    								<path>${project.build.directory}/fess/WEB-INF/classes/fess_env_crawler.properties</path>
    								<path>${project.build.directory}/fess/WEB-INF/classes/fess_env_suggest.properties</path>
    								<path>${project.build.directory}/fess/WEB-INF/classes/fess_env_thumbnail.properties</path>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_body_updates/test_tutorial001.py

                }
            },
            "components": {
                "schemas": {
                    "Item": {
                        "type": "object",
                        "title": "Item",
                        "properties": {
                            "name": {
                                "anyOf": [{"type": "string"}, {"type": "null"}],
                                "title": "Name",
                            },
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_body_updates/test_tutorial001_py310.py

                }
            },
            "components": {
                "schemas": {
                    "Item": {
                        "type": "object",
                        "title": "Item",
                        "properties": {
                            "name": {
                                "anyOf": [{"type": "string"}, {"type": "null"}],
                                "title": "Name",
                            },
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/CredentialsProviderIntegrationTest.groovy

            'AwsCredentials'        | "The following Gradle properties are missing for 'test' credentials:\n  - testAccessKey\n  - testSecretKey"
            'PasswordCredentials'   | "The following Gradle properties are missing for 'test' credentials:\n  - testUsername\n  - testPassword"
            'HttpHeaderCredentials' | "The following Gradle properties are missing for 'test' credentials:\n  - testAuthHeaderName\n  - testAuthHeaderValue"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking_test.go

    					Type: []string{"object"},
    					Properties: map[string]spec.Schema{
    						"foo": *spec.StringProperty(),
    					},
    				},
    			},
    			assertions: []assertionFunc{toBeEmpty},
    		},
    		{
    			name:   "undefined field",
    			policy: deploymentPolicy,
    			schemaToReturn: &spec.Schema{
    				SchemaProps: spec.SchemaProps{
    					Type: []string{"object"},
    					Properties: map[string]spec.Schema{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top