Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 650 for necessarily (0.77 sec)

  1. src/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: Mon Mar 11 20:28:54 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. docs/en/docs/advanced/index.md

    In the next sections you will see other options, configurations, and additional features.
    
    !!! tip
        The next sections are **not necessarily "advanced"**.
    
        And it's possible that for your use case, the solution is in one of them.
    
    ## Read the Tutorial first
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/jvm/toolchain/internal/operations/JavaToolchainUsageProgressDetails.java

            String getJavaVersion();
    
            /**
             * Returns the display name of the toolchain vendor such as {@code Eclipse Temurin}.
             * <p>
             * The value could be normalized for uniformity, and does not necessarily correspond to a system property value.
             */
            String getJavaVendor();
    
            /**
             * Returns Java runtime name such as {@code OpenJDK Runtime Environment}.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top