Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 746 for checkedBy (0.14 sec)

  1. src/cmd/go/testdata/script/cover_cgo_extra_file.txt

    [short] skip
    [!cgo] skip
    [compiler:gccgo] skip # gccgo has no cover tool
    
    # Test coverage on cgo code. This test case includes an
    # extra empty non-cgo file in the package being checked.
    
    go test -short -cover cgocover4
    stdout  'coverage:.*[1-9][0-9.]+%'
    ! stderr '[^0-9]0\.0%'
    
    -- go.mod --
    module cgocover4
    
    go 1.16
    -- notcgo.go --
    package p
    -- p.go --
    package p
    
    /*
    void
    f(void)
    {
    }
    */
    import "C"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 560 bytes
    - Viewed (0)
  2. src/cmd/go/internal/gover/mod.go

    		}
    		return IsValid(vers)
    	}
    	return semver.IsValid(vers)
    }
    
    // ModIsPrefix reports whether v is a valid version syntax prefix for the module with the given path.
    // The caller is assumed to have checked that ModIsValid(path, vers) is true.
    func ModIsPrefix(path, vers string) bool {
    	if IsToolchain(path) {
    		if path == "toolchain" {
    			return IsLang(FromToolchain(vers))
    		}
    		return IsLang(vers)
    	}
    	// Semver
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:18:46 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/go/internal/modload/stat_openfile.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build (js && wasm) || plan9
    
    // On plan9, per http://9p.io/magic/man2html/2/access: “Since file permissions
    // are checked by the server and group information is not known to the client,
    // access must open the file to check permissions.”
    //
    // js,wasm is similar, in that it does not define syscall.Access.
    
    package modload
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 12 16:45:11 UTC 2022
    - 791 bytes
    - Viewed (0)
  6. subprojects/core/src/main/resources/org/gradle/reporting/report.js

                operation(codeBlocks[i], "wrapped");
            }
        }
    
        function toggleLineWrapping() {
            var checkBox = getCheckBox();
    
            if (checkBox.checked) {
                forAllCodeBlocks(addClass);
            } else {
                forAllCodeBlocks(removeClass);
            }
        }
    
        function initControls() {
            if (findCodeBlocks().length > 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 24 16:08:08 UTC 2014
    - 5.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. hack/update-conformance-yaml.sh

    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    cd "${KUBE_ROOT}"
    
    # generate json spec -> yaml
    test/conformance/gen-conformance-yaml.sh
    # replace checked-in yaml
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 21:15:01 UTC 2024
    - 886 bytes
    - Viewed (0)
Back to top