Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 862 for Display (0.1 sec)

  1. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/modifiers/NamesTest.groovy

    package org.gradle.buildinit.plugins.internal.modifiers
    
    import spock.lang.Specification
    
    
    class NamesTest extends Specification {
        enum Test {
            ONE,
            THING_TWO
        }
    
        def "calculates display name"() {
            expect:
            Names.displayNameFor(Test.ONE) == "one"
            Names.displayNameFor(Test.THING_TWO) == "thing two"
        }
    
        def "calculates id"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/ComponentSelector.java

    /**
     * Represents a component selector. Used for displaying unresolved dependency warnings in the IDE.
     *
     * @since 6.7
     */
    public interface ComponentSelector {
    
        /**
         * Returns a human-readable display name for this selector.
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 925 bytes
    - Viewed (0)
  3. istioctl/pkg/tag/revision.go

    }
    
    // NsInfo represents namespace related information like pods running there.
    // It is used to display data and is exposed for integration tests.
    type NsInfo struct {
    	Name string             `json:"name,omitempty"`
    	Pods []*PodFilteredInfo `json:"pods,omitempty"`
    }
    
    // RevisionDescription is used to display revision related information.
    // This is exposed for integration tests.
    type RevisionDescription struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 28 13:16:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedConfigurationApiIntegrationTest.groovy

    }
    
    task show {
        inputs.files configurations.compile
        doLast {
            println "files: " + configurations.compile.resolvedConfiguration.resolvedArtifacts.collect { it.file.name }
            println "display-names: " + configurations.compile.resolvedConfiguration.resolvedArtifacts.collect { it.toString() }
            println "ids: " + configurations.compile.resolvedConfiguration.resolvedArtifacts.collect { it.id.toString() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 18:17:47 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Ascii.java

       *
       * @since 8.0
       */
      public static final byte BS = 8;
    
      /**
       * Horizontal Tabulation ('\t'): A format effector which controls the movement of the printing
       * position to the next in a series of predetermined positions along the printing line.
       * (Applicable also to display devices and the skip function on punched cards.)
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/tests/checkTaskOutput.out

         \--- com.google.j2objc:j2objc-annotations:1.3
    
    (*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.
    
    A web-based, searchable dependency report is available by adding the --scan option.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 19:28:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalPluginIdentifier.java

    /**
     * DO NOT CHANGE THIS INTERFACE. It is part of the cross-version protocol.
     *
     * @since 5.1
     */
    public interface InternalPluginIdentifier extends InternalProtocolInterface {
    
        /**
         * Returns the display name of this plugin.
         */
        String getDisplayName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1018 bytes
    - Viewed (0)
  8. src/cmd/cover/html.go

    		{{range $i, $f := .Files}}
    		<pre class="file" id="file{{$i}}" style="display: none">{{$f.Body}}</pre>
    		{{end}}
    		</div>
    	</body>
    	<script>
    	(function() {
    		var files = document.getElementById('files');
    		var visible;
    		files.addEventListener('change', onChange, false);
    		function select(part) {
    			if (visible)
    				visible.style.display = 'none';
    			visible = document.getElementById(part);
    			if (!visible)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 14:33:36 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/ComponentArtifactIdentifier.java

        /**
         * Returns the id of the component that this artifact belongs to.
         */
        ComponentIdentifier getComponentIdentifier();
    
        /**
         * Returns some human-consumable display name for this artifact.
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 1K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/resources/CharSourceBackedTextResourceTest.groovy

    import spock.lang.Specification
    
    class CharSourceBackedTextResourceTest extends Specification {
    
        def "can use char source text resource"() {
            when:
            def r = new CharSourceBackedTextResource("display name", CharSource.wrap("foo"))
    
            then:
            r.asString() == "foo"
            r.asReader().text == "foo"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 17 02:08:55 UTC 2016
    - 1K bytes
    - Viewed (0)
Back to top