Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 228 for Positions (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/compile/internal/syntax/nodes_test.go

    )
    
    // A test is a source code snippet of a particular node type.
    // In the snippet, a '@' indicates the position recorded by
    // the parser when creating the respective node.
    type test struct {
    	nodetyp string
    	snippet string
    }
    
    var decls = []test{
    	// The position of declarations is always the
    	// position of the first token of an individual
    	// declaration, independent of grouping.
    	{"ImportDecl", `import @"math"`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 18:45:06 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  9. 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)
  10. docs/en/docs/css/custom.css

    .user {
      margin: 1em;
      min-width: 7em;
    }
    
    .user .avatar-wrapper {
      width: 80px;
      height: 80px;
      margin: 10px auto;
      overflow: hidden;
      border-radius: 50%;
      position: relative;
    }
    
    .user .avatar-wrapper img {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    
    .user .title {
      text-align: center;
    }
    
    .user .count {
      font-size: 80%;
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jan 28 09:53:45 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top