Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for cmdtest (0.12 sec)

  1. src/cmd/go/internal/test/testflag.go

    // our command line are for us, and some are for the test binary, and
    // some are for both.
    
    func init() {
    	work.AddBuildFlags(CmdTest, work.OmitVFlag)
    
    	cf := CmdTest.Flag
    	cf.BoolVar(&testC, "c", false, "")
    	cf.StringVar(&testO, "o", "", "")
    	work.AddCoverFlags(CmdTest, &testCoverProfile)
    	cf.Var((*base.StringsFlag)(&work.ExecCmd), "exec", "")
    	cf.BoolVar(&testJSON, "json", false, "")
    	cf.Var(&testVet, "vet", "")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/cmd/go/main.go

    		doc.CmdDoc,
    		envcmd.CmdEnv,
    		fix.CmdFix,
    		fmtcmd.CmdFmt,
    		generate.CmdGenerate,
    		modget.CmdGet,
    		work.CmdInstall,
    		list.CmdList,
    		modcmd.CmdMod,
    		workcmd.CmdWork,
    		run.CmdRun,
    		telemetrycmd.CmdTelemetry,
    		test.CmdTest,
    		tool.CmdTool,
    		version.CmdVersion,
    		vet.CmdVet,
    
    		help.HelpBuildConstraint,
    		help.HelpBuildmode,
    		help.HelpC,
    		help.HelpCache,
    		help.HelpEnvironment,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. src/crypto/cipher/gcm_test.go

    Michael Stapelberg <******@****.***> 1698246285 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 15:27:49 UTC 2023
    - 35K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testsanitizers/cc_test.go

    Michael Anthony Knyszek <******@****.***> 1707407947 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 20:00:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  5. security/pkg/pki/ca/ca_test.go

    Jackie Elliott <******@****.***> 1698742287 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 08:51:27 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

        suite.addTest(testsForEmptySet());
        suite.addTest(testsForSingletonSet());
        suite.addTest(testsForHashSet());
        suite.addTest(testsForLinkedHashSet());
        suite.addTest(testsForEnumSet());
        suite.addTest(testsForTreeSetNatural());
        suite.addTest(testsForTreeSetWithComparator());
        suite.addTest(testsForCopyOnWriteArraySet());
        suite.addTest(testsForUnmodifiableSet());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java

                jvmOptions.stream().filter(StringUtil::isNotBlank).forEach(cmdList::add);
            }
    
            cmdList.add(ThumbnailGenerator.class.getCanonicalName());
    
            cmdList.add("--sessionId");
            cmdList.add(sessionId);
            cmdList.add("--numOfThreads");
            cmdList.add(Integer.toString(numOfThreads));
            if (cleanup) {
                cmdList.add("--cleanup");
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/job/SuggestJob.java

            addFessSystemProperties(cmdList);
            addSystemProperty(cmdList, Constants.FESS_CONF_PATH, null, null);
            cmdList.add("-Dfess." + getExecuteType() + ".process=true");
            if (logFilePath == null) {
                final String value = System.getProperty("fess.log.path");
                logFilePath = value != null ? value : new File(targetDir, "logs").getAbsolutePath();
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

        suite.addTest(testsForCheckedNavigableSet());
        suite.addTest(testsForEmptySet());
        suite.addTest(testsForEmptyNavigableSet());
        suite.addTest(testsForEmptySortedSet());
        suite.addTest(testsForSingletonSet());
        suite.addTest(testsForHashSet());
        suite.addTest(testsForLinkedHashSet());
        suite.addTest(testsForEnumSet());
        suite.addTest(testsForSynchronizedNavigableSet());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java

            params.put("$OUTPUT_FILE", outputFile.getAbsolutePath());
    
            final List<String> cmdList = parseCommand(command, params);
            if (logger.isInfoEnabled()) {
                logger.info("Command: {}", cmdList);
            }
    
            final ProcessBuilder pb = new ProcessBuilder(cmdList);
            if (workingDirectory != null) {
                pb.directory(workingDirectory);
            }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top