Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 62 for outlier (0.12 sec)

  1. src/cmd/covdata/doc.go

    	$
    
    5. Merge profiles together:
    
    	$ go tool covdata merge -i=indir1,indir2 -o=outdir -modpaths=github.com/go-delve/delve
    	$
    
    6. Subtract one profile from another
    
    	$ go tool covdata subtract -i=indir1,indir2 -o=outdir
    	$
    
    7. Intersect profiles
    
    	$ go tool covdata intersect -i=indir1,indir2 -o=outdir
    	$
    
    8. Dump a profile for debugging purposes.
    
    	$ go tool covdata debugdump -i=indir
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/cmd/cover/cfg_test.go

    }
    
    func writeOutFileList(t *testing.T, infiles []string, outdir, tag string) ([]string, string) {
    	outfilelist := filepath.Join(outdir, tag+"outfilelist.txt")
    	var sb strings.Builder
    	cv := filepath.Join(outdir, "covervars.go")
    	outfs := []string{cv}
    	fmt.Fprintf(&sb, "%s\n", cv)
    	for _, inf := range infiles {
    		base := filepath.Base(inf)
    		of := filepath.Join(outdir, tag+".cov."+base)
    		outfs = append(outfs, of)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/cluster_outlining.cc

      builder->create<func::ReturnOp>(cluster_return_op.getLoc(),
                                      cluster_return_op.getOperands());
      cluster_return_op.erase();
    }
    
    // Builds a function that outlines region attached to cluster_op or launch_op,
    // and inserts built function into given module.
    template <typename ClusterOrLaunchOp>
    func::FuncOp BuildFunction(llvm::ArrayRef<Value> live_ins, ClusterOrLaunchOp op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/xla_cluster_formation.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics  -tf-xla-cluster-formation | FileCheck %s
    
    // Check that we outline the partitioned call with `_xla_compile_device_type`
    // to a device cluster.
    // CHECK-LABEL: func.func @xla_must_compile_true
    // CHECK: tf_device.cluster
    // CHECK-NEXT: tf.StatefulPartitionedCall
    // CHECK-NEXT: tf_device.return
    // CHECK: _cluster_outlined_function_name = "stateful_pcall_func"
    // CHECK-SAME: allow_soft_placement = true
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 19:09:44 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildSymlinkHandlingIntegrationTest.groovy

            file("in-dir").createDir()
            def outDir = file("out-dir")
            def copy = file("other")
    
            given:
            run("work")
            run("work")
            result.assertTasksSkipped(":work")
    
            when:
            Files.move(outDir.toPath(), copy.toPath(), StandardCopyOption.ATOMIC_MOVE)
            outDir.deleteDir()
            outDir.createLink(copy)
    
            run("work")
    
            /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 14:30:36 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/BUILD

        # copybara:comment_begin(JitRt/Auto fusion depreciated)
        exclude = [
            "auto-fusion.mlir",
            "tf_to_corert_pipeline_cpurt.mlir",
            "outline-cpurt-cluster.mlir",
        ],
        # copybara:comment_end
        features = if_oss(["--path=org_tensorflow/tensorflow/compiler/mlir/tfrt"]),
        size_override = {
            "fallback.mlir": "medium",
        },
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/ConfigurationCacheInstrumentationProcessorTest.groovy

        @Rule
        final TestNameTestDirectoryProvider temporaryFolder = new TestNameTestDirectoryProvider(getClass())
        final TestFile srcDir = temporaryFolder.createDir('src')
        final TestFile outDir = temporaryFolder.createDir('out')
        final TestFile classesDir = temporaryFolder.createDir('classes')
    
        def "code generation is deterministic regardless of type processing order"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. src/crypto/hmac/hmac.go

    			panic(err)
    		}
    	} else {
    		h.outer.Reset()
    		h.outer.Write(h.opad)
    	}
    	h.outer.Write(in[origLen:])
    	return h.outer.Sum(in[:origLen])
    }
    
    func (h *hmac) Write(p []byte) (n int, err error) {
    	return h.inner.Write(p)
    }
    
    func (h *hmac) Size() int      { return h.outer.Size() }
    func (h *hmac) BlockSize() int { return h.inner.BlockSize() }
    
    func (h *hmac) Reset() {
    	if h.marshaled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/internal/transform/NestedModelRuleDslDetectionIntegrationTest.groovy

    model {
        thing {
            conf {
                println "outer 1"
            }
            someProp.conf {
                println "outer 2"
                // not a rule
                conf { println "inner 1" }
            }
        }
        tasks {
            show(Task) { doLast { println $.thing } }
        }
    }
    '''
    
            expect:
            succeeds "show"
            output.contains("outer 1")
            output.contains("outer 2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. SECURITY.md

    some form of isolation when dealing with untrusted data. As a result, this
    document also outlines what issues we consider as TensorFlow security
    vulnerabilities.
    
    We recognize issues as vulnerabilities only when they occur in scenarios that we
    outline as safe; issues that have a security impact only when TensorFlow is used
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 01 06:06:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top