Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for print_op (0.17 sec)

  1. tensorflow/compiler/mlir/lite/utils/fake_quant_utils.cc

      });
    
      for (auto* op : wrapped_ops) {
        auto parent_op = op->getParentOfType<TFL::CustomTfOp>();
        if (!parent_op) continue;
        builder.setInsertionPoint(parent_op);
    
        // Recreate the operation by using the wrapper's operands and return types.
        // TODO(fengliuai): copy the regions.
        OperationState state(op->getLoc(), op->getName().getStringRef(),
                             parent_op->getOperands(), parent_op->getResultTypes(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 03 00:14:05 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/cache/debugger/dumper.go

    	for _, p := range n.Pods {
    		nodeData.WriteString(printPod(p.Pod))
    	}
    	// Dumping nominated pods info on the node
    	nominatedPodInfos := d.podQueue.NominatedPodsForNode(name)
    	if len(nominatedPodInfos) != 0 {
    		nodeData.WriteString(fmt.Sprintf("Nominated Pods(number: %v):\n", len(nominatedPodInfos)))
    		for _, pi := range nominatedPodInfos {
    			nodeData.WriteString(printPod(pi.Pod))
    		}
    	}
    	return nodeData.String()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. subprojects/core/src/testFixtures/groovy/org/gradle/process/TestJavaMain.java

                System.out.println("ARGUMENTS: " + String.join(" ", args));
            }
            System.out.println("ENVIRONMENT:");
            printMap(System.getenv(), "TEST_");
    
            System.out.println("PROPERTIES:");
            printMap(System.getProperties(), "test.");
        }
    
        private static void printMap(Map<?, ?> items, String prefix) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 00:18:08 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  4. test/typeparam/issue50690b.go

    	PrintFn() func(T)
    }](message T, obj S) {
    	obj.PrintFn()(message)
    }
    
    type PrintShop[T ~string] struct {
    	ID       T
    	PrintFn_ func(T)
    }
    
    // Field accesses through type parameters are disabled
    // until we have a more thorough understanding of the
    // implications on the spec. See issue #51576.
    // Use accessor method instead.
    
    func (s PrintShop[T]) PrintFn() func(T) { return s.PrintFn_ }
    
    func main() {
    	PrintWithPrinter(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 09 21:26:42 UTC 2022
    - 916 bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/text/StyledTable.java

                    ).mapToInt(String::length).max().orElse(0);
                }
    
                output.style(Header);
                printRow(model, output, colWidths, model.headers, ' ');
                output.style(Normal);
                output.println();
                // Print the separator row
                printRow(
                    model, output, colWidths,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 22 21:03:24 UTC 2022
    - 4K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/resolver/AbstractResolveTest.kt

            val actual = prettyPrint {
                printMap(
                    map = elementsByMarker,
                    omitSingleKey = true,
                    renderKey = { key, _ -> append("$key:") }
                ) { marker, byMarker ->
                    val elementsByMarkerAndContext = byMarker.groupBy { it.context }
                    printMap(
                        map = elementsByMarkerAndContext,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/optimize_functional_ops.cc

        // updated if operands' shapes change after inlining. Without this
        // restriction, it would require tensor cast ops.
        func::FuncOp parent_op = op->getParentOfType<func::FuncOp>();
        if (!llvm::hasSingleElement(parent_op)) return failure();
    
        // Find the then and else branch functions.
        func::FuncOp then_func = op.then_function();
        func::FuncOp else_func = op.else_function();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

                    .append(StringEscapeUtils.escapeJson(e.getValue())).append('"'));
            buf.append('}');
            printLog(buf.toString());
        }
    
        protected void printLog(final String message) {
            logger.info(message);
        }
    
        protected String getClientIp() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. istioctl/pkg/util/formatting/formatter.go

    	switch format {
    	case LogFormat:
    		return printLog(ms, colorize), nil
    	case JSONFormat:
    		return printJSON(ms)
    	case YAMLFormat:
    		return printYAML(ms)
    	default:
    		return "", fmt.Errorf("invalid format, expected one of %v but got %q", MsgOutputFormatKeys, format)
    	}
    }
    
    func printLog(ms diag.Messages, colorize bool) string {
    	logOutput := make([]string, 0, len(ms))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 02:41:45 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TaskOriginCrossVersionSpec.groovy

                                }
                            }
                        }
                    }
                }
            """
    
            when:
            runBuild('printFoo')
    
            then:
            task(':printFoo').originPlugin.displayName == "MyPlugin"
        }
    
        private void runBuild(String task, Action<BuildLauncher> config = {}) {
            withConnection {
                    def launcher = newBuild()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top