Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for runChecks (0.13 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/preflight.go

    			client: client,
    			f:      checkUnsupportedPlugins,
    		},
    		&CoreDNSCheck{
    			name:   "CoreDNSMigration",
    			client: client,
    			f:      checkMigration,
    		},
    	}
    
    	return preflight.RunChecks(migrationChecks, os.Stderr, ignorePreflightErrors)
    }
    
    // checkUnsupportedPlugins checks if there are any plugins included in the current configuration
    // that are unsupported for migration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 25 13:53:28 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. 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