Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 9,702 for covered (1.14 sec)

  1. licenses/github.com/hashicorp/hcl/LICENSE

         provided that You also comply with the requirements of this License for the
         Covered Software. If the Larger Work is a combination of Covered Software
         with a work governed by one or more Secondary Licenses, and the Covered
         Software is not Incompatible With Secondary Licenses, this License permits
         You to additionally distribute such Covered Software under the terms of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 15.6K bytes
    - Viewed (0)
  2. licenses/github.com/hashicorp/errwrap/LICENSE

         provided that You also comply with the requirements of this License for the
         Covered Software. If the Larger Work is a combination of Covered Software
         with a work governed by one or more Secondary Licenses, and the Covered
         Software is not Incompatible With Secondary Licenses, this License permits
         You to additionally distribute such Covered Software under the terms of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 15.6K bytes
    - Viewed (0)
  3. platforms/jvm/jacoco/src/testFixtures/groovy/org/gradle/testing/jacoco/plugins/fixtures/JacocoReportXmlFixture.groovy

                    def covered = 0
                    if (it.counter.size() > 0) {
                        def classCounter = it.counter.find { it.@type == "CLASS" }
                        missed = Integer.parseInt(******@****.***ng())
                        covered = Integer.parseInt(classCounter.@covered.toString())
                    }
    
                    return new Coverage(name, covered, missed)
                })
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. licenses/github.com/hashicorp/go-version/LICENSE

         provided that You also comply with the requirements of this License for the
         Covered Software. If the Larger Work is a combination of Covered Software
         with a work governed by one or more Secondary Licenses, and the Covered
         Software is not Incompatible With Secondary Licenses, this License permits
         You to additionally distribute such Covered Software under the terms of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. licenses/github.com/hashicorp/golang-lru/v2/LICENSE

         provided that You also comply with the requirements of this License for
         the Covered Software. If the Larger Work is a combination of Covered
         Software with a work governed by one or more Secondary Licenses, and the
         Covered Software is not Incompatible With Secondary Licenses, this
         License permits You to additionally distribute such Covered Software
         under the terms of such Secondary License(s), so that the recipient of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 03 20:21:32 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  6. licenses/github.com/hashicorp/go-multierror/LICENSE

         provided that You also comply with the requirements of this License for the
         Covered Software. If the Larger Work is a combination of Covered Software
         with a work governed by one or more Secondary Licenses, and the Covered
         Software is not Incompatible With Secondary Licenses, this License permits
         You to additionally distribute such Covered Software under the terms of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 15.6K bytes
    - Viewed (0)
  7. LICENSE

    permission to run the unmodified Program.  The output from running a
    covered work is covered by this License only if the output, given its
    content, constitutes a covered work.  This License acknowledges your
    rights of fair use or other equivalent, as provided by copyright law.
    
      You may make, run and propagate covered works that you do not
    convey, without conditions so long as your license otherwise remains
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 33.7K bytes
    - Viewed (0)
  8. src/cmd/cover/func.go

    		total += int64(b.NumStmt)
    		if b.Count > 0 {
    			covered += int64(b.NumStmt)
    		}
    	}
    	return covered, total
    }
    
    // Pkg describes a single package, compatible with the JSON output from 'go list'; see 'go help list'.
    type Pkg struct {
    	ImportPath string
    	Dir        string
    	Error      *struct {
    		Err string
    	}
    }
    
    func findPkgs(profiles []*cover.Profile) (map[string]*Pkg, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  9. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/rules/JacocoPluginCoverageVerificationIntegrationTest.groovy

            [Insufficient.LINE_METRIC_COVERED_RATIO]                    | 'line metric with covered ratio'                                         | 'lines covered ratio is 1.0, but expected maximum is 0.5'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. src/testing/cover.go

    // It is not covered (yet) by the Go 1 compatibility guidelines.
    type CoverBlock struct {
    	Line0 uint32 // Line number for block start.
    	Col0  uint16 // Column number for block start.
    	Line1 uint32 // Line number for block end.
    	Col1  uint16 // Column number for block end.
    	Stmts uint16 // Number of statements included in this block.
    }
    
    var cover Cover
    
    // Cover records information about test coverage checking.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:37:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top