Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,559 for necessarily (0.19 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantResolveMetadata.java

     */
    public interface VariantResolveMetadata extends VariantGraphResolveMetadata.Subvariant {
        @Override
        String getName();
    
        /**
         * An identifier for this variant, if available. A variant may not necessarily have an identifier associated with it, for example if it represents some ad hoc variant.
         */
        @Nullable
        Identifier getIdentifier();
    
        DisplayName asDescribable();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/build/PATENTS

    implementation of Go, where such license applies only to those patent
    claims, both currently owned or controlled by Google and acquired in
    the future, licensable by Google that are necessarily infringed by this
    implementation of Go.  This grant does not include claims that would be
    infringed only as a consequence of further modification of this
    implementation.  If you or your agent or exclusive licensee institute or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/PATENTS

    implementation of Go, where such license applies only to those patent
    claims, both currently owned or controlled by Google and acquired in
    the future, licensable by Google that are necessarily infringed by this
    implementation of Go.  This grant does not include claims that would be
    infringed only as a consequence of further modification of this
    implementation.  If you or your agent or exclusive licensee institute or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/connection/FailedPlan.kt

     *    to use `H2_PRIOR_KNOWLEDGE` but the URL's scheme is `https:`.
     *  * Preemptive proxy authentication failed.
     *
     * Planning failures are not necessarily fatal. For example, even if we can't DNS lookup the first
     * proxy in a list, looking up a subsequent one may succeed.
     */
    internal class FailedPlan(e: Throwable) : RoutePlanner.Plan {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/types/AbstractAbbreviatedTypeTest.kt

     * expanded type from a library vs. from a source module. (Abbreviated types from libraries and from sources aren't necessarily constructed
     * in the same way.)
     *
     * This test is different from [AbstractTypeByDeclarationReturnTypeTest] because we want to generate tests for extension-site modules with
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. src/go/types/exprstring.go

    // Shortened representations are suitable for user interfaces but may not
    // necessarily follow Go syntax.
    func ExprString(x ast.Expr) string {
    	var buf bytes.Buffer
    	WriteExpr(&buf, x)
    	return buf.String()
    }
    
    // WriteExpr writes the (possibly shortened) string representation for x to buf.
    // Shortened representations are suitable for user interfaces but may not
    // necessarily follow Go syntax.
    func WriteExpr(buf *bytes.Buffer, x ast.Expr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 19:31:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/ModelIdentifier.java

        /**
         * The name of the null model.
         */
        final String NULL_MODEL = Void.class.getName();
    
        /**
         * The name of the model.
         *
         * Note that the model name is not necessarily a class name. It simply uniquely identifies the model.
         * Use {@link #NULL_MODEL} to indicate that no model is desired.
         */
        String getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/OperationDescriptor.java

     *
     * @since 2.4
     */
    @HasInternalProtocol
    public interface OperationDescriptor {
    
        /**
         * Returns the name of the operation. This name does not necessarily uniquely identify the operation. However, the name can be used
         * by a human to disambiguate between the children of a given operation.
         *
         * @return The name of the operation.
         */
        String getName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/plan/WorkSource.java

        enum State {
            /**
             * There may be work ready to start. The worker thread should call {@link #selectNext()} to select the next item.
             * Note this does not mean that {@link #selectNext()} will necessarily return an item, only that it is likely to.
             * {@link #selectNext()} may not return an item, for example when some other worker thread takes the work.
             */
            MaybeWorkReadyToStart,
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 13 20:53:27 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantGraphResolveState.java

         */
        ResolvedVariantResult getVariantResult(@Nullable ResolvedVariantResult externalVariant);
    
        /**
         * Determines the set of artifacts for this variant, if required during graph resolution. Does not necessarily download the artifacts.
         *
         * <p>Note that this may be expensive, for example it may block waiting for access to the source project or for network or IO requests to the source repository, and should be used only when
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top