Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 862 for Display (0.24 sec)

  1. .teamcity/src/main/kotlin/promotion/PublishBranchSnapshotFromQuickFeedback.kt

                    label = "Branch to promote",
                    description = "Type in the branch of gradle/gradle you want to promote. Leave the default value when promoting an existing build.",
                    display = ParameterDisplay.PROMPT,
                    allowEmpty = false
                )
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. src/main/webapp/js/search.js

              if (data.result === "created") {
                $favorited = $favorite.siblings(".favorited");
                $favoritedCount = $(".favorited-count", $favorited);
                $favoritedCount.css("display", "none");
                $favorite.fadeOut(1000, function() {
                  $favorited.fadeIn(1000);
                });
              }
            })
            .fail(function(data) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 7.5K bytes
    - Viewed (1)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/Architecture.java

     *     </tr>
     * </table>
     */
    @HasInternalProtocol
    public interface Architecture extends Named {
        @Override
        @Input
        String getName();
    
        /**
         * Returns a human-consumable display name for this architecture.
         */
        @Internal
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/TransformLoggingIntegrationTest.groovy

            where:
            type << TESTED_CONSOLE_TYPES
        }
    
        def "progress display name is 'Transforming' for top level transforms"() {
            // Build scan plugin filters artifact transform logging by the name of the progress display name
            // since that is the only way it currently can distinguish transforms.
            // When it has a better way, then this test can be removed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentBinarySourcesIntegrationTest.groovy

                            doLast {
                                println "sources display name: ${sources.displayName}"
                            }
                        }
                    }
                }
            '''
    
            when:
            succeeds "printSourceDisplayName"
    
            then:
            output.contains "sources display name: Custom source 'mylib:main:someLang'"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/TransformedComponentFileArtifactIdentifierTest.groovy

    import spock.lang.Specification
    
    /**
     * Tests {@link TransformedComponentFileArtifactIdentifier}
     */
    class TransformedComponentFileArtifactIdentifierTest extends Specification {
        def "has useful display name"() {
            def componentId = newComponentId("foo")
            def id = new TransformedComponentFileArtifactIdentifier(componentId, "current", "original")
    
            expect:
            id.getOriginalFileName() == "original"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 2.3K 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