Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 595 for checkMod (0.15 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. 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)
  6. 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)
  7. istioctl/pkg/authz/authz.go

    	"istio.io/istio/istioctl/pkg/util"
    	"istio.io/istio/istioctl/pkg/util/configdump"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/log"
    )
    
    var configDumpFile string
    
    func checkCmd(ctx cli.Context) *cobra.Command {
    	cmd := &cobra.Command{
    		Use:   "check [<type>/]<name>[.<namespace>]",
    		Short: "Check AuthorizationPolicy applied in the pod.",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/list.go

    	buf.WriteString("<input ")
    	if x.Checked {
    		buf.WriteString(`checked="" `)
    	}
    	buf.WriteString(`disabled="" type="checkbox">`)
    }
    
    func (x *Task) printMarkdown(buf *bytes.Buffer) {
    	x.PrintText(buf)
    }
    
    func (x *Task) PrintText(buf *bytes.Buffer) {
    	buf.WriteByte('[')
    	if x.Checked {
    		buf.WriteByte('x')
    	} else {
    		buf.WriteByte(' ')
    	}
    	buf.WriteByte(']')
    	buf.WriteByte(' ')
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. src/go/token/position_test.go

    		}
    	}
    
    	apos3 := a.Pos(3)
    	bpos3 := b.Pos(3)
    	checkPos(apos3, "fileA:1:4")
    	checkPos(bpos3, "fileB:1:4")
    	checkNumFiles(2)
    
    	// After removal, queries on fileA fail.
    	fset.RemoveFile(a)
    	checkPos(apos3, "-")
    	checkPos(bpos3, "fileB:1:4")
    	checkNumFiles(1)
    
    	// idempotent / no effect
    	fset.RemoveFile(a)
    	checkPos(apos3, "-")
    	checkPos(bpos3, "fileB:1:4")
    	checkNumFiles(1)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/TestPrecondition.java

         * @throws Exception if the precondition cannot be checked
         */
        boolean isSatisfied() throws Exception;
    
        /**
         * Utility method to check if a precondition class is satisfied.
         *
         * @param preconditionClass the class of the precondition to be checked
         * @return true if the precondition is satisfied
         * @throws Exception if the precondition cannot be checked
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top