Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 587 for Display (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/syscall/syscall.go

    // Package syscall contains an interface to the low-level operating system
    // primitives. The details vary depending on the underlying system, and
    // by default, godoc will display the syscall documentation for the current
    // system. If you want godoc to display syscall documentation for another
    // system, set $GOOS and $GOARCH to the desired system. For example, if
    // you want to view documentation for freebsd/arm on linux/amd64, set $GOOS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltLibraryTest.groovy

     */
    
    package org.gradle.nativeplatform.internal.prebuilt
    
    
    import org.gradle.util.TestUtil
    import spock.lang.Specification
    
    class DefaultPrebuiltLibraryTest extends Specification {
        def "has useful display name"() {
            def lib = new DefaultPrebuiltLibrary("someLib", TestUtil.objectFactory(), TestUtil.domainObjectCollectionFactory())
    
            expect:
            lib.toString() == "prebuilt library 'someLib'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/DisplayName.java

     * limitations under the License.
     */
    
    package org.gradle.internal;
    
    import org.gradle.api.Describable;
    
    public interface DisplayName extends Describable {
        /**
         * Returns a display name that can be used at the start of a sentence.
         */
        String getCapitalizedDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 867 bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/PluginIdentifier.java

    /**
     * Identifies a Gradle plugin.
     *
     * @since 5.1
     * @see BinaryPluginIdentifier
     * @see ScriptPluginIdentifier
     */
    public interface PluginIdentifier {
    
        /**
         * Returns a human-readable display name for this plugin.
         */
        String getDisplayName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 918 bytes
    - Viewed (0)
Back to top