Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,477 for samples_ (0.2 sec)

  1. security/pkg/pki/ra/k8s_ra_test.go

    			rootCertForMeshConfig: path.Join(env.IstioSrc, "samples/certs", "workload-foo-root-certs.pem"),
    			certChain:             path.Join(env.IstioSrc, "samples/certs", "leaf-workload-foo-cert.pem"),
    		},
    		{
    			name:                  "Root cert is specified in mesh config and cert chain contains only intermediate CA(only leaf cert + intermediate CA)",
    			rootCertForMeshConfig: path.Join(env.IstioSrc, "samples/certs", "root-cert.pem"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 00:44:54 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. 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)
  3. src/internal/trace/testdata/testprog/cpu-profile.go

    			case "runtime._System", "runtime._GC", "runtime._ExternalCode", "runtime._VDSO":
    				continue
    			}
    			stack := strings.Join(fns, "|")
    			samples := int(s.Value[0])
    			pprofStacks[stack] += samples
    		}
    	}
    	for stack, samples := range pprofStacks {
    		fmt.Fprintf(os.Stderr, "%s\t%d\n", stack, samples)
    	}
    }
    
    func cpuHogger(f func(x int) int, y *int, dur time.Duration) {
    	// We only need to get one 100 Hz clock tick, so we've got
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. 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)
  5. platforms/documentation/docs/src/snippets/providers/implicitTaskInputFileDependency/tests/implicitTaskInputFileDependencyGroovy.out

    > Task :producer
    Wrote 'Hello, World!' to /home/user/gradle/samples/output/file.txt
    
    > Task :consumer
    Read 'Hello, World!' from /home/user/gradle/samples/output/file.txt
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 226 bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/SetsTest.java

                ImmutableSet.of(1, 2),
                ImmutableSet.of(1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
        for (Set<Integer> sampleSet : sampleSets) {
          for (int k = 0; k <= sampleSet.size(); k++) {
            final int size = k;
            Set<Set<Integer>> expected =
                Sets.filter(
                    Sets.powerSet(sampleSet),
                    new Predicate<Set<Integer>>() {
    
                      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 47.8K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/DocsTest.kt

                    DocsTest(model, stage, os, testJava, 1, it, INCLUDE, listOf("org.gradle.docs.samples.Bucket1SnippetsTest=docsTest")),
                    DocsTest(model, stage, os, testJava, 2, it, INCLUDE, listOf("org.gradle.docs.samples.Bucket2SnippetsTest=docsTest")),
                    DocsTest(model, stage, os, testJava, 3, it, INCLUDE, listOf("org.gradle.docs.samples.Bucket3SnippetsTest=docsTest")),
                    DocsTest(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/TestSortedMapGenerator.java

      SortedMap<K, V> create(Object... elements);
    
      /**
       * Returns an entry with a key less than the keys of the {@link #samples()} and less than the key
       * of {@link #belowSamplesGreater()}.
       */
      Entry<K, V> belowSamplesLesser();
    
      /**
       * Returns an entry with a key less than the keys of the {@link #samples()} but greater than the
       * key of {@link #belowSamplesLesser()}.
       */
      Entry<K, V> belowSamplesGreater();
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/native-sidecar.yaml

          restartPolicy: Always
          readinessProbe:
            httpGet:
              port: 3333
          image: "fake.docker.io/google-samples/hello-go-gke:1.0"
          ports:
            - name: http
              containerPort: 80
      containers:
        - name: hello
          image: "fake.docker.io/google-samples/hello-go-gke:1.0"
          ports:
            - name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 03:10:51 UTC 2023
    - 468 bytes
    - Viewed (0)
  10. src/cmd/internal/pgo/pprof.go

    		// samples: nothing to do.
    		return emptyProfile(), nil
    	} else if err != nil {
    		return nil, fmt.Errorf("error parsing profile: %w", err)
    	}
    
    	if len(p.Sample) == 0 {
    		// We accept empty profiles, but there is nothing to do.
    		return emptyProfile(), nil
    	}
    
    	valueIndex := -1
    	for i, s := range p.SampleType {
    		// Samples count is the raw data collected, and CPU nanoseconds is just
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top