Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,930 for CheckM (0.14 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestResult.java

        /**
         * Returns true if regression checks is enabled.
         *
         * When checks is enabled, an exception is thrown upon the performance test regression.
         * Otherwise the regression is ignored.
         *
         * @return true if regression checks enabled, false otherwise.
         */
        public static boolean hasRegressionChecks() {
            String check = System.getProperty("org.gradle.performance.regression.checks", "true");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/DefaultMirrorSelector.java

                            result = false;
                            break;
                        }
                    }
                    // check for exact match
                    else if (repo.equals(originalId)) {
                        result = true;
                        break;
                    }
                    // check for external:*
                    else if (EXTERNAL_WILDCARD.equals(repo) && isExternalRepo(originalRepository)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. src/cmd/relnote/relnote_test.go

    	"os"
    	"path/filepath"
    	"testing"
    
    	"golang.org/x/build/relnote"
    )
    
    var flagCheck = flag.Bool("check", false, "run API release note checks")
    
    // Check that each file in api/next has corresponding release note files in doc/next.
    func TestCheckAPIFragments(t *testing.T) {
    	if !*flagCheck {
    		t.Skip("-check not specified")
    	}
    	root := testenv.GOROOT(t)
    	rootFS := os.DirFS(root)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 16:31:53 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/core-plugins/codenarc_plugin.adoc

    ====
    
    The plugin adds a number of tasks to the project that perform the quality checks when used with the <<groovy_plugin.adoc#groovy_plugin, Groovy Plugin>>. You can execute the checks by running `gradle check`.
    
    [[sec:codenarc_tasks]]
    == Tasks
    
    The CodeNarc plugin adds the following tasks to the project:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 12:08:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. test/fixedbugs/issue50854.go

    //go:noinline
    func k(p int32, x, y int32) bool { return -(1<<x) <= p && p <= y }
    
    //go:noinline
    func check(b bool) {
    	if b {
    		return
    	}
    	panic("FAILURE")
    }
    
    func main() {
    	check(f(1, -1<<63, 1<<63-1))
    	check(g(1, -1<<31, 1<<31-1))
    	check(h(1, -1<<62, 1<<63-1))
    	check(k(1, 31, 1<<31-1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 27 19:52:52 UTC 2022
    - 890 bytes
    - Viewed (0)
  6. src/go/types/const.go

    	if !math.IsInf(f, 0) {
    		return constant.MakeFloat64(f)
    	}
    	return nil
    }
    
    // representable checks that a constant operand is representable in the given
    // basic type.
    func (check *Checker) representable(x *operand, typ *Basic) {
    	v, code := check.representation(x, typ)
    	if code != 0 {
    		check.invalidConversion(code, x, typ)
    		x.mode = invalid
    		return
    	}
    	assert(v != nil)
    	x.val = v
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/const.go

    	if !math.IsInf(f, 0) {
    		return constant.MakeFloat64(f)
    	}
    	return nil
    }
    
    // representable checks that a constant operand is representable in the given
    // basic type.
    func (check *Checker) representable(x *operand, typ *Basic) {
    	v, code := check.representation(x, typ)
    	if code != 0 {
    		check.invalidConversion(code, x, typ)
    		x.mode = invalid
    		return
    	}
    	assert(v != nil)
    	x.val = v
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. test/fixedbugs/issue10958.go

    //go:build !nacl && !js && disabled_see_issue_18589
    
    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test is disabled because it flakes when run in all.bash
    // on some platforms, but is useful standalone to verify
    // that rescheduling checks are working (and we may wish
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. hack/make-rules/verify.sh

    fi
    
    if ${QUICK} ; then
      echo "Running in quick mode (QUICK=true). Only fast checks will run."
    fi
    
    ret=0
    run-checks "${KUBE_ROOT}/hack/verify-*.sh" bash
    run-checks "${KUBE_ROOT}/hack/verify-*.py" python3
    missing-target-checks
    
    if [[ ${ret} -eq 1 ]]; then
        print-failed-tests
    fi
    exit ${ret}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 12:24:15 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/error-message-with-source-info.pbtxt

    # Checks that source debug information is used in the output error message.
    # CHECK: error: 'tf.Add' op operands don't have broadcast-compatible shapes
    # CHECK: math_ops.add(x, y, name='x_y_sum')
    # CHECK: build_graph(out_dir)
    node: {
      name: "x"
      op: "Placeholder"
      attr: {
        key: "shape"
        value: {
          shape: {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:00:09 UTC 2020
    - 1.1K bytes
    - Viewed (0)
Back to top