Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 588 for Display (0.2 sec)

  1. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/multiModuleWithNestedParent/some-thing/webinar-war/src/main/webapp/WEB-INF/web.xml

    <!DOCTYPE web-app PUBLIC
     "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
     "http://java.sun.com/dtd/web-app_2_3.dtd" >
    
    <web-app>
      <display-name>Webinar war</display-name>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 193 bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/report/source_html.go

      if (target) {
        var asm = target.nextSibling;
        if (asm && asm.className == "asm") {
          asm.style.display = (asm.style.display == "block" ? "" : "block");
          e.preventDefault();
          return false;
        }
      }
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/operations/BuildOperationProgressEventListenerAdapter.java

            // progress display name on the console, whereas we want to display both the progress display name and the status
            // This should be pushed down into the progress logger infrastructure so that an operation can have both a display name (that doesn't change) and
            // a status (that does)
            if (statusProgressLogger == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:53:27 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. pkg/ctrlz/assets/static/css/all.css

    body.theme-light i.light {
        visibility: visible
    }
    
    #navbar-links {
        position: static
    }
    
    #search_form {
        position: static;
        display: flex
    }
    
    #search_close {
        display: none
    }
    
    #search_show {
        display: none
    }
    
    #search_textbox {
        margin: 4px 0 5px 0;
        width: 100%
    }
    
    @media (min-width: 768px) {
        #navbar-links {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/OperationDescriptor.java

         *
         * @return The name of the operation.
         */
        String getName();
    
        /**
         * Returns a human consumable display name for the operation. This display name provides enough context for a human to uniquely identify the operation.
         *
         * @return The display name of the operation.
         */
        String getDisplayName();
    
        /**
         * Returns the parent operation, if any.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/PluginDeclaration.java

        }
    
        /**
         * Returns the display name for this plugin declaration.
         *
         * <p>The display name is used when publishing this plugin to repositories
         * that support human-readable artifact names.
         *
         * @since 4.10
         */
        public String getDisplayName() {
            return displayName;
        }
    
        /**
         * Sets the display name for this plugin declaration.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIdentityIntegrationTest.groovy

            settings                     | buildName | dependencyName | display
            ""                           | "buildC"  | "buildC"       | "default root project name"
            "rootProject.name='someLib'" | "buildC"  | "someLib"      | "configured root project name"
        }
    
        @ToBeFixedForConfigurationCache
        def "includes build identifier in task failure error message with #display"() {
            repoC.file("settings.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. docs/sts/wso2.md

    - Initiate an id_token request to the WSO2 Identity Server, over a known [grant type](https://docs.wso2.com/display/IS540/OAuth+2.0+Grant+Types). For example, the following cURL command illustrates the syntax of an id_token request that can be initiated over the [Client Credentials Grant](https://docs.wso2.com/display/IS540/Client+Credentials+Grant) grant type.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/transform/TransformOperationDescriptor.java

            /**
             * Returns the display name of this transformer.
             */
            String getDisplayName();
    
        }
    
        /**
         * Describes the subject (artifact or file) of a transform operation.
         *
         * @since 5.1
         */
        interface SubjectDescriptor {
    
            /**
             * Returns the display name of this subject.
             */
            String getDisplayName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            when:
            property.attachOwner(owner(), displayName("<display-name>"))
            property.get()
    
            then:
            def t2 = thrown(MissingValueException)
            t2.message == "Cannot query the value of <display-name> because it has no value available."
    
            when:
            property.set(someValue())
            property.get()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
Back to top