Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,258 for covered (0.13 sec)

  1. src/cmd/go/internal/load/test.go

    	}
    	return pkg
    }
    
    // Covered returns a string describing which packages are being tested for coverage.
    // If the covered package is the same as the tested package, it returns the empty string.
    // Otherwise it is a comma-separated human-readable list of packages beginning with
    // " in", ready for use in the coverage message.
    func (t *testFuncs) Covered() string {
    	if t.Cover == nil || t.Cover.Paths == nil {
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

     *   public static Book paperback(String title) {...}
     * }
     * </pre>
     *
     * <p>please use {@link ClassSanityTester#forAllPublicStaticMethods}.
     *
     * <p>If not all classes on the classpath should be covered, {@link #ignoreClasses} can be used to
     * exclude certain classes. As a special case, classes with an underscore in the name (like {@code
     * AutoValue_Foo}) can be excluded using <code>ignoreClasses({@link #UNDERSCORE_IN_NAME})</code>.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. LICENSES/vendor/sigs.k8s.io/yaml/LICENSE

    OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    
    # The forked go-yaml.v3 library under this project is covered by two
    different licenses (MIT and Apache):
    
    #### MIT License ####
    
    The following files were ported to Go from C files of libyaml, and thus
    are still covered by their original MIT license, with the additional
    copyright staring in 2011 when the project was ported over:
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:42:44 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. LICENSE

    and installation of the library.
    
      Activities other than copying, distribution and modification are not
    covered by this License; they are outside its scope.  The act of
    running a program using the Library is not restricted, and output from
    such a program is covered only if its contents constitute a work based
    on the Library (independent of the use of the Library in a tool for
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  5. licenses/sigs.k8s.io/yaml/LICENSE

    OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    
    # The forked go-yaml.v3 library under this project is covered by two
    different licenses (MIT and Apache):
    
    #### MIT License ####
    
    The following files were ported to Go from C files of libyaml, and thus
    are still covered by their original MIT license, with the additional
    copyright staring in 2011 when the project was ported over:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 19:53:28 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteCond_test.go

    // yield expected results.
    // 32 rewriting rules are covered. At least two scenarios for "Canonicalize
    // the order of arguments to comparisons", which helps with CSE, are covered.
    // The tedious if-else structures are necessary to ensure all concerned rules
    // and machine code sequences are covered.
    // It's for arm64 initially, please see https://github.com/golang/go/issues/38740
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 01:19:09 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcBuildOperationsIntegrationTest.groovy

                        apply plugin: 'java'
                    }
    """
            }
            includedBuilds << buildB
        }
    
        @Requires(value = IntegTestPreconditions.NotConfigCached, reason = "Also covered by tests in configuration cache project")
        def "generates configure, task graph and run tasks operations for buildSrc of included builds with #display"() {
            given:
            dependency 'org.test:buildB:1.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/policy/v1/types.go

    }
    
    const (
    	// DisruptionAllowedCondition is a condition set by the disruption controller
    	// that signal whether any of the pods covered by the PDB can be disrupted.
    	DisruptionAllowedCondition = "DisruptionAllowed"
    
    	// SyncFailedReason is set on the DisruptionAllowed condition if reconcile
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/core-plugins/jacoco_plugin.adoc

    Code coverage requirements can be specified for a project as a whole, for individual files, and for particular JaCoCo-specific types of coverage, e.g., lines covered or branches covered. The following example describes the syntax.
    
    .Configuring violation rules
    ====
    include::sample[dir="snippets/testing/jacoco-quickstart/kotlin",files="build.gradle.kts[tags=violation-rules-configuration]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

        outputs.dir new File(buildDir, "largeEmptyMultiProjectDeclarativeDsl")
        outputs.cacheIf { true }
        inputs.property('template', "largeEmptyMultiProjectDeclarativeDsl")
        inputs.property('args') { // Arguments are covered by the testProjectName and the outputs. We don't want them to contain the absolute path
            return []
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top