Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for analyzing (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top