Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 417 for necessarily (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/PropertyValue.java

         */
        TaskDependencyContainer getTaskDependencies();
    
        /**
         * Finalizes the property value, if possible. This makes the value final, so that it no longer changes, but not necessarily immutable.
         */
        void maybeFinalizeValue();
    
        PropertyValue ABSENT = new PropertyValue() {
            @Nullable
            @Override
            public Object call() {
                return null;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ArtifactVariantSelector.java

    import org.gradle.internal.component.ResolutionFailureHandler;
    import org.gradle.internal.component.model.GraphVariantSelector;
    
    /**
     * Selects artifacts from a set of resolved variants. This can but does not necessarily require an additional
     * round of attribute matching to select a variant containing artifacts.
     *
     * This class is intentionally named similarly to {@link GraphVariantSelector}, as it has a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 00:51:35 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top