Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for checkFoo (0.11 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/CustomPluginObjectFactoryIntegrationTest.groovy

                }
    
                tasks.register('checkFoo') {
                    def nested = project.extensions.custom.nested
                    doLast {
                        assert nested.name == 'foo'
                        nested.checkRiker {
                            assert name == 'Riker'
                        }
                    }
                }
    
    """
    
            when:
            run "checkFoo"
    
            then:
            noExceptionThrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 13 21:29:11 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  2. 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)
  3. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceReport.js

            $("#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)
        })
    }
    
    function failedScenarioButtonClicked() {
    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. 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)
  5. 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)
  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. 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)
  8. src/cmd/compile/internal/types2/mono_test.go

    }
    
    func TestMonoGood(t *testing.T) {
    	for i, good := range goods {
    		if err := checkMono(t, good); err != nil {
    			t.Errorf("%d: unexpected failure: %v", i, err)
    		}
    	}
    }
    
    func TestMonoBad(t *testing.T) {
    	for i, bad := range bads {
    		if err := checkMono(t, bad); err == nil {
    			t.Errorf("%d: unexpected success", i)
    		} else {
    			t.Log(err)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. 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)
  10. pkg/api/service/util_test.go

    		}
    		return cidrs
    	}
    	cidrs := checkOK("192.168.0.1/32")
    	if len(cidrs) != 1 {
    		t.Errorf("Expected exactly one CIDR: %v", cidrs.StringSlice())
    	}
    	cidrs = checkOK("192.168.0.1/32,192.168.0.1/32")
    	if len(cidrs) != 1 {
    		t.Errorf("Expected exactly one CIDR (after de-dup): %v", cidrs.StringSlice())
    	}
    	cidrs = checkOK("192.168.0.1/32,192.168.0.2/32")
    	if len(cidrs) != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 15:18:45 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top