Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 852 for positioner (0.15 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/tfl_quantizer.cc

    #include "tensorflow/compiler/mlir/lite/schema/schema_generated.h"
    #include "tensorflow/lite/c/c_api_types.h"
    
    using llvm::cl::opt;
    
    // NOLINTNEXTLINE
    static opt<std::string> inputFileName(llvm::cl::Positional,
                                          llvm::cl::desc("<input file>"),
                                          llvm::cl::init("-"));
    
    namespace mlir {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    type CommentBlock struct {
    	Comments
    	Start Position
    }
    
    func (x *CommentBlock) Span() (start, end Position) {
    	return x.Start, x.Start
    }
    
    // A Line is a single line of tokens.
    type Line struct {
    	Comments
    	Start   Position
    	Token   []string
    	InBlock bool
    	End     Position
    }
    
    func (x *Line) Span() (start, end Position) {
    	return x.Start, x.End
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. test/solitaire.go

    // at the end; if center is >= 0, that last peg must be in the center position.
    // If a solution is found, solve prints the board after each move in a backward
    // fashion (i.e., the last board position is printed first, all the way back to
    // the starting board position).
    func solve() bool {
    	var last, n int
    	for pos, field := range board {
    		// try each board position
    		if field == '●' {
    			// found a peg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 2.9K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/http/DateFormatting.kt

            BROWSER_COMPATIBLE_DATE_FORMATS[i] = format
          }
          position.index = 0
          result = format.parse(this, position)
          if (position.index != 0) {
            // Something was parsed. It's possible the entire string was not consumed but we ignore
            // that. If any of the BROWSER_COMPATIBLE_DATE_FORMAT_STRINGS ended in "'GMT'" we'd have
            // to also check that position.getIndex() == value.length() otherwise parsing might have
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. src/cmd/cover/testdata/directives.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file is processed by the cover command, then a test verifies that
    // all compiler directives are preserved and positioned appropriately.
    
    //go:a
    
    //go:b
    package main
    
    //go:c1
    
    //go:c2
    //doc
    func c() {
    }
    
    //go:d1
    
    //doc
    //go:d2
    type d int
    
    //go:e1
    
    //doc
    //go:e2
    type (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 23:38:38 UTC 2017
    - 502 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/errors.go

    	}
    	return &error_{check: check, code: code}
    }
    
    // addf adds formatted error information to err.
    // It may be called multiple times to provide additional information.
    // The position of the first call to addf determines the position of the reported Error.
    // Subsequent calls to addf provide additional information in the form of additional lines
    // in the error message (types2) or continuation errors identified by a tab-indented error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtVisibilityCheckerMixIn.kt

            candidateSymbol: KaSymbolWithVisibility,
            useSiteFile: KaFileSymbol,
            receiverExpression: KtExpression? = null,
            position: PsiElement
        ): Boolean = withValidityAssertion {
            analysisSession.visibilityChecker.isVisible(candidateSymbol, useSiteFile, position, receiverExpression)
        }
    
        /**
         * Returns true for effectively public symbols, including internal declarations with @PublishedApi annotation.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. src/go/parser/interface.go

    // The position information recorded in the AST is undefined. The filename used
    // in error messages is the empty string.
    //
    // If syntax errors were found, the result is a partial AST (with [ast.Bad]* nodes
    // representing the fragments of erroneous source code). Multiple errors are
    // returned via a scanner.ErrorList which is sorted by source position.
    func ParseExpr(x string) (ast.Expr, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-tooling-builders/src/test/kotlin/org/gradle/kotlin/dsl/tooling/builders/EditorReportsBuilderTest.kt

            assertThat(reports.size, equalTo(1))
            reports.single().let { report ->
                assertThat(report.severity, equalTo(EditorReportSeverity.WARNING))
                assertThat(report.position, notNullValue())
                assertThat(report.position!!.line, equalTo(3))
                assertThat(report.message, equalTo("BOOM"))
            }
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. src/go/types/resolver_test.go

    					obj := uses[x]
    					if obj == nil {
    						t.Errorf("%s: unresolved qualified identifier %s", fset.Position(x.Pos()), x.Name)
    						return false
    					}
    					if _, ok := obj.(*PkgName); ok && uses[s.Sel] == nil {
    						t.Errorf("%s: unresolved selector %s", fset.Position(s.Sel.Pos()), s.Sel.Name)
    						return false
    					}
    					return false
    				}
    				return true
    			}
    			return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top