Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for isExternal (0.29 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

        // backtrack through that function call (our analysis will be correct but
        // pessimistic).
        for (CallGraphNode* node : scc) {
          if (node->isExternal()) continue;
          Region* region = node->getCallableRegion();
          GetOrCreateAnalysis(*region);
        }
      }
    
      // This above call graph analysis will cover all regions attached to functions
    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/translate/export_graphdef.cc

      // of constructing the table is offset by the number of queries.
      SymbolTable symbol_table(module);
      for (auto function : module.getOps<FuncOp>()) {
        if (function.isExternal())
          return errors::FailedPrecondition("External functions not supported");
    
        if (function.getName() == entry_func_id &&
            !configs.export_entry_func_to_flib) {
          entry_func.emplace(function);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

      // of constructing the table is offset by the number of queries.
      SymbolTable symbol_table(module);
      for (auto function : module.getOps<FuncOp>()) {
        if (function.isExternal())
          return errors::FailedPrecondition("External functions not supported");
    
        if (function.getName() == entry_func_id &&
            !configs.export_entry_func_to_flib) {
          entry_func.emplace(function);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

      });
    
      auto& side_effect_analysis = getAnalysis<mlir::TF::SideEffectAnalysis>();
      for (auto func : getOperation().getOps<mlir::func::FuncOp>())
        if (!func.isExternal() &&
            failed(FormClustersInFunction(
                func, side_effect_analysis.GetAnalysisForFunc(func),
                strict_clusters_)))
          return signalPassFailure();
    }
    }  // anonymous namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server.go

    	}
    
    	if kubeDeps == nil {
    		kubeDeps, err = UnsecuredDependencies(s, featureGate)
    		if err != nil {
    			return err
    		}
    	}
    
    	if kubeDeps.Cloud == nil {
    		if !cloudprovider.IsExternal(s.CloudProvider) {
    			cloudprovider.DeprecationWarningForProvider(s.CloudProvider)
    			cloud, err := cloudprovider.InitCloudProvider(s.CloudProvider, s.CloudConfigFile)
    			if err != nil {
    				return err
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/DecoratedPropertyProblem.kt

                cutPart(lastIsInternal)
                this.lastIsInternal = null
            }
    
            private
            fun cutPart(isInternal: Boolean) {
                val text = drainBuffer()
                parts += StackTracePart(isInternal, text)
            }
    
            private
            fun drainBuffer(): String = buffer.toString().also { buffer.setLength(0) }
        }
    }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/problems/failure/InternalStackTraceClassifier.java

        @Nullable
        @Override
        public StackTraceRelevance classify(StackTraceElement frame) {
            return isInternal(frame.getClassName()) ? StackTraceRelevance.INTERNAL : null;
        }
    
        private static boolean isInternal(String className) {
            // JDK calls
            return className.startsWith("java.") ||
                className.startsWith("jdk.") ||
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    		recorder:                       kubeDeps.Recorder,
    		cadvisor:                       kubeDeps.CAdvisorInterface,
    		cloud:                          kubeDeps.Cloud,
    		externalCloudProvider:          cloudprovider.IsExternal(cloudProvider),
    		providerID:                     providerID,
    		nodeRef:                        nodeRef,
    		nodeLabels:                     nodeLabels,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/JsonModelWriter.kt

                    if (parts != null) {
                        if (summary != null) comma()
                        property("parts") {
                            jsonObjectList(parts) { (isInternal, text) ->
                                property(if (isInternal) "internalText" else "text", text)
                            }
                        }
                    }
                }
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    }
    
    func ldhostobj(ld func(*Link, *bio.Reader, string, int64, string), headType objabi.HeadType, f *bio.Reader, pkg string, length int64, pn string, file string) *Hostobj {
    	isinternal := false
    	for _, intpkg := range internalpkg {
    		if pkg == intpkg {
    			isinternal = true
    			break
    		}
    	}
    
    	// DragonFly declares errno with __thread, which results in a symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top