Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for analyzing (0.11 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    A rise in the hit rate there probably indicates better usage by developers:
    
    [.screenshot]
    image::build-cache/cache-admin-hit-rate.png[build cache hit rate]
    
    == Analyzing performance in build scans
    
    Build scans provide a summary of all cache operations for a build via the _"Build cache"_ section of the _"Performance"_ page.
    
    [.screenshot]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactoryTest.groovy

                operand58,
                operand59,
                operand60,
                operand61
            ] as Set)
    
    
            expect:
            operation
        }
    
        @Ignore("to be used adhoc when analyzing specific issue")
        def 'replay content from shared json formatted log'() {
            def input = new File('/path/to/log.json')
            def converter = new ExcludeJsonLogToCode()
    
            def slurper = new JsonSlurper()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  3. src/net/rpc/server.go

    	method map[string]*methodType // registered methods
    }
    
    // Request is a header written before every RPC call. It is used internally
    // but documented here as an aid to debugging, such as when analyzing
    // network traffic.
    type Request struct {
    	ServiceMethod string   // format: "Service.Method"
    	Seq           uint64   // sequence number chosen by client
    	next          *Request // for free list in Server
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. tests/integration/pilot/analyze_test.go

    		}
    	}
    }
    
    func expectNoMessages(t test.Failer, g *GomegaWithT, output []string) {
    	t.Helper()
    	g.Expect(output).To(HaveLen(1))
    	g.Expect(output[0]).To(ContainSubstring("No validation issues found when analyzing"))
    }
    
    func expectJSONMessages(t test.Failer, g *GomegaWithT, output string, expected ...*diag.MessageType) {
    	t.Helper()
    
    	var j []map[string]any
    	if err := json.Unmarshal([]byte(output), &j); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. src/regexp/onepass.go

    				instAlt = p.Inst[*p_A_Alt]
    				if !(instAlt.Op == syntax.InstAlt || instAlt.Op == syntax.InstAltMatch) {
    					continue
    				}
    			}
    			instOther := p.Inst[*p_A_Other]
    			// Analyzing both legs pointing to Alts is for another day
    			if instOther.Op == syntax.InstAlt || instOther.Op == syntax.InstAltMatch {
    				// too complicated
    				continue
    			}
    			// simple empty transition loop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

     * If invoked as `-Dorg.gradle.internal.operations.trace`, a base value of "operations" will be used.
     * <p>
     * The “trace” produced here is different to the trace produced by Gradle Profiler.
     * There, the focus is analyzing the performance profile.
     * Here, the focus is debugging/developing the information structure of build operations.
     *
     * @since 4.0
     */
    @ServiceScope(Scope.CrossBuildSession.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    === Evaluating cache performance over time
    
    Consider recording execution times of your builds, generating graphs, and analyzing the results.
    Keep an eye out for certain patterns, like a build recompiling everything even though you expected compilation to be cached.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    		FactTypes: []analysis.Fact{new(isWrapper)},
    		...
    	}
    
    	type isWrapper struct{} // => *types.Func f “is a printf wrapper”
    
    The driver program ensures that facts for a pass’s dependencies are
    generated before analyzing the package and is responsible for propagating
    facts from one package to another, possibly across address spaces.
    Consequently, Facts must be serializable. The API requires that drivers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    3. [[task_configuration_avoidance_guideline_prefer_small_incremental_change]] **Prefer small incremental changes.** +
    Smaller changes are easier to sanity check.
    If you ever break your build logic, analyzing the changelog since the last successful verification will be easier.
    
    4. [[task_configuration_avoidance_guideline_validate_build_logic]] **Ensure a good plan is established for validating the build logic.** +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  10. pkg/config/analysis/local/istiod_analyze.go

    	// multiClusterStores contains all the multi-cluster config sources to analyze
    	multiClusterStores map[cluster.ID]model.ConfigStoreController
    	// cluster is the cluster ID for the environment we are analyzing
    	cluster cluster.ID
    	// fileSource contains all file bases sources
    	fileSource *file.KubeSource
    
    	analyzer       analysis.CombinedAnalyzer
    	namespace      resource.Namespace
    	istioNamespace resource.Namespace
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top