Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 324 for Positions (0.15 sec)

  1. src/cmd/internal/obj/inl.go

    	return ctxt.PosTable.Pos(xpos)
    }
    
    // AllPos invokes do with every position in the inlining call stack for xpos,
    // from outermost to innermost. That is, xpos corresponds to f inlining g inlining h,
    // AllPos invokes do with the position in f, then the position in g, then the position in h.
    func (ctxt *Link) AllPos(xpos src.XPos, do func(src.Pos)) {
    	pos := ctxt.InnermostPos(xpos)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 22:47:15 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/Java8Compatibility.java

        b.flip();
      }
    
      static void limit(Buffer b, int limit) {
        b.limit(limit);
      }
    
      static void mark(Buffer b) {
        b.mark();
      }
    
      static void position(Buffer b, int position) {
        b.position(position);
      }
    
      static void reset(Buffer b) {
        b.reset();
      }
    
      private Java8Compatibility() {}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/net/http/routing_index.go

    		// dollar patterns must have the {$} in the same position.
    		return apply(idx.segments[routingIndexKey{s: "/", pos: len(pat.segments) - 1}])
    	}
    	// For ordinary and multi patterns, the only conflicts can be with a multi,
    	// or a pattern that has the same literal or a wildcard at some literal
    	// position.
    	// We could intersect all the possible matches at each position, but we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 19 18:35:22 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. src/go/types/commentMap_test.go

    // the comment with any comment markers ("//", "/*", or "*/") stripped.
    // The position for each comment is the position of the token immediately
    // preceding the comment, with all comments that are on the same line
    // collected in a slice, in source order. If there is no preceding token
    // (the matching comment appears at the beginning of the file), then the
    // recorded position is unknown (line, col = 0, 0).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. src/math/unsafe.go

    // with the sign bit of f and the result in the same bit position.
    // Float32bits(Float32frombits(x)) == x.
    func Float32bits(f float32) uint32 { return *(*uint32)(unsafe.Pointer(&f)) }
    
    // Float32frombits returns the floating-point number corresponding
    // to the IEEE 754 binary representation b, with the sign bit of b
    // and the result in the same bit position.
    // Float32frombits(Float32bits(x)) == x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    	rb.InsertRuleV4(command, chain, table, position, params...)
    	rb.InsertRuleV6(command, chain, table, position, params...)
    	return rb
    }
    
    // nolint lll
    func (rb *IptablesRuleBuilder) insertInternal(ipt *[]*Rule, command log.Command, chain string, table string, position int, params ...string) *IptablesRuleBuilder {
    	rules := params
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top