Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 55 for analyzing (0.29 sec)

  1. 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)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_test_passes.td

      let constructor = "::mlir::tf_test::CreateTestClusteringPolicyPass()";
    }
    
    def TestSideEffectAnalysisPass : Pass<"tf-test-side-effect-analysis", "ModuleOp"> {
      let summary = "Test pass for analyzing side-effect analysis result";
      let description = [{
        Adds "Predecessors" and "Successors" remarks for each op based on
        the SideEffectAnalysis result. For testing purpose only.
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 00:21:29 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/WriteReplaceOverridesTest.java

               * well be a JDK bug.
               */
              || info.getName().contains("TypeTokenTest")
          /*
           * Luckily, we don't care about analyzing tests at all. We'd skip them all if we could do so
           * trivially, but it's enough to skip these ones.
           */
          ) {
            continue;
          }
          Class<?> clazz = info.load();
          try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/checkstyle_plugin.adoc

    ====
    
    [[sec:checkstyle_customize_memory]]
    == Changing the amount of memory given to Checkstyle
    
    Checkstyle analysis is performed in a separate process. By default, the Checkstyle process is given a max heap of 512MB. When analyzing many source files, you may need to provide additional memory to this process.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 16:44:32 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/asm/ClassDependenciesVisitor.java

            Set<String> types = isAccessible(access) ? accessibleTypes : privateTypes;
            maybeAddClassTypesFromSignature(signature, types);
            if (superName != null) {
                // superName can be null if what we are analyzing is `java.lang.Object`
                // which can happen when a custom Java SDK is on classpath (typically, android.jar)
                Type type = Type.getObjectType(superName);
                maybeAddDependentType(types, type);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:49:15 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. src/go/parser/error_test.go

    				t.Errorf("%s: %q does not match %q", error.Pos, error.Msg, msg)
    				continue
    			}
    			// we have a match - eliminate this error
    			delete(expected, pos)
    		} else {
    			// To keep in mind when analyzing failed test output:
    			// If the same error position occurs multiple times in errors,
    			// this message will be triggered (because the first error at
    			// the position removes this position from the expected errors).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 19:47:49 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  10. src/cmd/internal/cov/readcovdata.go

    // directories, then pass in a visitor object with methods that get
    // invoked at various important points. CovDataReader is intended
    // to facilitate common coverage data file operations such as
    // merging or intersecting data files, analyzing data files, or
    // dumping data files.
    type CovDataReader struct {
    	vis            CovDataVisitor
    	indirs         []string
    	matchpkg       func(name string) bool
    	flags          CovDataReaderFlags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top