Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 99 for BREAK (0.09 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

                    a.node_def(i), b.node_def(j),
                    absl::StrCat("Function ", a.signature().name()), diff)) {
              return false;
            }
            found = true;
            break;
          }
        }
        if (!found) {
          if (diff) {
            *diff = absl::StrCat("Function ", a.signature().name(),
                                 ", expected: has node '", a.node_def(i).name(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/asmz.go

    	{i: 86, as: ALA, a1: C_SOREG, a6: C_REG},
    	{i: 86, as: ALA, a1: C_SAUTO, a6: C_REG},
    	{i: 87, as: AEXRL, a1: C_SYMADDR, a6: C_REG},
    
    	// undefined (deliberate illegal instruction)
    	{i: 78, as: obj.AUNDEF},
    
    	// Break point instruction(0x0001 opcode)
    	{i: 73, as: ABRRK},
    
    	// 2 byte no-operation
    	{i: 66, as: ANOPH},
    
    	// crypto instructions
    
    	// KM
    	{i: 124, as: AKM, a1: C_REG, a6: C_REG},
    
    	// KDSA
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      auto input_shape = input_type.getShape();
      int num_leading_broadcast_dims = 0;
      for (int i = 0; i < input_shape.size(); ++i) {
        if (input_shape[i] == 1) {
          ++num_leading_broadcast_dims;
        } else {
          break;
        }
      }
      return num_leading_broadcast_dims;
    }
    
    // Return the number of trailing 1s in the shape of the given input.
    // Ex. input_shape = [1 x 1 x 2 x 1] => 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      for (int i = result_shape.size() - 1; i >= 0; --i) {
        current_index[i]++;
        if (current_index[i] == result_shape[i]) {
          current_index[i] = 0;
        } else {
          break;
        }
      }
    }
    
    /// Performs const folding `calculate` with broadcast behavior on the two
    /// attributes `operand1` and `operand2` and returns the result if possible.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/asm9.go

    			return C_XOREG
    		}
    		switch a.Name {
    		case obj.NAME_GOTREF, obj.NAME_TOCREF:
    			return C_ADDR
    
    		case obj.NAME_EXTERN,
    			obj.NAME_STATIC:
    			c.instoffset = a.Offset
    			if a.Sym == nil {
    				break
    			} else if a.Sym.Type == objabi.STLSBSS {
    				// For PIC builds, use 12 byte got initial-exec TLS accesses.
    				if c.ctxt.Flag_shared {
    					return C_TLS_IE
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    	for _, m := range matches {
    		if m.IsLiteral() || len(m.Pkgs) == 0 {
    			continue
    		}
    		foundMain := false
    		for _, path := range m.Pkgs {
    			if treatAsMain[path] {
    				foundMain = true
    				break
    			}
    		}
    		if !foundMain {
    			fmt.Fprintf(os.Stderr, "go: warning: %q matched only non-main packages\n", m.Pattern())
    		}
    	}
    
    	return mains
    }
    
    type mainPackageError struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        count: Int,
      ): String {
        val result = StringBuilder()
        for (i in 0 until count) {
          val value = inputStream.read()
          if (value == -1) {
            inputStream.close()
            break
          }
          result.append(value.toChar())
        }
        return result.toString()
      }
    
      @Test
      fun markAndResetWithContentLengthHeader() {
        testMarkAndReset(TransferKind.FIXED_LENGTH)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

               /*default=*/"false",
               "Allows to switch on passthrough args for control flow logic. This "
               "allows the pass to create blocks that better match MLIR interfaces, "
               "but might break assumptions in existing passes.">
      ];
    }
    
    def RegionControlFlowToFunctionalPass : Pass<"tf-region-control-flow-to-functional", "ModuleOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. src/database/sql/sql.go

    			if c.returnedAt.Before(idleSince) {
    				i++
    				closing = db.freeConn[:i:i]
    				db.freeConn = db.freeConn[i:]
    				idleClosing = int64(len(closing))
    				db.maxIdleTimeClosed += idleClosing
    				break
    			}
    		}
    
    		if len(db.freeConn) > 0 {
    			c := db.freeConn[0]
    			if d2 := c.returnedAt.Sub(idleSince); d2 < d {
    				// Ensure idle connections are cleaned up as soon as
    				// possible.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  10. pkg/ctrlz/assets/static/css/bootstrap-4.0.0.min.css

    x-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 141.5K bytes
    - Viewed (0)
Back to top