Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 862 for Display (0.14 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/problems/Location.java

            this.lineNumber = lineNumber;
        }
    
        /**
         * Returns a long display name for the source file containing this location. The long description should use absolute paths and assume no particular context.
         */
        public DisplayName getSourceLongDisplayName() {
            return sourceLongDisplayName;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:02:05 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/test/groovy/org/gradle/language/base/sources/BaseLanguageSourceSetTest.groovy

    import org.gradle.platform.base.internal.DefaultComponentSpecIdentifier
    import org.gradle.util.TestUtil
    import spock.lang.Specification
    
    class BaseLanguageSourceSetTest extends Specification {
        def "has useful display names"() {
            def identifier = new DefaultComponentSpecIdentifier("project", "parent").child("java5").child("test")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestHistory.java

            return convertToId(getDisplayName());
        }
    
        static String convertToId(String displayName) {
            return displayName.replaceAll("[^a-zA-Z0-9]", "-");
        }
    
        /**
         * A human consumable display name for this performance test.
         */
        default String getDisplayName() {
            return getExperiment().getDisplayName();
        }
    
        PerformanceExperiment getExperiment();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. maven-artifact/src/site/apt/index.apt

     The jar file is executable and provides a little tool to display how Maven parses and compares versions:
    
    +----+
    $ java -jar maven-artifact-*.jar 3.2.4-alpha-1 3.2.4-SNAPSHOT 3.2.4.0
    Display parameters as parsed by Maven (in canonical form) and comparison result:
    1. 3.2.4-alpha-1 == 3.2.4.alpha.1
       3.2.4-alpha-1 < 3.2.4-SNAPSHOT
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 30 20:57:07 UTC 2014
    - 1.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/html.go

        if (e.style.display == 'block') {
            e.style.display = 'none';
        } else {
            e.style.display = 'block';
        }
    }
    
    function hideBlock(el) {
        var es = el.parentNode.parentNode.getElementsByClassName("ssa-value-list");
        if (es.length===0)
            return;
        var e = es[0];
        if (e.style.display === 'block' || e.style.display === '') {
            e.style.display = 'none';
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

      let currentDeleteTarget = null;
    
      function showDialog(dialog) {
        if (currentDialog != null) {
          overlay.style.display = 'none';
          currentDialog.style.display = 'none';
        }
        currentDialog = dialog;
        if (dialog != null) {
          overlay.style.display = 'block';
          dialog.style.display = 'block';
        }
      }
    
      function cancelDialog(e) {
        showDialog(null);
      }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    	flagInUseObjects := flag.Bool("inuse_objects", false, "Display in-use object counts")
    	flagAllocSpace := flag.Bool("alloc_space", false, "Display allocated memory size")
    	flagAllocObjects := flag.Bool("alloc_objects", false, "Display allocated object counts")
    	// Contention profile options
    	flagTotalDelay := flag.Bool("total_delay", false, "Display total delay at each region")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/mmu.go

        <style>
          .help {
            display: inline-block;
            position: relative;
            width: 1em;
            height: 1em;
            border-radius: 50%;
            color: #fff;
            background: #555;
            text-align: center;
            cursor: help;
          }
          .help > span {
            display: none;
          }
          .help:hover > span {
            display: block;
            position: absolute;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_tidy_diff.txt

    # Missing go.mod and go.sum should fail and not display diff.
    ! exists go.mod
    ! exists go.sum
    ! go mod tidy -diff
    ! exists go.mod
    ! exists go.sum
    ! stdout 'diff current/go.mod tidy/go.mod'
    ! stdout 'diff current/go.sum tidy/go.sum'
    stderr 'go.mod file not found'
    
    # Missing go.mod and existing go.sum should fail and not display diff.
    cp go.sum.orig go.sum
    ! exists go.mod
    exists go.sum
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/exception/ExceptionSummary.java

     * <li>useful end-user message,</li>
     * <li>useful reference to a solution, or set of solutions: this is usually a wiki page url in
     * <a href="http://cwiki.apache.org/confluence/display/MAVEN/">http://cwiki.apache.org/confluence/display/MAVEN/</a>,
     * </li>
     * <li>child exception summaries.</li>
     * </ul>
     */
    public class ExceptionSummary {
    
        private Throwable exception;
    
        private String message;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.2K bytes
    - Viewed (0)
Back to top