Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,107 for IsStream (0.14 sec)

  1. src/main/java/org/codelibs/fess/helper/OsddHelper.java

            return osddFile != null;
        }
    
        public StreamResponse asStream() {
            if (osddFile == null) {
                throw ComponentUtil.getResponseManager().new404("Unsupported Open Search Description Document response.");
            }
    
            return new StreamResponse(osddFile.getName()).contentType(contentType + "; charset=" + encoding).stream(out -> {
                try (InputStream ins = new FileInputStream(osddFile)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    inline void PrintTo(const signed char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    inline void PrintTo(signed char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    inline void PrintTo(const unsigned char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    inline void PrintTo(unsigned char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    inline void PrintTo(const signed char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    inline void PrintTo(signed char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    inline void PrintTo(const unsigned char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    inline void PrintTo(unsigned char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.cc

                            std::unique_ptr<llvm::raw_ostream> file)
          : name(name), ostream(std::move(file)) {}
    
      llvm::StringRef description() override { return name; }
      raw_ostream& os() override { return *ostream; }
    
     private:
      std::string name;
      std::unique_ptr<llvm::raw_ostream> ostream;
    };
    
    // MLIR crash reproducer which reports failures to the crash analysis system.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 03:03:46 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. cmd/postpolicyform.go

    	var buf bytes.Buffer
    	e := json.NewEncoder(&buf)
    	d := jstream.NewDecoder(r, 0).ObjectAsKVS()
    	sset := set.NewStringSet()
    	for mv := range d.Stream() {
    		var kvs jstream.KVS
    		if mv.ValueType == jstream.Object {
    			// This is a JSON object type (that preserves key order)
    			kvs = mv.Value.(jstream.KVS)
    			for _, kv := range kvs {
    				if sset.Contains(kv.Key) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/converter_gen.cc

      }
      return 0;
    }
    
    static void EmitOptionBuilders(const RecordKeeper &record_keeper,
                                   const std::vector<Record *> &defs,
                                   raw_ostream *ostream) {
      raw_ostream &os = *ostream;
    
      const auto attr_type = record_keeper.getClass("Attr");
      for (const auto *def : defs) {
        const int has_options = HasOptions(*def);
        // TFLite ops without options are skipped over.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/storage/ApiAdminStorageAction.java

            if (StringUtil.isEmpty(pi.getName())) {
                throwValidationErrorApi(messages -> messages.addErrorsStorageFileNotFound(GLOBAL));
            }
            return asStream(pi.getName()).contentTypeOctetStream().stream(out -> {
                try {
                    downloadObject(getObjectName(pi.getPath(), pi.getName()), out);
                } catch (final StorageException e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/esreq/AdminEsreqAction.java

                        }
                        throw e1;
                    }
                    return asStream("es_" + ComponentUtil.getSystemHelper().getCurrentTimeAsLong() + ".json").contentTypeOctetStream()
                            .stream(out -> {
                                try (final InputStream in = new FileInputStream(tempFile)) {
                                    out.write(in);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/libtf/value_iostream.h

    }
    
    class TaggedValueIOStreamVisitor {
      std::ostream& o_;
    
     public:
      explicit TaggedValueIOStreamVisitor(std::ostream& o) : o_(o) {}
    
      std::ostream& operator()(const ListPtr& x) {
        OutList(o_, x->begin(), x->end(), '[', ']');
        return o_;
      }
      std::ostream& operator()(const TuplePtr& x) {
        OutList(o_, x->begin(), x->end(), '(', ')');
        return o_;
      }
      std::ostream& operator()(const DictPtr& x) {
        o_ << *x;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/string_util.h

      LoggableAttribute(mlir::Attribute& v) : v(v) {}
    };
    std::ostream& operator<<(std::ostream& o, const LoggableAttribute& attr);
    
    struct LoggableStringRef {
      const llvm::StringRef& v;
      // NOLINTNEXTLINE(google-explicit-constructor)
      LoggableStringRef(const llvm::StringRef& v) : v(v) {}
    };
    std::ostream& operator<<(std::ostream& o, const LoggableStringRef& ref);
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 15 19:47:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top