Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 501 for checkdead (0.14 sec)

  1. hack/lint-dependencies.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script checks version dependencies of modules. It checks whether all
    # pinned versions of checked dependencies match their preferred version or not.
    # Usage: `hack/lint-dependencies.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:42 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/Futures.java

       *       RuntimeException} (though {@code get} implementations are discouraged from throwing such
       *       exceptions).
       * </ul>
       *
       * <p>The overall principle is to continue to treat every checked exception as a checked
       * exception, every unchecked exception as an unchecked exception, and every error as an error. In
       * addition, the cause of any {@code ExecutionException} is wrapped in order to ensure that the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       * <ul>
       *   <li>All visible static methods are checked such that passing null for any parameter that's
       *       not annotated nullable (according to the rules of {@link NullPointerTester}) should throw
       *       {@link NullPointerException}.
       *   <li>If there is any visible constructor or visible static factory method declared by the
       *       class, all visible instance methods will be checked too using the instance created by
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveFailureTestFixture.groovy

            this.buildFile = buildFile
            this.config = config
        }
    
        void prepare(String config = this.config) {
            buildFile << """
                allprojects {
                    tasks.register("checkDeps") {
                        if (${GradleContextualExecuter.configCache}) {
                            def files = configurations.${config}
                            doLast {
                                files.forEach { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/JUnitTestClassExecutionResult.groovy

    import static org.hamcrest.MatcherAssert.assertThat
    
    class JUnitTestClassExecutionResult implements TestClassExecutionResult {
        GPathResult testClassNode
        String testClassName
        boolean checked
        String testClassDisplayName
        TestResultOutputAssociation outputAssociation
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/failure/TestFailureMapper.java

         * <p>
         * This method does the check purely by reflective means, and don't need the checked class to be on the classpath.
         *
         * @param cls the {@link Class} to checked
         * @return {@code true} if cls or one of its superclasses is contained in the list returned by {@link #getSupportedClassNames()}, {@code false} otherwise
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:48:53 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. manifests/addons/dashboards/README.md

    This is the preferred method for any new dashboards.
    
    ## Legacy Dashboards
    
    Many of our older dashboards are manually created in the UI and exported as JSON and checked in.
    
    ## Generation
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 815 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/ParentPomsReadOnlyCacheDependencyResolutionTest.groovy

            withReadOnlyCache()
            other.allowAll()
            parent.allowAll()
            succeeds ':checkDeps'
    
            then:
            noExceptionThrown()
        }
    
    
        @Override
        List<MavenHttpModule> getModulesInReadOnlyCache(MavenHttpRepository repo) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/resource/RemoteResource.groovy

         */
        void expectParentMkdir()
    
        /**
         * Expects that the parent directories of this resource be checked, for those resources where this is required. May be a no-op.
         */
        void expectParentCheckdir()
    
        void expectUpload()
    
        void expectUploadBroken()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationMutationIntegrationTest.groovy

            when:
            buildFile << """
    configurations.compile.withDependencies {
        throw new RuntimeException("Bad user code")
    }
    """
    
            then:
            resolve.prepare()
            fails ":checkDeps"
    
            failure.assertHasCause("Bad user code")
        }
    
        @ToBeFixedForConfigurationCache(because = "task uses Configuration API")
        def "cannot add withDependencies rule after configuration has been used"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:56 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top