Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 228 for Positions (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. docs/en/docs/css/termynal.css

        border-radius: 4px;
        padding: 75px 45px 35px;
        position: relative;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        line-height: 1.2;
    }
    
    [data-termynal]:before {
        content: '';
        position: absolute;
        top: 15px;
        left: 15px;
        display: inline-block;
        width: 15px;
        height: 15px;
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/PatternHelper.java

                switch (ch) {
                    case '(':
                        if (insideOptionalPart) {
                            throw new IllegalArgumentException(
                                "invalid start of optional part at position " + i + " in pattern "
                                    + pattern);
                        }
    
                        optionalPart = new StringBuilder();
                        insideOptionalPart = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. src/internal/poll/sendfile_windows.go

    		})
    		if err != nil {
    			return written, err
    		}
    
    		curpos += int64(nw)
    
    		// Some versions of Windows (Windows 10 1803) do not set
    		// file position after TransmitFile completes.
    		// So just use Seek to set file position.
    		if _, err = syscall.Seek(o.handle, curpos, io.SeekStart); err != nil {
    			return written, err
    		}
    
    		n -= int64(nw)
    		written += int64(nw)
    	}
    
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/types/AbstractAnalysisApiSubstitutorsTest.kt

                    appendLine("${KaType::class.simpleName}: ${type.render(position = Variance.INVARIANT)}")
                    appendLine("substitutor.substitute: ${substituted.render(position = Variance.INVARIANT)}")
                    appendLine("substitutor.substituteOrNull: ${substitutedOrNull?.render(position = Variance.INVARIANT)}")
                }
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/AnsiContext.java

        /**
         * @return the current context with the characters moving forward from the write position erased.
         */
        AnsiContext eraseForward();
    
        /**
         * @return the current context with the entire line erased.
         */
        AnsiContext eraseAll();
    
        /**
         * @return the current context moved to the specified position.
         */
        AnsiContext cursorAt(Cursor cursor);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/kotlin/styles/gradle.css

     * limitations under the License.
     */
    
    /* Adjust top left logo */
    
    .library-name a {
        position: relative;
        margin-left: 65px;
    }
    
    .library-name a::before {
        content: '';
        background: url("../images/gradle-logo.svg") center no-repeat;
        background-size: contain;
        position: absolute;
        width: 65px;
        height: 65px;
        top: -27px;
        left: -72px;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top