Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,092 for Compatible (0.24 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/DefaultAttributeMatcherTest.groovy

            schema.attribute(usage)
            schema.accept(usage, "requested", "compatible")
            schema.accept(usage, "requested", "best")
            schema.prefer(usage, "best")
            def other = Attribute.of('other', String)
            schema.attribute(other)
            schema.accept(other, "requested", "compatible")
            schema.accept(other, "requested", "best")
            schema.prefer(other, "best")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/JavaEcosystemAttributesDescriberTest.groovy

                .attribute(ProjectInternal.STATUS_ATTRIBUTE, "release")
    
            then:
            describer.describeAttributeSet(attributes.asMap()) == "a library for use during compile-time, with a release status, compatible with Java 11, packaged as a jar"
        }
    
        def "describes a library with MAX_VALUE target JVM version"() {
            when:
            attributes.attribute(Usage.USAGE_ATTRIBUTE, named(Usage, "java-api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 13 17:05:19 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. docs/en/docs/how-to/general.md

    ## Convert any Data to JSON-compatible
    
    To convert any data to JSON-compatible, read the docs for [Tutorial - JSON Compatible Encoder](../tutorial/encoder.md){.internal-link target=_blank}.
    
    ## OpenAPI Metadata - Docs
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_prefer_compatible.txt

    # Regression test for golang.org/issue/34189 and golang.org/issue/34165:
    # @latest, @upgrade, and @patch should prefer compatible versions over
    # +incompatible ones, even if offered by a proxy.
    
    [!net:github.com] skip
    [!net:proxy.golang.org] skip
    
    env GO111MODULE=on
    env GOPROXY=
    env GOSUMDB=
    
    # github.com/russross/blackfriday v2.0.0+incompatible exists,
    # and should be resolved if we ask for it explicitly.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 17 18:25:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. MIGRATION.md

    Fess provides a [Google Search Appliance](https://enterprise.google.com/search/products/gsa.html) (GSA) compatible API. To enable this API, set `web.api.gsa=true` to system.properties. This will enable an enpoint at `<Fess Server Name>:8080/gsa`. When a search query is sent to `<Fess Server Name>:8080/gsa/?q=QUERY`, a GSA compatible response will be returned
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 05 06:12:02 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/verify_tfxla_legalization_test.cc

      OwningOpRef<ModuleOp> module_;
      std::unique_ptr<mlir::PassManager> pm_;
    };
    
    TEST_F(VerifyTfxlaLegalizationTest, RecordsStreamzFailedVerification) {
      // Using a string constant here instead of testdata to make this compatible
      // with open source.
      static constexpr char kMlirModuleStr[] = R"(
      module attributes {tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 268 : i32}} {
        func.func @main() -> tensor<1xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginCheckInService.java

        public static final String UNSUPPORTED_TOGGLE_MESSAGE = "Enterprise plugin unsupported due to secret toggle";
    
        // For Gradle versions 8+, configuration caching builds are not compatible with Gradle Enterprise plugin < 3.12
        public static final VersionNumber MINIMUM_SUPPORTED_PLUGIN_VERSION_FOR_CONFIGURATION_CACHING = VersionNumber.version(3, 12);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 13:28:46 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/cpumanager/policy_options.go

    	return opts, nil
    }
    
    // ValidateStaticPolicyOptions ensures that the requested policy options are compatible with the machine on which the CPUManager is running.
    func ValidateStaticPolicyOptions(opts StaticPolicyOptions, topology *topology.CPUTopology, topologyManager topologymanager.Store) error {
    	if opts.AlignBySocket {
    		// Not compatible with topology manager single-numa-node policy option.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/dependencies/MatchType.java

         * the configuration's requested value.
         */
        INCOMPATIBLE,
        /**
         * The attribute was requested by the configuration, and the actual value was <strong>compatible</strong> with
         * the configuration's requested value.
         */
        COMPATIBLE,
        /**
         * The attribute was requested by the configuration, and the actual value was <strong>equal</strong> to the
         * configuration's requested value.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 22 19:19:36 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  10. cmd/kubelet/app/auth.go

    	kubeletconfig "k8s.io/kubernetes/pkg/kubelet/apis/config"
    	"k8s.io/kubernetes/pkg/kubelet/server"
    )
    
    // BuildAuth creates an authenticator, an authorizer, and a matching authorizer attributes getter compatible with the kubelet's needs
    // It returns AuthInterface, a run method to start internal controllers (like cert reloading) and error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 07 14:37:01 UTC 2022
    - 5K bytes
    - Viewed (0)
Back to top