Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 215 for outlier (0.22 sec)

  1. 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)
  2. cmd/genutils/genutils_test.go

    package genutils
    
    import (
    	"testing"
    )
    
    func TestValidDir(t *testing.T) {
    	_, err := OutDir("./")
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    func TestInvalidDir(t *testing.T) {
    	_, err := OutDir("./nondir")
    	if err == nil {
    		t.Fatal("expected an error")
    	}
    }
    
    func TestNotDir(t *testing.T) {
    	_, err := OutDir("./genutils_test.go")
    	if err == nil {
    		t.Fatal("expected an error")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 04 01:42:08 UTC 2017
    - 953 bytes
    - Viewed (0)
  3. src/main/java/jcifs/pac/PacMac.java

        }
    
    
        public static byte[] expandNFold ( byte[] data, int outlen ) {
            int lcm = lcm(outlen, data.length);
            byte[] buf = new byte[outlen];
            int carry = 0;
            for ( int i = lcm - 1; i >= 0; i-- ) {
                carry = carry_add(data, buf, carry, i);
            }
    
            if ( carry != 0 ) {
                for ( int i = outlen - 1; i >= 0; i-- ) {
                    carry += ( buf[ i ] & 0xff );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_issue60313.txt

    go 1.21
    
    require example.net/outer/inner v0.1.0
    -- a/a.go --
    package a
    -- a/a_test.go --
    package a_test
    
    import _ "example.net/outer/inner"
    -- b/go.mod --
    module example.net/b
    
    go 1.21
    
    require example.net/outer v0.1.0
    -- b/b.go --
    package b
    -- b/b_test.go --
    package b_test
    
    import _ "example.net/outer/inner"
    -- inner/go.mod --
    module example.net/outer/inner
    
    go 1.21
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 12 19:42:01 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. 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)
  6. cmd/gendocs/gen_kubectl_docs.go

    	path := "docs/"
    	if len(os.Args) == 2 {
    		path = os.Args[1]
    	} else if len(os.Args) > 2 {
    		fmt.Fprintf(os.Stderr, "usage: %s [output directory]\n", os.Args[0])
    		os.Exit(1)
    	}
    
    	outDir, err := genutils.OutDir(path)
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "failed to get output directory: %v\n", err)
    		os.Exit(1)
    	}
    
    	// Set environment variables used by kubectl so the output is consistent,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. tensorflow/c/eager/c_api_unified_experimental.h

    // TODO(srbs): Add APIs for specifying attrs etc.
    // `op_type` must outlive `op`.
    void TF_AbstractOpSetOpType(TF_AbstractOp* op, const char* const op_type,
                                TF_Status* s);
    // `op_name` must outlive `op`.
    void TF_AbstractOpSetOpName(TF_AbstractOp* op, const char* const op_name,
                                TF_Status* s);
    // `attr_name` must outlive `op`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 24 11:27:00 UTC 2021
    - 7K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/go/testdata/script/test_json_interleaved.txt

    stdout '"Test":"TestWeirdTiming","Output":"[^"]* logging to outer again\\n"'
    
    -- go.mod --
    module example.com
    go 1.15
    -- main_test.go --
    package main
    
    import (
    	"testing"
    )
    
    func TestWeirdTiming(outer *testing.T) {
    	outer.Run("pauser", func(pauser *testing.T) {
    		outer.Logf("logging to outer")
    		pauser.Parallel()
    	})
    
    	outer.Logf("logging to outer again")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 18 17:44:20 UTC 2020
    - 581 bytes
    - Viewed (0)
  10. test/fixedbugs/issue51401.go

    	runtime.Callers(2, stack[:])
    
    	return nil
    }
    
    func main() {
    	funcs := listFuncs(New())
    	for _, f := range funcs {
    		f()
    	}
    }
    
    func listFuncs(outer Outer) []func() error {
    	return []func() error{outer.DoStuff}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 21:27:42 UTC 2022
    - 766 bytes
    - Viewed (0)
Back to top