Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,092 for Compatible (0.25 sec)

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

        /**
         * Determines whether the given candidate is compatible with the requested criteria.
         */
        boolean isMatching(AttributeContainerInternal candidate, AttributeContainerInternal requested);
    
        <T> boolean isMatching(Attribute<T> attribute, T candidate, T requested);
    
        /**
         * Selects all matches from {@code candidates} that are compatible with the {@code requested} criteria attributes.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. samples/bookinfo/src/reviews/reviews-application/src/main/java/application/rest/LibertyRestEndpoint.java

            // W3C Trace Context. Compatible with OpenCensusAgent and Stackdriver Istio
            // configurations.
            "traceparent",
            "tracestate",
    
            // Cloud trace context. Compatible with OpenCensusAgent and Stackdriver Istio
            // configurations.
            "x-cloud-trace-context",
    
            // Grpc binary trace context. Compatible with OpenCensusAgent nad
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 15 22:25:32 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/UserAgentHelperTest.java

            getMockRequest().addHeader("user-agent", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0)");
            assertEquals(UserAgentType.IE, userAgentHelper.getUserAgentType());
        }
    
        public void test_getUserAgentType_IE10() {
            getMockRequest().addHeader("user-agent", "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Trident/6.0)");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/TargetJVMVersionOnLibraryTooNewFailureDescriber.java

        private static final String JVM_VERSION_TOO_HIGH_TEMPLATE = "Dependency resolution is looking for a library compatible with JVM runtime version %s, but '%s' is only compatible with JVM runtime version %s or newer.";
    
        @Override
        protected JavaVersion getJVMVersion(IncompatibleGraphVariantFailure failure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 12:37:16 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ViewBuilder.java

         * Applied to all views reachable from created views. The mix-in object should be serializable.
         *
         * When a given method cannot be found on the source object for a view, the mix-in object is searched for a compatible method.
         * For a getter method, the mix-in may also provide a method that takes the view as a parameter.
         *
         * @return this
         */
        ViewBuilder<T> mixInTo(Class<?> targetType, Object mixIn);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/manually.md

    thedocs.io/en/stable/" class="external-link" target="_blank">AnyIO</a>, which makes them compatible with both Python's standard library <a href="https://docs.python.org/3/library/asyncio-task.html" class="external-link" target="_blank">asyncio</a> and <a href="https://trio.readthedocs.io/en/stable/" class="external-link" target="_blank">Trio</a>.
    
    Nevertheless, Uvicorn is currently only compatible with asyncio, and it normally uses <a href="https://github.com/MagicStack/uvloop" class="external-link"...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/inspectingDependencies-dependencyReason/kotlin/build.gradle.kts

    // tag::dependency-reason[]
    plugins {
        `java-library`
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        implementation("org.ow2.asm:asm:7.1") {
            because("we require a JDK 9 compatible bytecode generator")
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 260 bytes
    - Viewed (0)
  8. docs/en/docs/reference/request.md

    You can import it directly from `fastapi`:
    
    ```python
    from fastapi import Request
    ```
    
    !!! tip
        When you want to define dependencies that should be compatible with both HTTP and WebSockets, you can define a parameter that takes an `HTTPConnection` instead of a `Request` or a `WebSocket`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 516 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/inspectingDependencies-dependencyReason/groovy/build.gradle

    // tag::dependency-reason[]
    plugins {
        id 'java-library'
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        implementation('org.ow2.asm:asm:7.1') {
            because 'we require a JDK 9 compatible bytecode generator'
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 262 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_tensor_helper.cc

          out_shape.push_back(shape[i]);
        else if (keep_dims.getValue())
          out_shape.push_back(1);
      }
      return RankedTensorType::get(out_shape, element_ty);
    }
    
    // Verifies that the given types are cast compatible. If not, emits appropriate
    // error for the given op. If mask_one_dim is set to true, then the types are
    // allowed to have one mismatching dimension. Masking one of the dimensions is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top