Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 743 for PROPERTIES (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/common/equality_test.go

    			Schema: mustSchema(`
                    properties:
                      foo:
                        type: array
                        items:
                          type: object
                          properties:
                            key:
                              type: string
                            bar:
                              type: object
                              properties:
                                baz:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 21:36:46 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/common/schemas.go

    // metadata.name and metadata.generateName properties are specified, making a shallow copy of the provided schema if needed.
    func WithTypeAndObjectMeta(s *spec.Schema) *spec.Schema {
    	if s.Properties != nil &&
    		s.Properties["kind"].Type.Contains("string") &&
    		s.Properties["apiVersion"].Type.Contains("string") &&
    		s.Properties["metadata"].Type.Contains("object") &&
    		s.Properties["metadata"].Properties != nil &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 18:00:45 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

            Object value = ee.evaluate(expr);
    
            assertEquals(expr, value);
        }
    
        @Test
        void testPOMPropertyExtractionWithMissingProject_WithDotNotation() throws Exception {
            String key = "m2.name";
            String checkValue = "value";
    
            Properties properties = new Properties();
            properties.setProperty(key, checkValue);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/properties_providers.adoc

    [[managed_properties]]
    == Using Gradle Managed Properties
    
    Gradle's managed properties allow you to declare properties as abstract getters (Java, Groovy) or abstract properties (Kotlin).
    
    Gradle then automatically provides the implementation for these properties, managing their state.
    
    A property may be _mutable_, meaning that it has both a `get()` method and `set()` method:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/ContextConfigTest.java

            Properties prop1 = new Properties();
            prop1.setProperty("jcifs.smb.client.minVersion", "SMB302");
            PropertyConfiguration p1 = new PropertyConfiguration(prop1);
            assertEquals(DialectVersion.SMB302, p1.getMinimumVersion());
            assertEquals(DialectVersion.SMB302, p1.getMaximumVersion());
    
            Properties prop2 = new Properties();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

        }
    
        File createModule(String simpleName, Properties properties) {
            def moduleDir = tmpDir.createDir("$simpleName/build/resources/main")
            save(properties, moduleDir.file("gradle-$simpleName-classpath.properties"))
            moduleDir
        }
    
        private Properties properties(Map kvs = [:]) {
            new Properties().with {
                putAll(kvs)
                it
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/normalization/ConfigureRuntimeClasspathNormalizationIntegrationTest.groovy

            project.buildFile << """
                normalization {
                    runtimeClasspath {
                        properties('**/foo.properties') {
                            ignoreProperty '${IGNORE_ME}'
                        }
                        properties('some/path/to/foo.properties') {
                            ignoreProperty '${IGNORE_ME_TOO}'
                        }
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

        }
    
        /**
         * Gets the user properties to use for interpolation and profile activation. The user properties have been
         * configured directly by the user on his discretion, e.g. via the {@code -Dkey=value} parameter on the command
         * line.
         *
         * @return The user properties, never {@code null}.
         */
        public Properties getUserProperties() {
            return request.getUserProperties();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderTest.groovy

            pomReader.properties['project.groupId'] == 'group-one'
            pomReader.properties['pom.groupId'] == 'group-one'
            pomReader.properties['groupId'] == 'group-one'
            pomReader.properties['project.artifactId'] == 'artifact-one'
            pomReader.properties['pom.artifactId'] == 'artifact-one'
            pomReader.properties['artifactId'] == 'artifact-one'
            pomReader.properties['project.version'] == 'version-one'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    ----
    
    This flag overrides any settings that disable the Daemon in your project or user `gradle.properties` files.
    
    To enable the Daemon by default in older Gradle versions, add the following setting to the `gradle.properties` file in the project root or your Gradle User Home (`GRADLE_USER_HOME`:
    
    ====
    .gradle.properties
    [source,properties]
    ----
    org.gradle.daemon=true
    ----
    ====
    
    [[sec:disabling_the_daemon]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top