Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 324 for Positions (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.css

    }
    .submenu a.disabled {
      color: gray;
      pointer-events: none;
    }
    .menu-check-mark {
      position: absolute;
      left: 2px;
    }
    .menu-delete-btn {
      position: absolute;
      right: 2px;
    }
    
    {{/* Used to disable events when a modal dialog is displayed */}}
    #dialog-overlay {
      display: none;
      position: fixed;
      left: 0px;
      top: 0px;
      width: 100%;
      height: 100%;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  5. 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)
  6. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/MappedPosition.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.scala;
    
    import xsbti.Position;
    
    import java.io.File;
    import java.util.Optional;
    
    public class MappedPosition implements Position {
        private final Position delegate;
    
        public MappedPosition(final Position delegate) {
            this.delegate = delegate;
        }
    
        @Override
        public Optional<Integer> line() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolDeclarationRendererProvider.kt

         */
        public fun KaType.render(
            renderer: KaTypeRenderer = KaTypeRendererForSource.WITH_QUALIFIED_NAMES,
            position: Variance,
        ): String =
            withValidityAssertion { analysisSession.symbolDeclarationRendererProvider.renderType(this, renderer, position) }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. test/fixedbugs/issue49016.dir/a.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package a
    
    type Node interface {
    	Position()
    }
    
    type noder struct{}
    
    func (noder) Position() {}
    
    type Scope map[int][]Node
    
    func (s Scope) M1() Scope {
    	if x, ok := s[0]; ok {
    		return x[0].(struct {
    			noder
    			Scope
    		}).Scope
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 20 17:26:58 UTC 2021
    - 543 bytes
    - Viewed (0)
  9. src/go/types/errorcalls_test.go

    				return true
    			}
    			// check.errorf calls should have at least errorfMinArgCount arguments:
    			// position, code, format string, and arguments to format
    			if n := len(call.Args); n < errorfMinArgCount {
    				t.Errorf("%s: got %d arguments, want at least %d", fset.Position(call.Pos()), n, errorfMinArgCount)
    				return false
    			}
    			format := call.Args[errorfFormatIndex]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. src/go/ast/commentmap.go

    		p     Node           // previous node
    		pend  token.Position // end of p
    		pg    Node           // previous node group (enclosing nodes of "importance")
    		pgend token.Position // end of pg
    		stack nodeStack      // stack of node groups
    	)
    
    	for _, q := range nodes {
    		var qpos token.Position
    		if q != nil {
    			qpos = fset.Position(q.Pos()) // current node position
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top