Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for ifNext (0.18 sec)

  1. src/cmd/compile/internal/rangefunc/rewrite.go

    			if r.checkFuncMisuse() {
    				list = append(list, r.ifNext(syntax.Lss, 0, false, r.setStateAt(curLoopIndex, abi.RF_DONE), retStmt(r.useObj(r.false))))
    			} else {
    				list = append(list, r.ifNext(syntax.Lss, 0, false, retStmt(r.useObj(r.false))))
    			}
    		}
    
    		depthStep := perLoopStep * (curLoop)
    
    		if r.checkFuncMisuse() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

    // RUN: tf-opt -tfl-prepare-composite-funcs-tf="fuse-tftext=true" %s | FileCheck %s
    
    func.func private @whitespace_tokenizer_rank1(%arg0: tensor<1x!tf_type.string> {tf._user_specified_name = "input"}) -> (tensor<?x!tf_type.string>, tensor<?xi64>) attributes {tf._input_shapes = [#tf_type.shape<1>], tf._implements = #tf_type.func<@"tftext:WhitespaceTokenizer", {}>, tf.signature.is_stateful} {
      %0 = "tf.Const"() {value = dense<[0, 1]> : tensor<2xi64>} : () -> tensor<2xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  3. internal/s3select/sql/stringfuncs_test.go

    		{"abcd", "bc", true, "d", true},
    	}
    
    	for i, tc := range matcherCases {
    		res, ok := matcher(tc.iText, tc.iPat, tc.iHasLeadingPercent)
    		if res != tc.resultExpected || ok != tc.matchExpected {
    			t.Errorf("Matcher Case %d failed", i)
    		}
    	}
    
    	evalCases := []struct {
    		iText, iPat   string
    		iEsc          rune
    		matchExpected bool
    		errExpected   error
    	}{
    		{"abcd", "abc", runeZero, false, nil},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JodExtractor.java

            } catch (final OfficeException e) {
                throw new CrawlerSystemException("Failed to stop officeManager.", e);
            }
        }
    
        public void addConversionRule(final String inExt, final String outExt) {
            extensionMap.put(inExt, outExt);
        }
    
        /*
         * (non-Javadoc)
         *
         * @see org.codelibs.fess.crawler.extractor.Extractor#getText(java.io.InputStream,
         * java.util.Map)
         */
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. src/go/printer/printer.go

    				p.state = inEscape
    				m = n + 1 // +1: skip tabwriter.Escape
    			default:
    				_, err = p.output.Write(p.space)
    				p.state = inText
    				m = n
    			}
    		case inEscape:
    			if b == tabwriter.Escape {
    				_, err = p.output.Write(data[m:n])
    				p.resetSpace()
    			}
    		case inText:
    			switch b {
    			case '\t', ' ':
    				_, err = p.output.Write(data[m:n])
    				p.resetSpace()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loadpe/ldpe.go

    // stub.
    func PostProcessImports() error {
    	ldr := importSymsState.l
    	arch := importSymsState.arch
    	keeprelocneeded := make(map[loader.Sym]loader.Sym)
    	for _, s := range importSymsState.secSyms {
    		isText := ldr.SymType(s) == sym.STEXT
    		relocs := ldr.Relocs(s)
    		for i := 0; i < relocs.Count(); i++ {
    			r := relocs.At(i)
    			rs := r.Sym()
    			if ldr.SymType(rs) == sym.SDYNIMPORT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

    namespace {
    #define GEN_PASS_DEF_PREPARECOMPOSITEFUNCTIONSPASS
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    constexpr char kTFAPIImplements[] = "tf.api_implements";
    constexpr char kTFTextAPIPrefix[] = "tftext:";
    constexpr char kCustomSSDPostprocessing[] = "TFLite_Detection_PostProcess";
    constexpr char kTfNMSPadded[] = "non_max_suppression_padded_v2";
    constexpr char kCustomMaxUnpooling[] = "addons:MaxUnpooling2D";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/net/MediaTypeTest.java

          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testCreate_invalidSubtype() {
        try {
          MediaType.create("text", "pl@intext");
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testCreate_wildcardTypeDeclaredSubtype() {
        try {
          MediaType.create("*", "text");
          fail();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/net/MediaTypeTest.java

          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testCreate_invalidSubtype() {
        try {
          MediaType.create("text", "pl@intext");
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testCreate_wildcardTypeDeclaredSubtype() {
        try {
          MediaType.create("*", "text");
          fail();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/passes.td

          body with the corresponding fused TFLite op. The replacement need not
          always be a fused op, though that is the primary use case.
      }];
      let options = [
          Option<"tfl_fuse_tftext_", "fuse-tftext", "bool", "false",
                 "Fuse TF.Text API ops when it's true">
      ];
    
    }
    
    def PrepareQuantizePass : Pass<"tfl-prepare-quantize", "mlir::func::FuncOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top