Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 9,702 for covered (0.12 sec)

  1. tensorflow/compiler/mlir/lite/transforms/legalize_hashtables.cc

          return false;
        }
    
        for (auto& use : hashtable->getUses()) {
          Operation* user = use.getOwner();
    
          // Allow consuming hash table ops that can be covered by TensorFlow Lite
          // hash table kernels.
          if (auto find_op = llvm::dyn_cast<TF::LookupTableFindV2Op>(user))
            continue;
          if (auto import_op = llvm::dyn_cast<TF::LookupTableImportV2Op>(user))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/testing/internal/testdeps/deps.go

    	fuzz.SnapshotCoverage()
    }
    
    var CoverMode string
    var Covered string
    
    // These variables below are set at runtime (via code in testmain) to point
    // to the equivalent functions in package internal/coverage/cfile; doing
    // things this way allows us to have tests import internal/coverage/cfile
    // only when -cover is in effect (as opposed to importing for all tests).
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/LICENSE

    The Go source code and supporting files in this directory
    are covered by the usual Go license (see ../../../../LICENSE).
    
    When building with GOEXPERIMENT=boringcrypto, the following applies.
    
    The goboringcrypto_linux_amd64.syso object file is built
    from BoringSSL source code by build/build.sh and is covered
    by the BoringSSL license reproduced below and also at
    https://boringssl.googlesource.com/boringssl/+/fips-20190808/LICENSE.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildOperationsIntegrationTest.groovy

            for (BuildOperationRecord operationRecord : allOps) {
                assertChildrenNotIn(operationRecord, operationRecord, allOps)
            }
        }
    
        // Also covered by tests in configuration cache project
        @Requires(IntegTestPreconditions.NotConfigCached)
        def "generates build lifecycle operations for included builds with #display"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. src/internal/coverage/cformat/format.go

    // to name them (this is also consistent with the legacy cmd/cover
    // implementation). We do want to include their counts in the overall
    // summary however.
    func (fm *Formatter) EmitFuncs(w io.Writer) error {
    	if fm.cm == coverage.CtrModeInvalid {
    		panic("internal error, counter mode unset")
    	}
    	perc := func(covered, total uint64) float64 {
    		if total == 0 {
    			total = 1
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/profiles/activation/JdkPrefixProfileActivator.java

        public boolean isActive(Profile profile) throws ProfileActivationException {
            Activation activation = profile.getActivation();
    
            String jdk = activation.getJdk();
    
            // null case is covered by canDetermineActivation(), so we can do a straight startsWith() here.
            if (jdk.startsWith("[") || jdk.startsWith("(")) {
                try {
                    return matchJdkVersionRange(jdk);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/readme-templates/native-library-body.adoc.template

    To build a static library, please refer to the https://github.com/gradle/native-samples/tree/master/cpp/static-library[static library sample].
    
    NOTE: Dependencies on other projects isn't covered in this guide.
    To learn more about this subject, have a look at the https://github.com/gradle/native-samples/tree/master/cpp/transitive-dependencies[transitive dependency sample] for a demonstration.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. pkg/volume/util/fsquota/quota.go

    	// Get the quota-based inode consumption for the path
    	GetInodes(path string) (*resource.Quantity, error)
    
    	// Remove the quota from a path
    	// Implementations may assume that any data covered by the
    	// quota has already been removed.
    	ClearQuota(m mount.Interface, path string) error
    }
    
    func enabledQuotasForMonitoring() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 28 06:09:31 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. src/internal/reflectlite/set_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package reflectlite_test
    
    import (
    	"bytes"
    	"go/ast"
    	"go/token"
    	. "internal/reflectlite"
    	"io"
    	"testing"
    )
    
    func TestImplicitSetConversion(t *testing.T) {
    	// Assume TestImplicitMapConversion covered the basics.
    	// Just make sure conversions are being applied at all.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  10. internal/ioutil/hardlimitreader.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    // Package ioutil implements some I/O utility functions which are not covered
    // by the standard library.
    package ioutil
    
    import (
    	"errors"
    	"io"
    )
    
    // ErrOverread is returned to the reader when the hard limit of HardLimitReader is exceeded.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 06 02:53:12 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top