Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 746 for checkedBy (0.13 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/custom-check/groovy/build.gradle

        }
    }
    
    model {
        components {
            hello(NativeLibrarySpec) {
                binaries.all {
                    // Register our custom check task to all binaries of this component
                    checkedBy $.tasks.myCustomCheck
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 556 bytes
    - Viewed (0)
  2. platforms/software/test-suites-base/src/main/java/org/gradle/testing/base/plugins/TestingModelBasePlugin.java

                                testSuiteBinary.checkedBy(((TestSuiteTaskCollection) testSuiteBinary.getTasks()).getRun());
                            }
                            BinarySpec testedBinary = testSuiteBinary.getTestedBinary();
                            if (testedBinary != null && testedBinary.isBuildable()) {
                                testedBinary.checkedBy(testSuiteBinary.getCheckTask());
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 16:02:04 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/api/CheckableComponentSpec.java

        /**
         * Adds tasks required to check this component. Tasks added this way are subsequently
         * added as dependencies of this component's {@link #getCheckTask() check task}.
         */
        void checkedBy(Object... tasks);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/api/internal/AbstractBuildableComponentSpec.java

            this.checkTask = checkTask;
            if (checkTask != null) {
                checkTask.dependsOn(checkTaskDependencies);
            }
        }
    
        @Override
        public void checkedBy(Object... tasks) {
            checkTaskDependencies.add(tasks);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/GoogleTestIntegrationTest.groovy

            buildFile << '''
                task customHelloCheck()
                model {
                    components {
                        hello {
                            binaries.all {
                                checkedBy($.tasks.customHelloCheck)
                            }
                        }
                    }
                }
            '''.stripIndent()
    
            when:
            succeeds 'check'
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitIntegrationTest.groovy

            buildFile << '''
                task customHelloCheck()
                model {
                    components {
                        hello {
                            binaries.all {
                                checkedBy($.tasks.customHelloCheck)
                            }
                        }
                    }
                }
            '''.stripIndent()
    
            when:
            succeeds 'check'
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceReport.js

            var currentSelectedTag = $(this).val();
            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);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. src/runtime/proc_runtime_test.go

    		}
    		for co := 0; co < len(ord.coprimes); co++ {
    			enum := ord.start(uint32(co))
    			checked := make([]bool, procs)
    			for p := 0; p < procs; p++ {
    				x := enum.position()
    				if checked[x] {
    					println("procs:", procs, "inc:", enum.inc)
    					panic("duplicate during enumeration")
    				}
    				checked[x] = true
    				enum.next()
    			}
    			if !enum.done() {
    				panic("not done")
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 18:43:08 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. 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)
  10. src/runtime/align_test.go

    		t.Fatalf("typechecking runtime failed: %v", err)
    	}
    
    	// Analyze all atomic.*64 callsites.
    	v := Visitor{t: t, fset: fset, types: info.Types, checked: checked}
    	ast.Walk(&v, pkg)
    }
    
    type Visitor struct {
    	fset    *token.FileSet
    	types   map[ast.Expr]types.TypeAndValue
    	checked map[string]bool
    	t       *testing.T
    }
    
    func (v *Visitor) Visit(n ast.Node) ast.Visitor {
    	c, ok := n.(*ast.CallExpr)
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 14:52:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top