Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 111 for propertyNames (0.23 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/klibSourceFileProvider/AbstractGetKlibSourceFileNameTest.kt

                    }
    
                    val propertyNames = packageFragmentProto.`package`.propertyList
                        .map { propertyProto -> nameResolver.getName(propertyProto.name) }
    
                    val functionNames = packageFragmentProto.`package`.functionList
                        .map { functionProto -> nameResolver.getName(functionProto.name) }
    
                    val callableNames = (propertyNames + functionNames).distinct()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

    
    fun Project.gradleProperty(propertyName: String) = providers.gradleProperty(propertyName)
    
    
    fun Project.systemProperty(propertyName: String) = providers.systemProperty(propertyName)
    
    
    fun Project.environmentVariable(propertyName: String) = providers.environmentVariable(propertyName)
    
    
    fun Project.propertyFromAnySource(propertyName: String) = gradleProperty(propertyName)
        .orElse(systemProperty(propertyName))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/ConventionAwareHelper.java

            this._source = source;
            this._convention = convention;
            this._propertyNames = JavaPropertyReflectionUtil.propertyNames(source);
            this._ineligiblePropertyNames = new HashSet<>();
        }
    
        private MappedProperty map(String propertyName, MappedPropertyImpl mapping) {
            if (!_propertyNames.contains(propertyName)) {
                throw new InvalidUserDataException(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:53:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingProperties.java

            this.delegate = delegate;
            this.listener = listener;
        }
    
        @Override
        public Enumeration<?> propertyNames() {
            reportAggregatingAccess();
            return delegate.propertyNames();
        }
    
        @Override
        public Set<String> stringPropertyNames() {
            return new AccessTrackingSet<>(delegate.stringPropertyNames(), trackingListener());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. fastapi/openapi/models.py

        properties: Optional[Dict[str, "SchemaOrBool"]] = None
        patternProperties: Optional[Dict[str, "SchemaOrBool"]] = None
        additionalProperties: Optional["SchemaOrBool"] = None
        propertyNames: Optional["SchemaOrBool"] = None
        unevaluatedItems: Optional["SchemaOrBool"] = None
        unevaluatedProperties: Optional["SchemaOrBool"] = None
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 22:49:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/MapsTest.java

      @SuppressWarnings("serial") // never serialized
      public void testFromPropertiesNullKey() {
        Properties properties =
            new Properties() {
              @Override
              public Enumeration<?> propertyNames() {
                return Iterators.asEnumeration(Arrays.asList(null, "first", "second").iterator());
              }
            };
        properties.setProperty("first", "true");
        properties.setProperty("second", "null");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Maps.java

        ImmutableMap.Builder<String, String> builder = ImmutableMap.builder();
    
        for (Enumeration<?> e = properties.propertyNames(); e.hasMoreElements(); ) {
          /*
           * requireNonNull is safe because propertyNames contains only non-null elements.
           *
           * Accordingly, we have it annotated as returning `Enumeration<? extends Object>` in our
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Maps.java

        ImmutableMap.Builder<String, String> builder = ImmutableMap.builder();
    
        for (Enumeration<?> e = properties.propertyNames(); e.hasMoreElements(); ) {
          /*
           * requireNonNull is safe because propertyNames contains only non-null elements.
           *
           * Accordingly, we have it annotated as returning `Enumeration<? extends Object>` in our
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/ValidationActions.java

            @Override
            public void doValidate(String propertyName, Object value, PropertyValidationContext context) {
            }
    
            @Override
            public void validate(String propertyName, Supplier<Object> propertyValue, PropertyValidationContext context) {
            }
        },
        INPUT_FILE_VALIDATOR("file") {
            @Override
            public void doValidate(String propertyName, Object value, PropertyValidationContext context) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

            writeNextProperty(propertyName, propertyValue, kind)
        }
    
        suspend fun writeInputProperty(propertyName: String, propertyValue: Any?) =
            writeProperty(propertyName, propertyValue, PropertyKind.InputProperty)
    
        suspend fun writeOutputProperty(propertyName: String, propertyValue: Any?) =
            writeProperty(propertyName, propertyValue, PropertyKind.OutputProperty)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top