Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 290 for Display (0.11 sec)

  1. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/modifiers/ComponentType.java

     * limitations under the License.
     */
    
    package org.gradle.buildinit.plugins.internal.modifiers;
    
    import java.util.Arrays;
    import java.util.List;
    
    public enum ComponentType {
        // These are in display order
        APPLICATION("Application", "app", "list", "utilities"),
        LIBRARY("Library", "lib"),
        GRADLE_PLUGIN("Gradle plugin", "plugin"),
        BASIC("Basic (build structure only)");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 18:02:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/net/mail/message_test.go

    			[]*Address{{
    				Name:    "Joe Q. Public",
    				Address: "******@****.***",
    			}},
    		},
    		// Comment in display name
    		{
    			`John (middle) Doe <******@****.***e>`,
    			[]*Address{{
    				Name:    "John Doe",
    				Address: "******@****.***e",
    			}},
    		},
    		// Display name is quoted string, so comment is not a comment
    		{
    			`"John (middle) Doe" <******@****.***e>`,
    			[]*Address{{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/InstanceGenerator.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    @ServiceScope(Scope.Global.class)
    public interface InstanceGenerator extends Instantiator {
        /**
         * Create a new instance of T with the given display name, using {@code parameters} as the construction parameters.
         *
         * @throws ObjectInstantiationException On failure to create the new instance.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/modifiers/Language.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.buildinit.plugins.internal.modifiers;
    
    public enum Language {
        // These are in display order
        JAVA("Java"),
        KOTLIN("kotlin", "Kotlin", "kt"),
        GROOVY("Groovy"),
        SCALA("Scala"),
        CPP("cpp", "C++", "cpp"),
        SWIFT("swift", "Swift", "swift");
    
        private final String displayName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 18:02:40 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/EmptyFileCollectionExecutionTimeValueTest.groovy

            then:
            newCollection.isEmpty()
            newCollection.displayName == "foo"
        }
    
        def "EmptyFileCollections with default display name produce the same execution time value"() {
            given:
            def collection1 = new EmptyFileCollection(FileCollectionInternal.DEFAULT_COLLECTION_DISPLAY_NAME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 14:55:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/configuration/WarningMode.java

    /**
     * Specifies the warning mode a user wants to see.
     *
     * @since 4.5
     */
    public enum WarningMode {
        /**
         * Show all warnings.
         */
        All(true),
    
        /**
         * Display a summary at the end of the build instead of rendering all warnings into the console output.
         */
        Summary(false),
    
        /**
         * No deprecation warnings at all.
         */
        None(false),
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/scripts/JavaAppStartScriptGenerationDetails.java

    import javax.annotation.Nullable;
    import java.util.List;
    
    /**
     * Details for generating Java-based application start scripts.
     */
    public interface JavaAppStartScriptGenerationDetails {
    
        /**
         * The display name of the application
         */
        String getApplicationName();
    
        /**
         * The environment variable to use to provide additional options to the JVM
         */
        String getOptsEnvironmentVar();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependencyFactoryInternal.java

            LOCAL_PROJECT_AS_OPAQUE_DEPENDENCY("Local project as an opaque dependency");
    
            public final String displayName;
    
            ClassPathNotation(String displayName) {
                assert displayName != null : "display name cannot be null";
                this.displayName = displayName;
            }
        }
    
        Dependency createDependency(Object dependencyNotation);
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 13:26:09 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/fix/main.go

    var allowed, force map[string]bool
    
    var (
    	doDiff    = flag.Bool("diff", false, "display diffs instead of rewriting files")
    	goVersion = flag.String("go", "", "go language version for files")
    )
    
    // enable for debugging fix failures
    const debug = false // display incorrectly reformatted source and exit
    
    func usage() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    		"Treat locations reached through different paths as separate."),
    
    	// Display options.
    	"relative_percentages": helpText(
    		"Show percentages relative to focused subgraph",
    		"If unset, percentages are relative to full graph before focusing",
    		"to facilitate comparison with original graph."),
    	"unit": helpText(
    		"Measurement units to display",
    		"Scale the sample values to this unit.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top