Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for runChecks (0.11 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/test/kotlin/org/gradle/internal/declarativedsl/settings/SettingsBlockCheckTest.kt

            val result = pluginsSchema.runChecks(
                """
                pluginManagement { }
                pluginManagement { }
                plugins { }
                """.trimIndent()
            )
    
            assertTrue(result.isEmpty())
        }
    
        @Test
        fun `reports all order violations for plugins blocks`() {
            val result = pluginsSchema.runChecks(
                """
                foo()
                bar()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/health.go

    			name:   "ControlPlaneNodesReady",
    			client: client,
    			f:      controlPlaneNodesReady,
    		},
    		&healthCheck{
    			name: "StaticPodManifest",
    			f:    staticPodManifestHealth,
    		},
    	}
    
    	return preflight.RunChecks(healthChecks, os.Stderr, ignoreChecksErrors)
    }
    
    // createJob is a check that verifies that a Job can be created in the cluster
    func createJob(client clientset.Interface, cfg *kubeadmapi.ClusterConfiguration) error {
    	const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:18:02 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top