Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 91 for recommendation (0.3 sec)

  1. cluster/gce/windows/k8s-node-setup.psm1

      Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-Management-PowerShell -All -NoRestart
    }
    
    # Configures the TCP/IP parameters to be in sync with the GCP recommendation.
    # Not setting these values correctly can cause network issues for connections
    # that live longer than 10 minutes.
    # See: https://cloud.google.com/compute/docs/troubleshooting/general-tips#idle-connections
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/java-platform/recommender/kotlin/consumer/build.gradle.kts

    plugins {
        `java-library`
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::get-recommendations[]
    dependencies {
        // get recommended versions from the platform project
        api(platform(project(":platform")))
        // no version required
        api("commons-httpclient:commons-httpclient")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 321 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java-platform/recommender/groovy/consumer/build.gradle

    plugins {
        id 'java-library'
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::get-recommendations[]
    dependencies {
        // get recommended versions from the platform project
        api platform(project(':platform'))
        // no version required
        api 'commons-httpclient:commons-httpclient'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 322 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_platform_plugin.adoc

    ====
    
    And then have subprojects depend on the platform to get recommendations:
    
    .Get recommendations from a platform
    ====
    include::sample[dir="snippets/java-platform/recommender/kotlin/consumer",files="build.gradle.kts[tags=get-recommendations]"]
    include::sample[dir="snippets/java-platform/recommender/groovy/consumer",files="build.gradle[tags=get-recommendations]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformResolveIntegrationTest.groovy

                        maven { url "${mavenHttpRepo.uri}" }
                    }
                    group = 'org.test'
                    version = '1.9'
                }
            """
        }
    
        def "can get recommendations from a platform subproject"() {
            def module = mavenHttpRepo.module("org", "foo", "1.1").publish()
    
            given:
            platformModule("""
                constraints {
                    api "org:foo:1.1"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.5.md

    ## External Dependency Version Information
    
    Continuous integration builds have used the following versions of external dependencies, however, this is not a strong recommendation and users should consult an appropriate installation or upgrade guide before deciding what versions of etcd, docker or rkt to use.
    
    * Docker versions 1.10.3 - 1.12.3
      * Docker version 1.11.2 known issues
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/attributes/Usage.java

         * The Swift API of a library, packaged as swiftmodule files.
         *
         * @since 4.1
         */
        String SWIFT_API = "swift-api";
    
        /**
         * A version catalog, packaged as TOML files, for use as recommendations
         * for dependency and plugin versions.
         *
         * @since 7.0
         */
        String VERSION_CATALOG = "version-catalog";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

                ],
                "description": "scaleDown is scaling policy for scaling Down. If not set, the default value is to allow to scale down to minReplicas pods, with a 300 second stabilization window (i.e., the highest recommendation for the last 300sec is used)."
              },
              "scaleUp": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.HPAScalingRules"
                  }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  9. src/net/http/server.go

    		// content-length has been provided. The connection must be closed after the
    		// reply is written, and no chunking is to be done. This is the setup
    		// recommended in the Server-Sent Events candidate recommendation 11,
    		// section 8.
    		if hasTE && te == "identity" {
    			cw.chunking = false
    			w.closeAfterReply = true
    			delHeader("Transfer-Encoding")
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

              the state of the GatewayClass at the time it was created and changes to
              the GatewayClass or associated parameters are not propagated down to existing
              Gateways. This recommendation is intended to limit the blast radius of changes
              to GatewayClass or associated parameters. If implementations choose to propagate
              GatewayClass changes to existing Gateways, that MUST be clearly documented
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
Back to top