Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for disambiguate (0.51 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AttributeMatchingArtifactVariantSelector.java

            }
    
            throw failureProcessor.noMatchingArtifactVariantFailure(schema, matcher, producer.asDescribable().getDisplayName(), componentRequested, variants);
        }
    
        /**
         * Attempt to disambiguate between multiple potential transform candidates. This first performs attribute matching on the {@code candidates}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 13:33:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

    4. If several candidates are compatible and are compatible with an equal number of attributes, Gradle needs to disambiguate the candidates.
        a. For each requested attribute, if a candidate does not have a value matching the disambiguation rule, it's eliminated from consideration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/DefaultAttributesSchema.java

                return consumerSchema.getAttributes().contains(attribute) || producerSchema.getAttributes().contains(attribute);
            }
    
            @Override
            public Set<Object> disambiguate(Attribute<?> attribute, @Nullable Object requested, Set<Object> candidates) {
                DefaultMultipleCandidateResult<Object> result = null;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 16:59:54 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensions.kt

         *
         * We must rely on the dynamic cast and possible runtime failure here due to a Kotlin extension member limitation.
         * Kotlin currently can't disambiguate between invoke operators with more specific receivers in a type hierarchy.
         *
         * See https://youtrack.jetbrains.com/issue/KT-15711
         */
        private
        fun polymorphicDomainObjectContainer() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. src/crypto/ed25519/ed25519.go

    	// stack-allocated.
    	signature := make([]byte, SignatureSize)
    	sign(signature, privateKey, message, domPrefixPure, "")
    	return signature
    }
    
    // Domain separation prefixes used to disambiguate Ed25519/Ed25519ph/Ed25519ctx.
    // See RFC 8032, Section 2 and Section 5.1.
    const (
    	// domPrefixPure is empty for pure Ed25519.
    	domPrefixPure = ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md

    - `org.gradle.status` indicates the kind of release: one of `release` or `integration`.
    - `org.gradle.category` indicates the type of component (library, platform or documentation). This attribute is mostly used to disambiguate Maven POM files derived either as a platform or a library. Value must be a string.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 23:32:14 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. src/runtime/select.go

    		// start of queue
    		y.prev = nil
    		q.first = y
    		sgp.next = nil
    		return
    	}
    
    	// x==y==nil. Either sgp is the only element in the queue,
    	// or it has already been removed. Use q.first to disambiguate.
    	if q.first == sgp {
    		q.first = nil
    		q.last = nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    - `org.gradle.status` indicates the kind of release: one of `release` or `integration`.
    - `org.gradle.category` indicates the type of component (library, platform or documentation). This attribute is mostly used to disambiguate Maven POM files derived either as a platform or a library. Value must be a string.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    }
    
    // getDisambiguatedNames returns a map from each node in the graph to
    // the name to use in the callgrind output. Callgrind merges all
    // functions with the same [file name, function name]. Add a [%d/n]
    // suffix to disambiguate nodes with different values of
    // node.Function, which we want to keep separate. In particular, this
    // affects graphs created with --call_tree, where nodes from different
    // contexts are associated to different Functions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. pkg/config/analysis/msg/messages.yaml

        template: "This VirtualService routes to a service %q that exposes multiple ports %v. Specifying a port in the destination is required to disambiguate."
        args:
          - name: destHost
            type: string
          - name: destPorts
            type: "[]int"
    
      # IST0113 RETIRED
      # IST0114 RETIRED
      # IST0115 RETIRED
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top