Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for AttributeValue (0.93 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultLocalConfigurationMetadataBuilder.java

            ImmutableList<LocalOriginDependencyMetadata> dependencies,
            ImmutableAttributes attributes
        ) {
            AttributeValue<Category> attributeValue = attributes.findEntry(Category.CATEGORY_ATTRIBUTE);
            if (!attributeValue.isPresent() || !attributeValue.get().getName().equals(Category.ENFORCED_PLATFORM)) {
                return dependencies;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/Cookie.kt

                try {
                  expiresAt = parseExpires(attributeValue, 0, attributeValue.length)
                  persistent = true
                } catch (_: IllegalArgumentException) {
                  // Ignore this attribute, it isn't recognizable as a date.
                }
              }
              attributeName.equals("max-age", ignoreCase = true) -> {
                try {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:12:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/main/java/org/gradle/api/internal/artifacts/JavaEcosystemAttributesDescriber.java

                    sb.append("documentation of type '").append(name).append("'");
            }
        }
    
        private static String toName(Object attributeValue) {
            return attributeValue instanceof Category ? ((Named) attributeValue).getName() : String.valueOf(attributeValue);
        }
    
        /**
         * Checks if two attributes have the same name.
         *
         * @param a first attribute to compare
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionCandidateAssessor.java

                Attribute<Object> untyped = Cast.uncheckedCast(attribute);
                String attributeName = attribute.getName();
                AttributeValue<?> consumerValue = requestedAttributes.findEntry(attributeName);
                AttributeValue<?> producerValue = candidateAttributes.findEntry(attributeName);
    
                if (consumerValue.isPresent() && producerValue.isPresent()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradleModuleMetadataParser.java

    import org.gradle.api.internal.artifacts.ivyservice.moduleconverter.dependencies.ExcludeRuleConverter;
    import org.gradle.api.internal.artifacts.repositories.metadata.MavenImmutableAttributesFactory;
    import org.gradle.api.internal.attributes.AttributeValue;
    import org.gradle.api.internal.attributes.ImmutableAttributes;
    import org.gradle.api.internal.attributes.ImmutableAttributesFactory;
    import org.gradle.api.internal.model.NamedObjectInstantiator;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:07:04 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      // Name is unique identifier among all resource instances managed by
      // the driver on the node. It must be a DNS subdomain.
      optional string name = 1;
    
      optional NamedResourcesAttributeValue attributeValue = 2;
    }
    
    // NamedResourcesAttributeValue must have one and only one field set.
    message NamedResourcesAttributeValue {
      // QuantityValue is a quantity.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top