Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for covers (0.11 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // ============================================================================
    
    // Tests that a simple per-channel quantized `stablehlo.dot_general` is properly
    // lowered to fused `tfl.fully_connected`.
    // This case covers for the following quantization patterns because
    // activation clipping ranges take affect in scale and zp of the final
    // `stablehlo.uniform_quantize`. See more details in b/319168201.
    // * dot_general_fn
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        new ClassSanityTester()
            .forAllPublicStaticMethods(Futures.class)
            .thatReturn(Future.class)
            .testNulls();
      }
    
      // This test covers a bug where an Error thrown from a callback could cause the TimeoutFuture to
      // never complete when timing out.  Notably, nothing would get logged since the Error would get
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        new ClassSanityTester()
            .forAllPublicStaticMethods(Futures.class)
            .thatReturn(Future.class)
            .testNulls();
      }
    
      // This test covers a bug where an Error thrown from a callback could cause the TimeoutFuture to
      // never complete when timing out.  Notably, nothing would get logged since the Error would get
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    ion(t,e){t.preventDefault(),this.show(e)}},{name:"togglehide",self:!0,handler:function(t){t.preventDefault(),this.hide()}},{name:vt,filter:function(){return b(this.mode,"hover")},handler:function(t){ne(t)||this.clearTimers()}},{name:wt,filter:function(){return b(this.mode,"hover")},handler:function(t){ne(t)||Mt(this.$el,":hover")||this.hide()}},{name:"beforeshow",self:!0,handler:function(){this.clearTimers(),ni.cancel(this.$el),this.position()}},{name:"show",self:!0,handler:function(){var n=this...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    			}
    			coverFile = strings.TrimSuffix(coverFile, ".go") + ".cover.go"
    			if cfg.Experiment.CoverageRedesign {
    				infiles = append(infiles, sourceFile)
    				outfiles = append(outfiles, coverFile)
    			} else {
    				cover := p.Internal.CoverVars[key]
    				if cover == nil {
    					continue // Not covering this file.
    				}
    				if err := b.cover(a, coverFile, sourceFile, cover.Var); err != nil {
    					return err
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    var groupVersions = []schema.GroupVersion{grouplessGroupVersion, testGroupVersion, newGroupVersion}
    
    var scheme = runtime.NewScheme()
    var codecs = serializer.NewCodecFactory(scheme)
    
    var codec = codecs.LegacyCodec(groupVersions...)
    var testCodec = codecs.LegacyCodec(testGroupVersion)
    var newCodec = codecs.LegacyCodec(newGroupVersion)
    var parameterCodec = runtime.NewParameterCodec(scheme)
    
    var accessor = meta.NewAccessor()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    	}
    
    	p.Internal.Imports = append(p.Internal.Imports, p1)
    }
    
    // PrepareForCoverageBuild is a helper invoked for "go install
    // -cover", "go run -cover", and "go build -cover" (but not used by
    // "go test -cover"). It walks through the packages being built (and
    // dependencies) and marks them for coverage instrumentation when
    // appropriate, and possibly adding additional deps where needed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //			significantly more expensive.
    //		Sets -cover.
    //	-coverpkg pattern1,pattern2,pattern3
    //		For a build that targets package 'main' (e.g. building a Go
    //		executable), apply coverage analysis to each package matching
    //		the patterns. The default is to apply coverage analysis to
    //		packages in the main Go module. See 'go help packages' for a
    //		description of package patterns.  Sets -cover.
    //	-v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/tools/cache"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    )
    
    var scheme = runtime.NewScheme()
    var codecs = serializer.NewCodecFactory(scheme)
    
    func init() {
    	metav1.AddToGroupVersion(scheme, metav1.SchemeGroupVersion)
    	utilruntime.Must(example.AddToScheme(scheme))
    	utilruntime.Must(examplev1.AddToScheme(scheme))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/runtime/framework_test.go

    				},
    			},
    			wantStatus: framework.NewStatus(framework.UnschedulableAndUnresolvable, injectFilterReason).WithPlugin("TestPlugin"),
    		},
    		// following tests cover multiple-plugins scenarios
    		{
    			name: "ErrorAndErrorFilters",
    			plugins: []*TestPlugin{
    				{
    					name: "TestPlugin1",
    					inj:  injectedResult{FilterStatus: int(framework.Error)},
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
Back to top