Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,820 for palmer (0.22 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops_pass.cc

      // device cluster ops.
      for (auto func : module.getOps<func::FuncOp>()) {
        for (auto user : symbol_map.getUsers(func)) {
          // Populate caller-callee map.
          if (func::FuncOp caller = user->getParentOfType<func::FuncOp>())
            caller_callee_map[caller].insert(func);
          // Initialize function worklist with functions refrerenced in device
          // cluster.
          if (auto cluster = user->getParentOfType<tf_device::ClusterOp>()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 08 20:01:13 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. src/internal/types/errors/generrordocs.go

    			log.Fatalf("os.WriteFile: %s\n", err)
    		}
    	})
    	log.Printf("output directory: %s\n", outDir)
    }
    
    func walkCodes(f func(string, *ast.ValueSpec)) {
    	fset := token.NewFileSet()
    	file, err := parser.ParseFile(fset, "codes.go", nil, parser.ParseComments)
    	if err != nil {
    		log.Fatalf("ParseFile failed: %s", err)
    	}
    	conf := Config{Importer: importer.Default()}
    	info := &Info{
    		Types: make(map[ast.Expr]TypeAndValue),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 03:14:42 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. security/pkg/server/ca/server.go

    func (s *Server) CreateCertificate(ctx context.Context, request *pb.IstioCertificateRequest) (
    	*pb.IstioCertificateResponse, error,
    ) {
    	s.monitoring.CSR.Increment()
    	caller, err := security.Authenticate(ctx, s.Authenticators)
    	if caller == nil || err != nil {
    		s.monitoring.AuthnError.Increment()
    		return nil, status.Error(codes.Unauthenticated, "request authenticate failure")
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/schema/flatbuffer_compatibility_test.cc

      return true;
    }
    
    bool ParseFile(flatbuffers::Parser *parser, const std::string &filename,
                   const std::string &contents) {
      std::vector<const char *> include_directories;
      auto local_include_directory = flatbuffers::StripFileName(filename);
      include_directories.push_back(local_include_directory.c_str());
      include_directories.push_back(nullptr);
      if (!parser->Parse(contents.c_str(), include_directories.data(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. subprojects/core-api/src/test/groovy/org/gradle/internal/typeconversion/ErrorHandlingNotationParserTest.groovy

    class ErrorHandlingNotationParserTest extends Specification {
        def NotationParser<String, String> target = Mock()
        def parser = new ErrorHandlingNotationParser<String, String>("a thing", "<broken>", false, target)
    
        def "reports unable to parse null"() {
            when:
            parser.parseNotation(null)
    
            then:
            UnsupportedNotationException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderStartParameterConverter.java

            CommandLineParser parser = new CommandLineParser();
            new InitialPropertiesConverter().configure(parser);
            new BuildLayoutConverter().configure(parser);
            converter.configure(parser);
            ParsedCommandLine parsedCommandLine;
            try {
                parsedCommandLine = parser.parse(arguments != null ? arguments : Collections.emptyList());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/internal/typeconversion/NotationParserBuilder.java

            }
    
            NotationParser<N, T> parser = new NotationConverterToNotationParserAdapter<>(notationConverter);
            if (notationType.isAssignableFrom(resultingType.getTargetType()) && implicitConverters) {
                parser = new JustReturningParser<>(resultingType.getTargetType(), parser);
            }
            return parser;
        }
    
        private static class LazyDisplayName<T> implements Describable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 27 20:34:59 UTC 2020
    - 6.9K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/SnappyCommonsPacker.java

    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.List;
    
    public class SnappyCommonsPacker implements Packer {
        private final Packer delegate;
    
        public SnappyCommonsPacker(Packer delegate) {
            this.delegate = delegate;
        }
    
        @Override
        public void pack(List<DataSource> inputs, DataTarget output) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/go/doc/comment/doc.go

    To parse the text associated with a doc comment (after removing comment markers),
    use a [Parser]:
    
    	var p comment.Parser
    	doc := p.Parse(text)
    
    The result is a [*Doc].
    To reformat it as a doc comment, HTML, Markdown, or plain text,
    use a [Printer]:
    
    	var pr comment.Printer
    	os.Stdout.Write(pr.Text(doc))
    
    The [Parser] and [Printer] types are structs whose fields can be
    modified to customize the operations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 19:05:57 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  10. src/go/doc/comment/testdata/README.md

    The files are in [txtar format](https://pkg.go.dev/golang.org/x/tools/txtar).
    Consider this example:
    
    	-- input --
    	Hello.
    	-- gofmt --
    	Hello.
    	-- html --
    	<p>Hello.
    	-- markdown --
    	Hello.
    	-- text --
    	Hello.
    
    Each `-- name --` line introduces a new file with the given name.
    The file named “input” must be first and contains the input to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top