Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 69 for cmdtest (0.12 sec)

  1. android/guava-tests/test/com/google/common/io/ByteSourceTester.java

        TestSuite suite = new TestSuite(name);
        for (Entry<String, String> entry : TEST_STRINGS.entrySet()) {
          if (testAsCharSource) {
            suite.addTest(suiteForString(factory, entry.getValue(), name, entry.getKey()));
          } else {
            suite.addTest(
                suiteForBytes(
                    factory, entry.getValue().getBytes(Charsets.UTF_8), name, entry.getKey(), true));
          }
        }
        return suite;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/pmd_plugin.adoc

    [[sec:pmd_tasks]]
    == Tasks
    
    The PMD plugin adds the following tasks to the project:
    
    `pmdMain` — link:{groovyDslPath}/org.gradle.api.plugins.quality.Pmd.html[Pmd]::
    +
    Runs PMD against the production Java source files.
    
    `pmdTest` — link:{groovyDslPath}/org.gradle.api.plugins.quality.Pmd.html[Pmd]::
    +
    Runs PMD against the test Java source files.
    
    The PMD plugin adds the following dependencies to tasks defined by the Java plugin.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

                    final List<String> cmdList = new ArrayList<>();
                    for (final String value : commandList) {
                        cmdList.add(expandPath(value.replace("${url}", tempPath).replace("${outputFile}", outputPath)));
                    }
    
                    executeCommand(thumbnailId, cmdList);
    
                    if (outputFile.isFile() && outputFile.length() == 0) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/AllTestResults.java

        public Collection<PackageTestResults> getPackages() {
            return packages.values();
        }
    
        public TestResult addTest(long classId, String className, String testName, long duration) {
            return addTest(classId, className, className, testName, testName, duration);
        }
    
        public TestResult addTest(long classId, String className, String classDisplayName, String testName, String testDisplayName, long duration) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/PackageTestResults.java

        public Collection<ClassTestResults> getClasses() {
            return classes.values();
        }
    
        public TestResult addTest(long classId, String className, String testName, long duration) {
            return addTest(classId, className, className, testName, testName, duration);
        }
    
        public TestResult addTest(long classId, String className, String classDisplayName, String testName, String testDisplayName, long duration) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/AllTestResultsTest.groovy

    import spock.lang.Specification
    
    class AllTestResultsTest extends Specification {
        final AllTestResults results = new AllTestResults()
    
        def addsTest() {
            when:
            def test = results.addTest(1, 'org.gradle.Test', 'test', 90)
    
            then:
            test.name == 'test'
            test.classResults.name == 'org.gradle.Test'
            test.classResults.packageResults.name == 'org.gradle'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/ClassTestResults.java

        }
    
        public Collection<TestResult> getTestResults() {
            return results;
        }
    
        public TestResult addTest(String testName, String testDisplayName, long duration) {
            TestResult test = new TestResult(testName, testDisplayName, duration, this);
            results.add(test);
            return addTest(test);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/linux_ppc64le_test.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ppc64le && linux && cgo
    
    package cgotest
    
    import "testing"
    
    func TestPPC64CallStubs(t *testing.T) {
    	testPPC64CallStubs(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:06:17 UTC 2023
    - 296 bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/seh_windows_test.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build cgo && windows && !internal
    
    package cgotest
    
    import "testing"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 06:52:00 UTC 2024
    - 307 bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/CompactHashSetTest.java

                CollectionFeature.SUPPORTS_ADD,
                CollectionFeature.SUPPORTS_REMOVE);
    
        TestSuite suite = new TestSuite();
        suite.addTestSuite(CompactHashSetTest.class);
        suite.addTest(
            SetTestSuiteBuilder.using(
                    new TestStringSetGenerator() {
                      @Override
                      protected Set<String> create(String[] elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top