Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for con2 (0.17 sec)

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

      // CHECK-NEXT: %[[RES2:.*]] = "tf.MulNoNan"(%[[ARG0]], %[[CON2]]) : (tensor<2xf32>, tensor<2xf32>) -> tensor<2xf32>
      // CHECK-NEXT: return %[[RES1]], %[[RES2]], %[[CON3]] : tensor<2xf32>, tensor<2xf32>, tensor<2xf32>
      %con1 = "tf.Const"() { value = dense<[1.0, 2.0]> : 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/net/http/server.go

    type connReader struct {
    	conn *conn
    
    	mu      sync.Mutex // guards following
    	hasByte bool
    	byteBuf [1]byte
    	cond    *sync.Cond
    	inRead  bool
    	aborted bool  // set true before conn.rwc deadline is set to past
    	remain  int64 // bytes remaining
    }
    
    func (cr *connReader) lock() {
    	cr.mu.Lock()
    	if cr.cond == nil {
    		cr.cond = sync.NewCond(&cr.mu)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K 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/database/sql/sql_test.go

    	ctx := context.Background()
    
    	conn0, err := db.conn(ctx, cachedOrNewConn)
    	if err != nil {
    		t.Fatalf("db open conn fail: %v", err)
    	}
    
    	conn1, err := db.conn(ctx, cachedOrNewConn)
    	if err != nil {
    		t.Fatalf("db open conn fail: %v", err)
    	}
    
    	conn2, err := db.conn(ctx, cachedOrNewConn)
    	if err != nil {
    		t.Fatalf("db open conn fail: %v", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. 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)
  6. src/net/http/transport_test.go

    	c := ts.Client()
    	c.Transport.(*Transport).Dial = func(n, addr string) (net.Conn, error) {
    		conn, err := net.Dial(n, addr)
    		if err != nil {
    			return nil, err
    		}
    		conn.SetDeadline(time.Now().Add(timeout))
    		if debug {
    			conn = NewLoggingConn("client", conn)
    		}
    		return conn, nil
    	}
    
    	getFailed := false
    	nRuns := 5
    	if testing.Short() {
    		nRuns = 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K 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