Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 587 for Display (0.11 sec)

  1. src/os/user/user.go

    	// On Plan 9, this is the contents of /dev/user.
    	Gid string
    	// Username is the login name.
    	Username string
    	// Name is the user's real or display name.
    	// It might be blank.
    	// On POSIX systems, this is the first (or only) entry in the GECOS field
    	// list.
    	// On Windows, this is the user's display name.
    	// On Plan 9, this is the contents of /dev/user.
    	Name string
    	// HomeDir is the path to the user's home directory (if they have one).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CacheBuilder.java

         *
         * @param properties additional properties for the cache.
         * @return this
         */
        CacheBuilder withProperties(Map<String, ?> properties);
    
        /**
         * Specifies the display name for this cache. This display name is used in logging and error messages.
         */
        CacheBuilder withDisplayName(String displayName);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependencyLockingProvider.java

     */
    public interface DependencyLockingProvider {
    
        /**
         * Loads the lock state for the lock with the given ID.
         *
         * @param lockId the ID of the lock to load
         * @param lockOwner the display name of the owner of the lock
         *
         * @return the lock state corresponding to the lock with the given ID.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleVsMavenPerformanceTestRunner.groovy

                throw new IllegalArgumentException("Maven invocation display name must start with 'Maven '")
            }
        }
    
        @Override
        protected void finalizeGradleSpec(GradleBuildExperimentSpec.GradleBuilder builder) {
            super.finalizeGradleSpec(builder)
            if (!builder.displayName.startsWith("Gradle ")) {
                throw new IllegalArgumentException("Gradle invocation display name must start with 'Gradle '")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/ConnectionMetaDataVersion1.java

    package org.gradle.tooling.internal.protocol;
    
    public interface ConnectionMetaDataVersion1 {
        /**
         * Returns the Gradle version for the connection.
         */
        String getVersion();
    
        /**
         * Returns a display name for the connection, which can be used in logging and error reporting.
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 952 bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcBuildOperationsIntegrationTest.groovy

        @Requires(value = IntegTestPreconditions.NotConfigCached, reason = "Also covered by tests in configuration cache project")
        def "generates configure, task graph and run tasks operations for buildSrc of included builds with #display"() {
            given:
            dependency 'org.test:buildB:1.0'
            buildB.file("buildSrc/settings.gradle") << """
                ${settings}
            """
    
            when:
            execute(buildA, ":jar", [])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/concurrent/src/test/groovy/org/gradle/internal/concurrent/DefaultExecutorFactoryTest.groovy

            instant.stopped > instant.completed1
            instant.stopped > instant.completed2
        }
    
        def cannotStopExecutorFromAnExecutorThread() {
            when:
            def executor = factory.create('<display-name>')
            def action = {
                executor.stop()
            }
            executor.execute(action)
            executor.stop()
    
            then:
            IllegalStateException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/Flavor.java

    import org.gradle.api.Named;
    
    /**
     * Defines a custom variant that differentiate a {@link NativeBinary}.
     */
    @Incubating
    public interface Flavor extends Named {
        /**
         * Returns a human-consumable display name for this flavor.
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 959 bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/ExecuteWorkItemBuildOperationType.java

        interface Details {
            /**
             * Returns the fully-qualified class name of work item's action.
             */
            String getClassName();
    
            /**
             * Returns the display name of the work item.
             */
            String getDisplayName();
        }
    
        interface Result {
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. 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)
Back to top