Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 773 for checkMod (0.33 sec)

  1. src/cmd/go/internal/modfetch/fetch.go

    			if foundSum != "" && foundSum != h { // conflicting sums exist
    				return "", false
    			}
    			foundSum = h
    		}
    	}
    	return foundSum, true
    }
    
    // checkMod checks the given module's checksum and Go version.
    func checkMod(ctx context.Context, mod module.Version) {
    	// Do the file I/O before acquiring the go.sum lock.
    	ziphash, err := CachePath(ctx, mod, "ziphash")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/cache.go

    		return dir, err
    	}
    
    	// Check if a .ziphash file exists. It should be created before the
    	// zip is extracted, but if it was deleted (by another program?), we need
    	// to re-calculate it. Note that checkMod will repopulate the ziphash
    	// file if it doesn't exist, but if the module is excluded by checks
    	// through GONOSUMDB or GOPRIVATE, that check and repopulation won't happen.
    	ziphashPath, err := CachePath(ctx, m, "ziphash")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceReport.js

            var checked = $(this).prop('checked');
    
            $("#filter-popover .form-check-input[value*='" + currentSelectedTag + "']").toArray().forEach(checkbox => checked ? checkbox.setAttribute('checked', 'true') : checkbox.removeAttribute('checked'));
    
            var selectedTags = $('.popover-body .form-check-input').toArray().filter(checkbox => checkbox.checked).map(checkbox => checkbox.value);
    
            refreshCards(selectedTags)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/report.js

                        div.append($("<label>", {for: id}).text(title));
                        var checkbox = $("<input>", {type: "checkbox", id: id, checked: true});
                        div.append(checkbox);
                        checkbox.change(function () {
                            if (checkbox.is(':checked')) {
                                $("." + id).show();
                            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. pkg/ctrlz/topics/assets/templates/scopes.html

                }
            }
    
            function onerror(e) {
                console.error(e);
            }
        }
    
        function toggleLogCallers(checkbox) {
            let scope = checkbox.parentElement.parentElement.id;
            let logCallers = checkbox.checked;
    
            let url = window.location.protocol + "//" + window.location.host + "/scopej/" + scope;
            let ajax = new XMLHttpRequest();
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/tree.css

    .jstree-default .jstree-no-icons .jstree-checkbox { display:inline-block; }
    .jstree-default .jstree-no-checkboxes .jstree-checkbox { display:none !important; }
    .jstree-default .jstree-checked > a > .jstree-checkbox { background-position:-38px -19px; }
    .jstree-default .jstree-unchecked > a > .jstree-checkbox { background-position:-2px -19px; }
    .jstree-default .jstree-undetermined > a > .jstree-checkbox { background-position:-20px -19px; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 18 00:02:29 UTC 2014
    - 5.4K bytes
    - Viewed (0)
  7. src/text/scanner/scanner_test.go

    	checkTok(t, s, 0, s.Next(), ' ', "")
    	checkTok(t, s, 0, s.Next(), 'b', "")
    	checkTok(t, s, 1, s.Scan(), Ident, "cd")
    	checkTok(t, s, 1, s.Scan(), '{', "{")
    	checkTok(t, s, 2, s.Scan(), Ident, "a")
    	checkTok(t, s, 2, s.Scan(), '+', "+")
    	checkTok(t, s, 0, s.Next(), '=', "")
    	checkTok(t, s, 2, s.Scan(), Ident, "c")
    	checkTok(t, s, 3, s.Scan(), '}', "}")
    	checkTok(t, s, 3, s.Scan(), BOM, BOMs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/resources/org/gradle/reporting/report.js

            }
        }
    
        function toggleLineWrapping() {
            var checkBox = getCheckBox();
    
            if (checkBox.checked) {
                forAllCodeBlocks(addClass);
            } else {
                forAllCodeBlocks(removeClass);
            }
        }
    
        function initControls() {
            if (findCodeBlocks().length > 0) {
                var checkBox = getCheckBox();
                var label = getLabelForCheckBox();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 24 16:08:08 UTC 2014
    - 5.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    	// produced in build.(*Context).Import; modload.AmbiguousImportError,
    	// and modload.PackageNotInModuleError; and the malformed module path errors
    	// produced in golang.org/x/mod/module.CheckMod) implement an interface
    	// to make it easier to check for them? That would save us from having to
    	// move the modload errors into this package to avoid a package import cycle,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. src/internal/trace/traceviewer/mmu.go

            </p>
            <p>
              <b>Include</b><br>
              <input type="checkbox" id="stw" checked><label for="stw">STW</label>
              <span class="help">?<span>Stop-the-world stops all goroutines simultaneously.</span></span><br>
              <input type="checkbox" id="background" checked><label for="background">Background workers</label>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
Back to top