Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 371 for Automatic (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/authenticationconfig/metrics/metrics_test.go

    )
    
    func TestRecordAuthenticationConfigAutomaticReloadFailure(t *testing.T) {
    	expectedValue := `
    	# HELP apiserver_authentication_config_controller_automatic_reloads_total [ALPHA] Total number of automatic reloads of authentication configuration split by status and apiserver identity.
        # TYPE apiserver_authentication_config_controller_automatic_reloads_total counter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/testKit/automaticClasspathInjectionQuickstart/kotlin/build.gradle.kts

    // tag::automatic-classpath[]
    plugins {
        groovy
        `java-gradle-plugin`
    }
    
    dependencies {
        testImplementation("org.spockframework:spock-core:2.2-groovy-3.0") {
            exclude(group = "org.codehaus.groovy")
        }
        testRuntimeOnly("org.junit.platform:junit-platform-launcher")
    }
    // end::automatic-classpath[]
    
    tasks.named<Test>("test") {
        useJUnitPlatform()
    }
    
    repositories {
        mavenCentral()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 409 bytes
    - Viewed (0)
  3. docs/bucket/lifecycle/README.md

    ### 3.1 Automatic removal of non current objects versions
    
    A non-current object version is a version which is not the latest for a given object. It is possible to set up an automatic removal of non-current versions when a version becomes older than a given number of days.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/testKit/automaticClasspathInjectionQuickstart/groovy/build.gradle

    // tag::automatic-classpath[]
    plugins {
        id 'groovy'
        id 'java-gradle-plugin'
    }
    
    dependencies {
        testImplementation('org.spockframework:spock-core:2.2-groovy-3.0') {
            exclude group: 'org.codehaus.groovy'
        }
        testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
    }
    // end::automatic-classpath[]
    
    tasks.named('test', Test) {
        useJUnitPlatform()
    }
    
    repositories {
        mavenCentral()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 414 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/authorizationconfig/metrics/metrics_test.go

    )
    
    func TestRecordAuthorizationConfigAutomaticReloadFailure(t *testing.T) {
    	expectedValue := `
    	# HELP apiserver_authorization_config_controller_automatic_reloads_total [ALPHA] Total number of automatic reloads of authorization configuration split by status and apiserver identity.
        # TYPE apiserver_authorization_config_controller_automatic_reloads_total counter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. Makefile

    test-site-replication-ldap: install-race ## verify automatic site replication
    	@echo "Running tests for automatic site replication of IAM (with LDAP)"
    	@(env bash $(PWD)/docs/site-replication/run-multi-site-ldap.sh)
    
    test-site-replication-oidc: install-race ## verify automatic site replication
    	@echo "Running tests for automatic site replication of IAM (with OIDC)"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/java-library/module/groovy/build.gradle

        implementation 'org.apache.commons:commons-lang3:3.10' // automatic module
        implementation 'commons-cli:commons-cli:1.4'           // plain library
    }
    // end::dependencies[]
    
    // tag::automaticModuleName[]
    tasks.named('jar') {
        manifest {
            attributes('Automatic-Module-Name': 'org.gradle.sample')
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 742 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java-library/module/kotlin/build.gradle.kts

        implementation("org.apache.commons:commons-lang3:3.10") // automatic module
        implementation("commons-cli:commons-cli:1.4")           // plain library
    }
    // end::dependencies[]
    
    // tag::automaticModuleName[]
    tasks.jar {
        manifest {
            attributes("Automatic-Module-Name" to "org.gradle.sample")
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 736 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/testKit/automaticClasspathInjectionQuickstart/kotlin/src/test/groovy/org/gradle/sample/BuildLogicFunctionalTest.groovy

        File buildFile
    
        def setup() {
            settingsFile = new File(testProjectDir, 'settings.gradle')
            buildFile = new File(testProjectDir, 'build.gradle')
        }
    
        // tag::functional-test-classpath-setup-automatic[]
        def "hello world task prints hello world"() {
            given:
            settingsFile << "rootProject.name = 'hello-world'"
            buildFile << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/metrics/metrics_test.go

    	registry := testMetricsRegistry(t)
    
    	expectedValue := `
    	# HELP apiserver_encryption_config_controller_automatic_reload_failures_total [ALPHA] (Deprecated since 1.30.0) Total number of failed automatic reloads of encryption configuration split by apiserver identity.
        # TYPE apiserver_encryption_config_controller_automatic_reload_failures_total counter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 05:47:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top