Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for fastlocal (0.3 sec)

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

    	for _, o := range strings.Split(strings.ToLower(mode), ":") {
    		switch o {
    		case "":
    			continue
    		case "none", "no":
    			return nil
    		case "local":
    			remote, local = false, true
    		case "fastlocal":
    			remote, local, fast = false, true, true
    		case "remote":
    			remote, local = true, false
    		case "force":
    			force = true
    		default:
    			switch d := strings.TrimPrefix(o, "demangle="); d {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    	"    -symbolize=           Controls source of symbol information\n" +
    	"      none                  Do not attempt symbolization\n" +
    	"      local                 Examine only local binaries\n" +
    	"      fastlocal             Only get function names from local binaries\n" +
    	"      remote                Do not examine local binaries\n" +
    	"      force                 Force re-symbolization\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. container-tests/src/test/java/okhttp3/containers/SocksProxyTest.kt

          .withNetworkAliases("mockserver")
    
      @Container
      val socks5Proxy =
        GenericContainer(SOCKS5_PROXY)
          .withNetwork(network)
          .withExposedPorts(1080)
    
      @Test
      fun testLocal() {
        MockServerClient(mockServer.host, mockServer.serverPort).use { mockServerClient ->
          mockServerClient
            .`when`(
              request().withPath("/person")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/compilerFacility/FirIdeNormalAnalysisLibrarySourceModuleCompilerFacilityTestGenerated.java

          runTest("analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/inlineFunctionUsageSource.kt");
        }
    
        @Test
        @TestMetadata("local.kt")
        public void testLocal() {
          runTest("analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/local.kt");
        }
    
        @Test
        @TestMetadata("simple.kt")
        public void testSimple() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/compilerFacility/FirIdeNormalAnalysisSourceModuleCompilerFacilityTestGenerated.java

          runTest("analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/inlineFunctionUsageSource.kt");
        }
    
        @Test
        @TestMetadata("local.kt")
        public void testLocal() {
          runTest("analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/local.kt");
        }
    
        @Test
        @TestMetadata("simple.kt")
        public void testSimple() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. common/config/.golangci.yml

        enabled-checks:
          - appendCombine
          - argOrder
          - assignOp
          - badCond
          - boolExprSimplify
          - builtinShadow
          - captLocal
          - caseOrder
          - codegenComment
          - commentedOutCode
          - commentedOutImport
          - defaultCaseOrder
          - deprecatedComment
          - docStub
          - dupArg
          - dupBranchBody
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/check_test.go

    } // TODO(gri) narrow column tolerance
    func TestFixedbugs(t *testing.T) {
    	testDirFiles(t, "../../../../internal/types/testdata/fixedbugs", 100, false)
    }                            // TODO(gri) narrow column tolerance
    func TestLocal(t *testing.T) { testDirFiles(t, "testdata/local", 0, false) }
    
    func testDirFiles(t *testing.T, dir string, colDelta uint, manual bool) {
    	testenv.MustHaveGoBuild(t)
    	dir = filepath.FromSlash(dir)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. src/go/types/check_test.go

    func TestExamples(t *testing.T)  { testDirFiles(t, "../../internal/types/testdata/examples", false) }
    func TestFixedbugs(t *testing.T) { testDirFiles(t, "../../internal/types/testdata/fixedbugs", false) }
    func TestLocal(t *testing.T)     { testDirFiles(t, "testdata/local", false) }
    
    func testDirFiles(t *testing.T, dir string, manual bool) {
    	testenv.MustHaveGoBuild(t)
    	dir = filepath.FromSlash(dir)
    
    	fis, err := os.ReadDir(dir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. cmd/endpoint.go

    		for _, endpoint := range ep.Endpoints {
    			if endpoint.IsLocal {
    				localDisksCount[i]++
    			}
    		}
    	}
    	return localDisksCount
    }
    
    // FirstLocal returns true if the first endpoint is local.
    func (l EndpointServerPools) FirstLocal() bool {
    	return l[0].Endpoints[0].IsLocal
    }
    
    // HTTPS - returns true if secure for URLEndpointType.
    func (l EndpointServerPools) HTTPS() bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context_test.go

    				if dr.rule.Name != tt.expectedDrName[i] {
    					t.Errorf("destinationRuleName expected %v got %v", tt.expectedDrName[i], dr.rule.Name)
    				}
    			}
    			testLocal := ps.destinationRuleIndex.namespaceLocal[tt.proxyNs]
    			if testLocal != nil {
    				destRules := testLocal.specificDestRules
    				for _, dr := range destRules[host.Name(testhost)] {
    
    					// Check if the 'from' values match the expectedFrom map
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
Back to top