Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for maddld (0.46 sec)

  1. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Max(32|64)F x y) && buildcfg.GOPPC64 >= 9 => (XSMAXJDP x y)
    
    // Combine 64 bit integer multiply and adds
    (ADD l:(MULLD x y) z) && buildcfg.GOPPC64 >= 9 && l.Uses == 1 && clobber(l) => (MADDLD x y z)
    
    (Mod16 x y) => (Mod32 (SignExt16to32 x) (SignExt16to32 y))
    (Mod16u x y) => (Mod32u (ZeroExt16to32 x) (ZeroExt16to32 y))
    (Mod8 x y) => (Mod32 (SignExt8to32 x) (SignExt8to32 y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                            version("my.middle", "1.0")
                            version("my.middle.bottom", "1.1")
                        }
                    }
                }
            """
    
            buildFile """
                tasks.register("dumpVersions") {
                    def first = libs.versions.my.middle.asProvider()
                    def second = libs.versions.my.middle.bottom
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/arm64.s

    	LDADDH	R5, (RSP), R7                        // e7032578
    	LDADDB	R5, (R6), R7                         // c7002538
    	LDADDB	R5, (RSP), R7                        // e7032538
    	LDADDLD	R5, (R6), R7                         // c70065f8
    	LDADDLD	R5, (RSP), R7                        // e70365f8
    	LDADDLW	R5, (R6), R7                         // c70065b8
    	LDADDLW	R5, (RSP), R7                        // e70365b8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  4. src/net/url/url_test.go

    	},
    
    	{
    		unescaped: strings.Repeat("padded/with+various%characters?that=need$some@escaping+paddedsowebreak/256bytes", 4),
    		query:     strings.Repeat("padded%2Fwith%2Bvarious%25characters%3Fthat%3Dneed%24some%40escaping%2Bpaddedsowebreak%2F256bytes", 4),
    		path:      strings.Repeat("padded%2Fwith+various%25characters%3Fthat=need$some@escaping+paddedsowebreak%2F256bytes", 4),
    	},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    th.valign-top,
    td.valign-top {
    	vertical-align: top;
    }
    
    th.valign-bottom,
    td.valign-bottom {
    	vertical-align: bottom;
    }
    
    th.valign-middle,
    td.valign-middle {
    	vertical-align: middle;
    }
    
    table thead th,
    table tfoot th {
    	font-weight: bold;
    }
    
    tbody tr th {
    	display: table-cell;
    	line-height: 1.6;
    	background: var(--table-color);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/ppc64.s

    	REMU R3, R4, R5                 // 7fe41b967fff19d67bff00287cbf2050
    	REMD R3, R4, R5                 // 7fe41bd27fff19d27cbf2050
    	REMDU R3, R4, R5                // 7fe41b927fff19d27cbf2050
    
    	MADDHD R3,R4,R5,R6              // 10c32170
    	MADDHDU R3,R4,R5,R6             // 10c32171
    
    	MODUD R3, R4, R5                // 7ca41a12
    	MODUW R3, R4, R5                // 7ca41a16
    	MODSD R3, R4, R5                // 7ca41e12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let description = [{
    This op copies the padded tensor on cpu to TPU without the padded data. `tensors` 
    is a list of cpu tensors with padded data. `unpadded_sizes` is a list of shape
    tensors which describes unpadded size of each dimension for each cpu tensor. 
    The size of the `unpadded_sizes` should be the same as `tensors`. They are both
    on host. `tpu_tensors` are list of tpu device tensors without the padded data.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  8. pilot/pkg/model/sidecar_test.go

    		benchmarkConvertIstioListenerToWrapper(b, 10, 3, "", true)
    	})
    
    	b.Run("middle-exact", func(b *testing.B) {
    		benchmarkConvertIstioListenerToWrapper(b, 100, 10, "", false)
    	})
    	b.Run("middle-wildcard", func(b *testing.B) {
    		benchmarkConvertIstioListenerToWrapper(b, 100, 10, "*.", false)
    	})
    	b.Run("middle-match-all", func(b *testing.B) {
    		benchmarkConvertIstioListenerToWrapper(b, 100, 10, "", true)
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "FNMSUBD", argLength: 3, reg: fp31, asm: "FNMSUBD"}, // -arg0 + (arg1 * arg2)
    		{name: "MADD", argLength: 3, reg: gp31, asm: "MADD"},       // +arg0 + (arg1 * arg2)
    		{name: "MADDW", argLength: 3, reg: gp31, asm: "MADDW"},     // +arg0 + (arg1 * arg2), 32-bit
    		{name: "MSUB", argLength: 3, reg: gp31, asm: "MSUB"},       // +arg0 - (arg1 * arg2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  10. src/runtime/map.go

    			break
    		}
    		b = ovf
    	}
    
    	// Did not find mapping for key. Allocate new cell & add entry.
    
    	// If we hit the max load factor or we have too many overflow buckets,
    	// and we're not already in the middle of growing, start growing.
    	if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
    		hashGrow(t, h)
    		goto again // Growing the table invalidates everything, so try again
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top