Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 862 for Display (0.12 sec)

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

            settings                     | buildName | dependencyName | display
            ""                           | "buildB"  | "buildB"       | "default root project name"
            "rootProject.name='someLib'" | "buildB"  | "someLib"      | "configured root project name"
        }
    
        @ToBeFixedForConfigurationCache
        def "includes build identifier in task failure error message with #display"() {
            repo.file("settings.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/FunctionalSourceSetIntegrationTest.groovy

                            println "display-name: " + sources.displayName
                            println "to-string: " + sources.toString()
                        }
                    }
                }
            }
            apply plugin: Rules
            """
    
            expect:
            succeeds "printTask"
            output.contains("name: fss")
            output.contains("display-name: FunctionalSourceSet 'fss'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top