Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for parseTypes (0.15 sec)

  1. src/debug/dwarf/typeunit.go

    	unit
    	toff  Offset // Offset to signature type within data.
    	name  string // Name of .debug_type section.
    	cache Type   // Cache the type, nil to start.
    }
    
    // Parse a .debug_types section.
    func (d *Data) parseTypes(name string, types []byte) error {
    	b := makeBuf(d, unknownFormat{}, name, 0, types)
    	for len(b.data) > 0 {
    		base := b.off
    		n, dwarf64 := b.unitLength()
    		if n != Offset(uint32(n)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. src/debug/dwarf/open.go

    // .debug_types sections. The name is used for error reporting only,
    // and serves to distinguish one .debug_types section from another.
    func (d *Data) AddTypes(name string, types []byte) error {
    	return d.parseTypes(name, types)
    }
    
    // AddSection adds another DWARF section by name. The name should be a
    // DWARF section name such as ".debug_addr", ".debug_str_offsets", and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/PublishArtifactNotationParserFactory.java

            private DecoratingConverter() {
                super(PublishArtifact.class);
            }
    
            @Override
            protected ConfigurablePublishArtifact parseType(PublishArtifact notation) {
                return instantiator.newInstance(DecoratingPublishArtifact.class, taskDependencyFactory, notation);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ModuleVersionSelectorParsers.java

                visitor.candidate("Version catalog type-safe accessors.");
            }
    
            @Override
            protected ModuleVersionSelector parseType(ProviderConvertible<?> notation) {
                return providerConverter.parseType(notation.asProvider());
            }
    
        }
    
        static class ProviderConverter extends TypedNotationConverter<Provider<?>, ModuleVersionSelector> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/NativeDependencyNotationParser.java

            private LibraryConverter() {
                super(NativeLibrarySpec.class);
            }
    
            @Override
            protected NativeLibraryRequirement parseType(NativeLibrarySpec notation) {
                return notation.getShared();
            }
        }
    
        private static class NativeLibraryRequirementMapNotationConverter extends MapNotationConverter<NativeLibraryRequirement> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_dialect.h

    namespace compiler {
    
    class MlrtDialect : public mlir::Dialect {
     public:
      explicit MlrtDialect(mlir::MLIRContext *context);
      static llvm::StringRef getDialectNamespace() { return "mlrt"; }
    
      mlir::Type parseType(mlir::DialectAsmParser &parser) const override;
      void printType(mlir::Type type, mlir::DialectAsmPrinter &os) const override;
    };
    
    // The MLIR type represents a C++ mlrt::Future.
    class FutureType
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/artifact/IvyArtifactNotationParserFactory.java

            private ArchiveTaskNotationConverter() {
                super(AbstractArchiveTask.class);
            }
    
            @Override
            protected IvyArtifact parseType(AbstractArchiveTask archiveTask) {
                return instantiator.newInstance(ArchiveTaskBasedIvyArtifact.class, archiveTask, publicationCoordinates, taskDependencyFactory);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.h

    class TensorflowMlrtDialect : public mlir::Dialect {
     public:
      explicit TensorflowMlrtDialect(mlir::MLIRContext *context);
      static llvm::StringRef getDialectNamespace() { return "tf_mlrt"; }
    
      mlir::Type parseType(mlir::DialectAsmParser &parser) const override;
      void printType(mlir::Type type, mlir::DialectAsmPrinter &os) const override;
    };
    
    // The MLIR type represents a tensorflow::Tensor.
    class TFTensorType
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback.h

    // Dialect for fallback operations.
    class FallbackDialect : public Dialect {
     public:
      explicit FallbackDialect(MLIRContext *context);
      static StringRef getDialectNamespace() { return "tfrt_fallback"; }
    
      Type parseType(DialectAsmParser &parser) const override;
      void printType(Type type, DialectAsmPrinter &os) const override;
    };
    
    // The MLIR type represents a tensorflow::Tensor.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.cc

          >();
    
      addOperations<
    #define GET_OP_LIST
    #include "tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_ops.cpp.inc"
          >();
    }
    
    // Parse a type registered to this dialect.
    mlir::Type TensorflowMlrtDialect::parseType(
        mlir::DialectAsmParser &parser) const {
      llvm::StringRef keyword;
      if (parser.parseKeyword(&keyword)) return mlir::Type();
    
      if (keyword == "tensor") return TFTensorType::get(getContext());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top