Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 431 for Display (0.21 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

                                operationDisplayName "a class display name"
                                testDisplayName "a class display name"
                                test("test()") {
                                    operationDisplayName "and a test display name"
                                    testDisplayName "and a test display name"
                                }
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        return true;
      }
    
      // Display action menu (triggered by right-click on a frame)
      function showActionMenu(e, box) {
        if (box.src == 0) return; // No action menu for root
        e.preventDefault(); // Disable browser context menu
        const src = stacks.Sources[box.src];
        actionTitle.innerText = src.Display[src.Display.length-1];
        const menu = actions;
        menu.style.display = 'block';
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildIdentityIntegrationTest.groovy

            where:
            settings                     | buildName | dependencyName | display
            ""                           | "buildB"  | "buildB"       | "default root project name"
            "rootProject.name='someLib'" | "buildB"  | "someLib"      | "configured root project name"
        }
    
        def "includes build identifier in dependency report with #display"() {
            dependency "org.test:${dependencyName}:1.0"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 11.7K 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/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)
  6. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.css

        background-position: 17px 80%;
        background-repeat: no-repeat;
        background-size: 11px 11px;
        padding-left: 2.3em;
    }
    
    .multi-language-selector {
        display: block;
    }
    
    .multi-language-selector .language-option[data-lang='groovy'] {
        background-position: 20px center;
        padding-left: 32px;
    }
    
    .multi-language-selector .language-option[data-lang='kotlin'] {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:27:34 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/CollectionPropertyIntegrationTest.groovy

            then:
            outputContains("prop = $display")
    
            where:
            type            | value                                                                | display
            "String"        | '["a", "b", "c"]'                                                    | '[a, b, c]'
            "Param<String>" | '[new Param<String>(display: "a"), new Param<String>(display: "b")]' | '[a, b]'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:57:00 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/html.go

        if (e.style.display == 'block') {
            e.style.display = 'none';
        } else {
            e.style.display = 'block';
        }
    }
    
    function hideBlock(el) {
        var es = el.parentNode.parentNode.getElementsByClassName("ssa-value-list");
        if (es.length===0)
            return;
        var e = es[0];
        if (e.style.display === 'block' || e.style.display === '') {
            e.style.display = 'none';
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

      let currentDeleteTarget = null;
    
      function showDialog(dialog) {
        if (currentDialog != null) {
          overlay.style.display = 'none';
          currentDialog.style.display = 'none';
        }
        currentDialog = dialog;
        if (dialog != null) {
          overlay.style.display = 'block';
          dialog.style.display = 'block';
        }
      }
    
      function cancelDialog(e) {
        showDialog(null);
      }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    	flagInUseObjects := flag.Bool("inuse_objects", false, "Display in-use object counts")
    	flagAllocSpace := flag.Bool("alloc_space", false, "Display allocated memory size")
    	flagAllocObjects := flag.Bool("alloc_objects", false, "Display allocated object counts")
    	// Contention profile options
    	flagTotalDelay := flag.Bool("total_delay", false, "Display total delay at each region")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top