Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for cons (0.06 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      // CHECK: %[[CON1:.*]] = "tf.Const"() <{value = dense<[1.000000e+00, 2.000000e+00]> : tensor<2xf32>}> : () -> tensor<2xf32>
      // CHECK-NEXT: %[[CON2:.*]] = "tf.Const"() <{value = dense<[1.000000e+01, 0.000000e+00]> : tensor<2xf32>}> : () -> tensor<2xf32>
      // CHECK-NEXT: %[[CON3:.*]] = "tf.Const"() <{value = dense<0.000000e+00> : tensor<2xf32>}> : () -> tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    	defer cancel()
    
    	conn, err := db.Conn(ctx)
    	if err != nil {
    		t.Fatal("db.Conn", err)
    	}
    	defer conn.Close()
    	coc := conn.dc.ci.(*ctxOnlyConn)
    	coc.fc.skipDirtySession = true
    
    	_, err = conn.ExecContext(ctx, "WIPE")
    	if err != nil {
    		t.Fatal("exec wipe", err)
    	}
    
    	_, err = conn.ExecContext(ctx, "CREATE|keys|v1=string")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

                }
    
                configurations {
                    conf
                }
                dependencies {
                    conf 'org:b:1.0'
                    conf 'org:c:1.0'
                    conf 'org:d:1.0'
                }
            """
    
            when:
            run "dependencyInsight", "--dependency", "leaf", "--configuration", "conf"
    
            then:
            outputContains """
    org:leaf:1.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    	case BlockRISCV64BEQ:
    		// match: (BEQ (MOVDconst [0]) cond yes no)
    		// result: (BEQZ cond yes no)
    		for b.Controls[0].Op == OpRISCV64MOVDconst {
    			v_0 := b.Controls[0]
    			if auxIntToInt64(v_0.AuxInt) != 0 {
    				break
    			}
    			cond := b.Controls[1]
    			b.resetWithControl(BlockRISCV64BEQZ, cond)
    			return true
    		}
    		// match: (BEQ cond (MOVDconst [0]) yes no)
    		// result: (BEQZ cond yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  5. src/main/webapp/css/bootstrap.min.css

    -ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Dec 25 08:05:52 UTC 2019
    - 155.8K bytes
    - Viewed (0)
  6. src/main/webapp/css/admin/bootstrap.min.css

    -ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 155.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (CondSelect <t> x y cond)
    	// result: (OR (MASKEQZ <t> x cond) (MASKNEZ <t> y cond))
    	for {
    		t := v.Type
    		x := v_0
    		y := v_1
    		cond := v_2
    		v.reset(OpLOONG64OR)
    		v0 := b.NewValue0(v.Pos, OpLOONG64MASKEQZ, t)
    		v0.AddArg2(x, cond)
    		v1 := b.NewValue0(v.Pos, OpLOONG64MASKNEZ, t)
    		v1.AddArg2(y, cond)
    		v.AddArg2(v0, v1)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    		// match: (GTZ (MOVVconst [c]) yes no)
    		// cond: c <= 0
    		// result: (First no yes)
    		for b.Controls[0].Op == OpMIPS64MOVVconst {
    			v_0 := b.Controls[0]
    			c := auxIntToInt64(v_0.AuxInt)
    			if !(c <= 0) {
    				break
    			}
    			b.Reset(BlockFirst)
    			b.swapSuccessors()
    			return true
    		}
    	case BlockIf:
    		// match: (If cond yes no)
    		// result: (NE cond yes no)
    		for {
    			cond := b.Controls[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteWasm.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (Load <t> ptr mem)
    	// cond: is32BitFloat(t)
    	// result: (F32Load ptr mem)
    	for {
    		t := v.Type
    		ptr := v_0
    		mem := v_1
    		if !(is32BitFloat(t)) {
    			break
    		}
    		v.reset(OpWasmF32Load)
    		v.AddArg2(ptr, mem)
    		return true
    	}
    	// match: (Load <t> ptr mem)
    	// cond: is64BitFloat(t)
    	// result: (F64Load ptr mem)
    	for {
    		t := v.Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"CCMN (register)","Bits":"1|0|1|1|1|0|1|0|0|1|0|Rm:5|cond:4|0|0|Rn:5|0|nzcv:4","Arch":"64-bit variant","Syntax":"CCMN <Xn>, <Xm>, #<nzcv>, <cond>","Code":"","Alias":""},
    {"Name":"CCMP (immediate)","Bits":"0|1|1|1|1|0|1|0|0|1|0|imm5:5|cond:4|1|0|Rn:5|0|nzcv:4","Arch":"32-bit variant","Syntax":"CCMP <Wn>, #<imm>, #<nzcv>, <cond>","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
Back to top