Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 712 for sample2 (0.27 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/EmlExtractorTest.java

            }
        }
    
        public void test_getMultipartText() throws IOException {
            try (final InputStream in = ResourceUtil.getResourceAsStream("extractor/eml/sample2.eml")) {
                ExtractData data = emlExtractor.getText(in, null);
                final String content = data.getContent();
                logger.info(content);
                assertTrue(content.contains("チンギス・ハン"));
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. src/internal/trace/generation.go

    // (indicating that the batch contains only CPU samples) and adds each
    // sample contained therein to the provided samples list.
    func addCPUSamples(samples []cpuSample, b batch) ([]cpuSample, error) {
    	if !b.isCPUSamplesBatch() {
    		return nil, fmt.Errorf("internal error: addCPUSamples called on non-CPU-sample batch")
    	}
    	r := bytes.NewReader(b.data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/Sample.java

    /**
     * A Junit rule which copies a sample into the test directory before the test executes. Looks for a
     * {@link org.gradle.integtests.fixtures.UsesSample} annotation on the test method to determine which sample the
     * test requires. If not found, uses the default sample provided in the constructor.
     */
    public class Sample implements TestRule {
        private final Logger logger = LoggerFactory.getLogger(Sample.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. src/runtime/metrics_test.go

    	descs := metrics.All()
    	var samples [2][]metrics.Sample
    	samples[0] = make([]metrics.Sample, len(descs))
    	samples[1] = make([]metrics.Sample, len(descs))
    	total := 0
    	for i := range samples[0] {
    		if !descs[i].Cumulative {
    			continue
    		}
    		samples[0][total].Name = descs[i].Name
    		total++
    	}
    	samples[0] = samples[0][:total]
    	samples[1] = samples[1][:total]
    	copy(samples[1], samples[0])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  5. src/runtime/pprof/proto_test.go

    	// If we used f1 and f2 above, then the samples will have line info.
    	for _, s := range p.Sample {
    		for _, l := range s.Location {
    			l.Line = nil
    		}
    	}
    	if fmtJSON(p.Sample) != fmtJSON(samples) { // ignore unexported fields
    		if len(p.Sample) == len(samples) {
    			for i := range p.Sample {
    				if !reflect.DeepEqual(p.Sample[i], samples[i]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 23:21:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. platforms/documentation/docs/build.gradle

                excludeTestsMatching "org.gradle.docs.samples.*.building-swift*.sample"
                // We don't have Android SDK installed on mac M1 now
                excludeTestsMatching "org.gradle.docs.samples.*.building-android-*.sample"
                excludeTestsMatching "org.gradle.docs.samples.*.structuring-software-projects*android-app.sample"
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  7. platforms/documentation/docs/README.md

    This plugin adds a [`Samples`](https://github.com/gradle/guides/blob/fa335417efb5656e202e95759ebf8a4e60843f10/subprojects/gradle-guides-plugin/src/main/java/org/gradle/docs/samples/Samples.java#L8) extension named `samples`.
    
    This `samples` extension is configured in both `platforms/documentation/docs/build.gradle` and `generate-samples.gradle.kts`:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. src/internal/profile/filter.go

    	samples := make([]*Sample, 0, len(p.Sample))
    	for _, s := range p.Sample {
    		focused, ignored := focusedSample(s, focus, ignore)
    		fm = fm || focused
    		im = im || ignored
    		if focused && !ignored {
    			samples = append(samples, s)
    		}
    	}
    	p.Sample = samples
    	return
    }
    
    // focusedSample checks a sample against focus and ignore regexps.
    // Returns whether the focus/ignore regexps match any tags.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AutoTestedSamplesUtil.groovy

            String text = file.text
            def samples = SAMPLE_START.matcher(text)
            while (samples.find()) {
                def tagSuffix = samples.group(1)
                def start = samples.end()
                def end = text.indexOf("</pre>", start)
                def sample = text.substring(start, end)
                sample = LEADING_ASTERISK_PATTERN.matcher(sample).replaceAll('')
                sample = sample.replace('&lt;', '<')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    ====
    include::sample[dir="samples/build-organization/composite-builds/basic/kotlin",files="build.gradle.kts[tags=run]"]
    include::sample[dir="samples/build-organization/composite-builds/basic/groovy",files="build.gradle[tags=run]"]
    ====
    
    Or you can declare a dependency on tasks with a certain path in some or all of the included builds:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top