Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for div1 (0.14 sec)

  1. src/cmd/go/internal/load/pkg.go

    			base.Fatalf("%s", err)
    		}
    		if fi.IsDir() {
    			base.Fatalf("%s is a directory, should be a Go file", file)
    		}
    		dir1 := filepath.Dir(file)
    		if dir == "" {
    			dir = dir1
    		} else if dir != dir1 {
    			base.Fatalf("named files must all be in one directory; have %s and %s", dir, dir1)
    		}
    		dirent = append(dirent, fi)
    	}
    	ctxt.ReadDir = func(string) ([]fs.FileInfo, error) { return dirent, nil }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * <pre>
         * project.sync {
         *     from 'source'
         *     into 'dest'
         *     preserve {
         *         include 'extraDir/**'
         *         include 'dir1/**'
         *         exclude 'dir1/extra.txt'
         *     }
         * }
         * </pre>
         *
         * @param action Action to configure the SyncSpec.
         * @since 4.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. src/os/os_windows_test.go

    	dir := filepath.Join(tmpdir, "dir")
    	if err := os.Mkdir(dir, 0777); err != nil {
    		t.Fatal(err)
    	}
    	f, err := os.Open(dir)
    	if err != nil {
    		t.Fatal(err)
    	}
    	newpath := filepath.Join(tmpdir, "dir1")
    	err = os.Rename(dir, newpath)
    	if err == nil || !errors.Is(err, windows.ERROR_SHARING_VIOLATION) {
    		f.Close()
    		t.Fatalf("Rename(%q, %q) = %v; want windows.ERROR_SHARING_VIOLATION", dir, newpath, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Select0 (Mul64uhilo x y)) => (UMULH x y)
    (Select1 (Mul64uhilo x y)) => (MUL x y)
    
    (Div64 [false] x y) => (DIV  x y)
    (Div32 [false] x y) => (DIVW x y)
    (Div16 [false] x y) => (DIVW (SignExt16to32 x) (SignExt16to32 y))
    (Div16u x y) => (UDIVW (ZeroExt16to32 x) (ZeroExt16to32 y))
    (Div8   x y) => (DIVW  (SignExt8to32  x) (SignExt8to32  y))
    (Div8u  x y) => (UDIVW (ZeroExt8to32  x) (ZeroExt8to32  y))
    (Div64u ...) => (UDIV  ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/opGen.go

    		generic: true,
    	},
    	{
    		name:    "Avg64u",
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:    "Div8",
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:    "Div8u",
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:    "Div16",
    		auxType: auxBool,
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:    "Div16u",
    		argLen:  2,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewritePPC64.go

    		v.AddArg(v0)
    		return true
    	}
    }
    func rewriteValuePPC64_OpDiv16(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Div16 [false] x y)
    	// result: (DIVW (SignExt16to32 x) (SignExt16to32 y))
    	for {
    		if auxIntToBool(v.AuxInt) != false {
    			break
    		}
    		x := v_0
    		y := v_1
    		v.reset(OpPPC64DIVW)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteARM64.go

    		return true
    	}
    }
    func rewriteValueARM64_OpDiv16(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Div16 [false] x y)
    	// result: (DIVW (SignExt16to32 x) (SignExt16to32 y))
    	for {
    		if auxIntToBool(v.AuxInt) != false {
    			break
    		}
    		x := v_0
    		y := v_1
    		v.reset(OpARM64DIVW)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      );
    
      let results = (outs);
    }
    
    def TF_DivOp : TF_Op<"Div", [Pure, ResultsBroadcastableShape, TF_SameOperandsAndResultElementTypeResolveRef]>,
                   WithBroadcastableBinOpBuilder {
      let summary = "Returns x / y element-wise.";
    
      let description = [{
    *NOTE*: `Div` supports broadcasting. More about broadcasting
    [here](http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top