Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 290 for Display (0.12 sec)

  1. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.css

        background-position: 17px 80%;
        background-repeat: no-repeat;
        background-size: 11px 11px;
        padding-left: 2.3em;
    }
    
    .multi-language-selector {
        display: block;
    }
    
    .multi-language-selector .language-option[data-lang='groovy'] {
        background-position: 20px center;
        padding-left: 32px;
    }
    
    .multi-language-selector .language-option[data-lang='kotlin'] {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:27:34 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/TestDescriptorInternal.java

        @Nullable
        @Override
        TestDescriptorInternal getParent();
    
        Object getId();
    
        /**
         * The class name for display. It may be the same as or different from {@link #getClassName()}
         * @return the class name for display.
         */
        @Nullable
        String getClassDisplayName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/javadoc.css

    div.checkboxes > label > input {
        margin: 0 2px;
    }
    .two-column-summary {
        display: grid;
        grid-template-columns: minmax(25%, max-content) minmax(25%, auto);
    }
    .three-column-summary {
        display: grid;
        grid-template-columns: minmax(15%, max-content) minmax(20%, max-content) minmax(20%, auto);
    }
    .three-column-release-summary {
        display: grid;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestDescriptor.java

         *
         * @return The test name
         */
        String getName();
    
        /**
         * Returns the display name of the test. It may be the same as or different from {@link #getName()}
         *
         * @return the name for display.
         * @since 6.1
         */
        String getDisplayName();
    
        /**
         * Returns the test class name for this test, if any.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/CollectionPropertyIntegrationTest.groovy

            then:
            outputContains("prop = $display")
    
            where:
            type            | value                                                                | display
            "String"        | '["a", "b", "c"]'                                                    | '[a, b, c]'
            "Param<String>" | '[new Param<String>(display: "a"), new Param<String>(display: "b")]' | '[a, b]'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:57:00 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/report/stacks.go

    	FileName   string
    	UniqueName string // Disambiguates functions with same names
    	Inlined    bool   // If true this source was inlined into its caller
    
    	// Alternative names to display (with decreasing lengths) to make text fit.
    	// Guaranteed to be non-empty.
    	Display []string
    
    	// Places holds the list of stack slots where this source occurs.
    	// In particular, if [a,b] is an element in Places,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top