Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for _dialog (0.12 sec)

  1. samples/bookinfo/src/productpage/templates/productpage.html

    <script type="text/javascript">
      window.addEventListener("DOMContentLoaded", (event) => {
        const dialog = document.querySelector("dialog");
        const showButton = document.querySelector("#sign-in-button");
        const closeButton = document.querySelector("#close-dialog");
    
        if (showButton) {
          showButton.addEventListener("click", () => {
            dialog.showModal();
          });
        }
    
        if (closeButton) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

    This button will cause a Javascript alert dialog to appear asking you to type a reason for accepting the changes, e.g. "Added new API for Gradle 8.x".
    
    Clicking okay on the dialog will cause a copy of the `accepted-public-api-changes.json` containing your (properly sorted) addition to be downloaded.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. ReadMe.md

    After cloning the project, import the project in IntelliJ by choosing the project directory in the Open project dialog.
    
    For handy work with compiler tests it's recommended to use [
    Kotlin Compiler Test Helper](https://github.com/demiurg906/test-data-helper-plugin)
    
    ### Dependency verification
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/start.go

    	// from the local telemetry database to telemetry.go.dev.
    	//
    	// This option has no effect unless the user has given consent
    	// to enable data collection, for example by running
    	// cmd/gotelemetry or affirming the gopls dialog.
    	//
    	// (This feature is expected to be used only by gopls.
    	// Longer term, the go command may become the sole program
    	// responsible for uploading.)
    	Upload bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRenderer.java

        }
    
        private void registerModal(String id, String title, String... lines) {
            contents.append("<div id=\"").append(id).append("\" uk-modal>\n")
                .append("    <div class=\"uk-modal-dialog uk-modal-body\">\n")
                .append("        <h2 class=\"uk-modal-title\">")
                .append(title)
                .append("</h2>\n");
            for (String line : lines) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  6. src/net/conf.go

    	// systems did not support the go resolver.
    	// Keep it this way for better compatibility.
    	// Perhaps we can revisit this some day.
    	case "windows", "plan9":
    		return true
    
    	// Darwin pops up annoying dialog boxes if programs try to
    	// do their own DNS requests, so prefer cgo.
    	case "darwin", "ios":
    		return true
    
    	// DNS requests don't work on Android, so prefer the cgo resolver.
    	// Issue #10714.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

        private ProjectLayoutSetupRegistry projectLayoutRegistry;
    
        /**
         * Should default values automatically be accepted for options that are not configured explicitly?
         * <p>
         * When true, the interactive dialog is skipped, and no user input is required to complete the command.
         * <p>
         * This property can be set via the command-line options '--use-defaults' and '--no-use-defaults'.
         *
         * @since 8.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. tests/integration/README.md

    The tests authored in the new test framework can be debugged directly under GoLand using the debugger. If you want to
    pass command-line flags to the test while running under the debugger, you can use the
    [Run/Debug configurations dialog](https://i.stack.imgur.com/C6y0L.png) to specify these flags as program arguments.
    
    ## Reference
    
    ### Command-Line Flags
    
    The test framework supports the following command-line flags:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug_test.go

    		// Running gdb on OSX/darwin is very flaky.
    		// Sometimes it is called ggdb, depending on how it is installed.
    		// It also sometimes requires an admin password typed into a dialog box.
    		// Various architectures tend to differ slightly sometimes, and keeping them
    		// all in sync is a pain for people who don't have them all at hand,
    		// so limit testing to amd64 (for now)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	// Predefined types.
    	RT_CURSOR       ResourceID = 1
    	RT_BITMAP       ResourceID = 2
    	RT_ICON         ResourceID = 3
    	RT_MENU         ResourceID = 4
    	RT_DIALOG       ResourceID = 5
    	RT_STRING       ResourceID = 6
    	RT_FONTDIR      ResourceID = 7
    	RT_FONT         ResourceID = 8
    	RT_ACCELERATOR  ResourceID = 9
    	RT_RCDATA       ResourceID = 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
Back to top