Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,473 for sample_2 (0.1 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	"divide_by": helpText(
    		"Ratio to divide all samples before visualization",
    		"Divide all samples values by a constant, eg the number of processors or jobs."),
    	"mean": helpText(
    		"Average sample value over first value (count)",
    		"For memory profiles, report average memory per allocation.",
    		"For time-based profiles, report average time per event."),
    	"sample_index": helpText(
    		"Sample value to report (0-based index or name)",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. src/runtime/pprof/protomem_test.go

    	const expectedLocationNewInliner = "runtime/pprof.TestGenericsInlineLocations;" + expectedLocation
    	var s *profile.Sample
    	for _, sample := range p.Sample {
    		if sampleToString(sample) == expectedSample {
    			s = sample
    			break
    		}
    	}
    	if s == nil {
    		t.Fatalf("expected \n%s\ngot\n%s", expectedSample, strings.Join(profileToStrings(p), "\n"))
    	}
    	loc := s.Location[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/dependencymanagement/SamplesManagingTransitiveDependenciesIntegrationTest.groovy

        @Rule
        Sample sample = new Sample(testDirectoryProvider)
    
        def setup() {
            executer.withRepositoryMirrors()
        }
    
        @UsesSample("dependencyManagement/managingTransitiveDependencies-versionsWithConstraints")
        def "respects dependency constraints for direct and transitive dependencies with #dsl dsl"() {
            TestFile dslDir = sample.dir.file(dsl)
            executer.inDirectory(dslDir)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/files/SamplesFilesMiscIntegrationTest.groovy

    class SamplesFilesMiscIntegrationTest extends AbstractIntegrationSpec {
    
        @Rule
        Sample sample = new Sample(testDirectoryProvider)
    
        @UsesSample("files/misc")
        def "can create a directory with #dsl dsl"() {
            given:
            def dslDir = sample.dir.file(dsl)
            executer.inDirectory(dslDir)
    
            when:
            succeeds('ensureDirectory')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/hello-host-network-with-ns.yaml

              ports:
                - name: http
                  containerPort: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 14 17:26:47 UTC 2021
    - 556 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/rsc.io_sampler_v1.99.99.txt

    			t.Errorf("Hello(%v) = %q, want %q", tt.prefs, text, tt.text)
    		}
    	}
    }
    -- sampler.go --
    // Copyright 2018 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.
    
    // Package sampler shows simple texts.
    package sampler // import "rsc.io/sampler"
    
    import (
    	"os"
    	"strings"
    
    	"golang.org/x/text/language"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 3.2K bytes
    - Viewed (0)
  7. docs/features/https.md

     [CertificatePinningJava]: https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/CertificatePinning.java
     [CertificatePinningKotlin]: https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/kt/CertificatePinning.kt
     [provider_installer]: https://developer.android.com/training/articles/security-gms-provider
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 24 00:16:30 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/plugins/consuming/common/maven-repo/com/example/sample-plugins/1.0.0/sample-plugins-1.0.0.pom

      <!-- that they should prefer consuming it instead. -->
      <!-- do_not_remove: published-with-gradle-metadata -->
      <modelVersion>4.0.0</modelVersion>
      <groupId>com.example</groupId>
      <artifactId>sample-plugins</artifactId>
      <version>1.0.0</version>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 755 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/plugins/multiproject/common/maven-repo/com/example/sample-plugins/1.0.0/sample-plugins-1.0.0.pom

      <!-- that they should prefer consuming it instead. -->
      <!-- do_not_remove: published-with-gradle-metadata -->
      <modelVersion>4.0.0</modelVersion>
      <groupId>com.example</groupId>
      <artifactId>sample-plugins</artifactId>
      <version>1.0.0</version>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 755 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_vendor_build.txt

    env GO111MODULE=on
    [short] skip
    
    # Populate go.mod and go.sum.
    go mod tidy
    
    # initial conditions: using sampler v1.3.0, not listed in go.mod.
    go list -deps
    stdout rsc.io/sampler
    ! grep 'rsc.io/sampler v1.3.0' go.mod
    
    # update to v1.3.1, now indirect in go.mod.
    go get rsc.io/sampler@v1.3.1
    grep 'rsc.io/sampler v1.3.1 // indirect' go.mod
    cp go.mod go.mod.good
    
    # vendoring can but should not need to make changes.
    go mod vendor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 931 bytes
    - Viewed (0)
Back to top