Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 502 for Display (0.37 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyBuildOperationIntegrationTest.groovy

        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        @ToBeFixedForConfigurationCache
        def "generates configure, task graph and run tasks operations for source dependency build with #display"() {
            given:
            repo.file("settings.gradle") << """
                ${settings}
            """
            repo.file("build.gradle") << """
                apply plugin: 'java'
                group = 'org.test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/format/DurationFormatter.java

    public interface DurationFormatter {
        /**
         * Given a duration in milliseconds, return a textual representation.
         *
         * @param durationMillis milliseconds duration
         * @return String for display
         */
        String format(long durationMillis);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 922 bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/plan9/syscall.go

    //go:build plan9
    
    // Package plan9 contains an interface to the low-level operating system
    // primitives. OS details vary depending on the underlying system, and
    // by default, godoc will display the OS-specific documentation for the current
    // system. If you want godoc to display 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: Thu Oct 19 23:33:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. pkg/monitoring/monitortest/test.go

    			for _, kv := range row.Label {
    				k, v := *kv.Name, *kv.Value
    				kvs = append(kvs, k+"="+v)
    			}
    			tags := strings.Join(kvs, ",")
    			m.t.Logf(" %v{%v} %v", *metric.Name, tags, display(row))
    		}
    	}
    }
    
    func display(row *dto.Metric) string {
    	if row.Counter != nil {
    		return fmt.Sprint(*row.Counter.Value)
    	} else if row.Gauge != nil {
    		return fmt.Sprint(*row.Gauge.Value)
    	} else if row.Histogram != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelElement.java

         * Some element have their name generated or automatically assigned, and for these elements the name may not be human consumable.
         */
        @Override
        String getName();
    
        /**
         * Returns a human-consumable display name for this element.
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top