Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,092 for Compatible (0.62 sec)

  1. src/cmd/vet/testdata/structtag/structtag.go

    // license that can be found in the LICENSE file.
    
    // This file contains the test for canonical struct tags.
    
    package structtag
    
    type StructTagTest struct {
    	A int "hello" // ERROR "`hello` not compatible with reflect.StructTag.Get: bad syntax for struct tag pair"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 20 15:46:42 UTC 2019
    - 376 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/performance/resolveAtBuildTime/groovy/build.gradle

    }
    
    // tag::copy[]
    tasks.register('copyFiles', Copy) {
        into(layout.buildDirectory.dir('output'))
        // Store the configuration into a variable because referencing the project from the task action
        // is not compatible with the configuration cache.
        FileCollection compileClasspath = configurations.compileClasspath
        from(compileClasspath)
        doFirst {
            println ">> Compilation deps: ${compileClasspath.files.name}"
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 598 bytes
    - Viewed (0)
  3. releasenotes/notes/29894.yaml

    area: istioctl
    issue:
      - 29026
    
    releaseNotes:
    - |
      **Added** `WorkloadEntry` resources will be read from all clusters in multi-cluster installations and do not need to be duplicated.
      Makes Virtual Machine auto-registration compatible with multi-primary multi-cluster. This feature is diabled by default and can be
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 14 20:15:28 UTC 2021
    - 461 bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/build.gradle.kts

    plugins {
        kotlin("jvm")
        id("jps-compatible")
    }
    
    dependencies {
        implementation(project(":compiler:psi"))
        implementation(project(":compiler:frontend.java"))
        implementation(project(":core:compiler.common"))
        implementation(project(":analysis:analysis-api"))
        implementation(project(":analysis:project-structure"))
        implementation(project(":analysis:decompiled:decompiler-to-file-stubs"))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 690 bytes
    - Viewed (0)
  5. docs/en/docs/reference/httpconnection.md

    # `HTTPConnection` class
    
    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`.
    
    You can import it from `fastapi.requests`:
    
    ```python
    from fastapi.requests import HTTPConnection
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 359 bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/productpage.py

            # 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: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (1)
  7. subprojects/core-api/src/main/java/org/gradle/api/internal/lambdas/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    /**
     * Utility functions for dealing with lambdas in a configuration-cache compatible way.
     */
    @NonNullApi
    package org.gradle.api.internal.lambdas;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 15 13:39:48 UTC 2023
    - 799 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    - the consumer wants a variant with compatible attributes to `org.gradle.usage=java-runtime` and `org.gradle.jvm.version=8`
    - the variants `runtime8Elements` and `runtime11Elements` have `org.gradle.usage=java-runtime
    - the variants `apiJava8Elements` and `apiJava11Elements` are incompatible
    - the variant `runtime8Elements` is compatible because it can run on Java 8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * This package implements support for types that are compatible with
     * Java Object Serialization.
     *
     * For more details, see:
     *
     * {@link org.gradle.internal.serialize.codecs.core.jos.JavaObjectSerializationCodec}
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 898 bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/analysis-api-standalone-base/build.gradle.kts

    plugins {
        kotlin("jvm")
        id("jps-compatible")
    }
    
    dependencies {
        implementation(intellijCore())
        implementation(kotlinStdlib())
        implementation(project(":compiler:psi"))
        implementation(project(":analysis:analysis-api-impl-base"))
        implementation(project(":analysis:decompiled:decompiler-to-file-stubs"))
        implementation(project(":analysis:decompiled:decompiler-to-psi"))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 785 bytes
    - Viewed (0)
Back to top