Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for analyzing (0.13 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/ProguardSmokeTest.groovy

                    outputFile = project.layout.buildDirectory.file("reports/plugins/validation-report-for-proguard.txt")
                    classes.from({ ->
                        // Only test this one task, since analyzing all the classes seems to cause some problems
                        configurations.runtimeClasspath.files.collect { project.zipTree(it).matching { include "**/ProGuardTask.*" } }
                    })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

                                   detail::SideEffectAnalysisInfo> {
     public:
      // Constructs analysis by analyzing the given module operation. Because no
      // parallel_ids are given, the program has sequential memory semantics.
      explicit SideEffectAnalysis(ModuleOp module_op);
    
      // Constructs analysis by analyzing the given module operation where
      // `op_to_parallel_ids` supplies the group to branch map. This is the map
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. istioctl/pkg/analyze/analyze.go

    						for _, r := range readers {
    							files = append(files, r.Name)
    						}
    						fmt.Fprintf(cmd.ErrOrStderr(), "\u2714 No validation issues found when analyzing %s.\n", strings.Join(files, "\n"))
    					} else {
    						fmt.Fprintf(cmd.ErrOrStderr(), "\u2714 No validation issues found when analyzing %s.\n", analyzeTargetAsString())
    					}
    				} else {
    					fileOrFiles := "files"
    					if parseErrors == 1 {
    						fileOrFiles = "file"
    					}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.h

    namespace detail {
    class BacktrackAnalysis;
    class BacktrackAnalysisInfo;
    
    // Resource alias analysis information for a single function.
    class ResourceAliasAnalysisInfo {
     public:
      // Constructs analysis info by analyzing the given function.
      ResourceAliasAnalysisInfo(func::FuncOp func,
                                const BacktrackAnalysis& backtrack_analysis,
                                SymbolTableCollection& symbol_table_collection);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ResolveExceptionMapper.java

        }
    
        // TODO: We should handle this exception at the source instead of using instanceof to detect it after it is thrown.
        //       We should try to avoid catching and analyzing runtime exceptions
        public Throwable mapRepositoryOverrideFailure(String contextDisplayName, Throwable failure) {
            if (!(failure instanceof ModuleVersionNotFoundException) || !settingsRepositoriesIgnored()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzer.go

    package analysis
    
    import (
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/analysis/scope"
    	"istio.io/istio/pkg/config/schema/collection"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // Analyzer is an interface for analyzing configuration.
    type Analyzer interface {
    	Metadata() Metadata
    	Analyze(c Context)
    }
    
    // CombinedAnalyzer is an interface used to combine and run multiple analyzers into one
    type CombinedAnalyzer interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

     private:
      // Returns the analysis for the given region (analyzing the region if it has
      // not yet been analyzed).
      const InfoT& GetOrCreateAnalysis(Region& region) {
        auto it = info_map_.find(&region);
        if (it == info_map_.end()) {
          // Note: Keep object construction and insertion separate. If we use
          // emplace() to construct and insert in a single shot, when analyzing
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtCompilerFacility.kt

                    throw KaCodeCompilationException(e)
                }
            }
        }
    }
    
    public typealias KtCompilerFacilityMixIn = KaCompilerFacilityMixIn
    
    /**
     * Thrown when an exception occurred on analyzing the code to be compiled, or during target platform code generation.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. pkg/test/framework/components/istio/cleanup.go

    func (i *istioImpl) Close() error {
    	t0 := time.Now()
    	scopes.Framework.Infof("=== BEGIN: Cleanup Istio [Suite=%s] ===", i.ctx.Settings().TestID)
    
    	// Write time spent for cleanup and deploy to ARTIFACTS/trace.yaml and logs to allow analyzing test times
    	defer func() {
    		delta := time.Since(t0)
    		i.ctx.RecordTraceEvent("istio-cleanup", delta.Seconds())
    		scopes.Framework.Infof("=== SUCCEEDED: Cleanup Istio in %v [Suite=%s] ===", delta, i.ctx.Settings().TestID)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part5_gradle_inc_builds.adoc

    $ touch gradle.properties
    ----
    
    Add `org.gradle.console=verbose` so the contents of the file look like this:
    
    .gradle.properties
    [source,properties]
    ----
    org.gradle.console=verbose
    ----
    
    == Step 3. Analyzing Incremental Builds
    Run the clean task and then the build task using the `./gradlew :app:clean :app:build` command:
    [source,text]
    ----
    $ ./gradlew :app:clean :app:build
    
    > Task :app:clean
    > Task :app:compileJava
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top