Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for test78operation (0.27 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaseCrossBuildResultsStore.java

            });
        }
    
        private void batchInsertOperation(Connection connection, R results, long executionId) throws SQLException {
            try (PreparedStatement statement = connection.prepareStatement("insert into testOperation(testExecution, displayName, tasks, args, gradleOpts, daemon, totalTime, cleanTasks) values (?, ?, ?, ?, ?, ?, ?, ?)")) {
                for (BuildDisplayInfo displayInfo : results.getBuilds()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

        private void batchInsertOperation(Connection connection, CrossVersionPerformanceResults results, long testId) throws SQLException {
            try (PreparedStatement statement = connection.prepareStatement(insertStatement("testOperation", "testExecution", "version", "totalTime"))) {
                addOperations(statement, testId, null, results.getCurrent());
                for (BaselineVersion baselineVersion : results.getBaselineVersions()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/rules/rules_test.go

    			}
    		}
    		for _, m := range tt.noMatch {
    			r := Matcher{tt.rule, m}
    			if r.version() {
    				t.Errorf("%v: expected no match %#v", name, m)
    			}
    		}
    	}
    }
    
    func TestOperation(t *testing.T) {
    	table := tests{
    		"wildcard": {
    			rule: adreg.RuleWithOperations{Operations: []adreg.OperationType{adreg.OperationAll}},
    			match: attrList(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 25 23:28:16 UTC 2022
    - 13.8K bytes
    - Viewed (0)
Back to top