Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for FReopen (0.17 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif
    inline FILE* FOpen(const char* path, const char* mode) {
      return fopen(path, mode);
    }
    #if !GTEST_OS_WINDOWS_MOBILE
    inline FILE *FReopen(const char* path, const char* mode, FILE* stream) {
      return freopen(path, mode, stream);
    }
    inline FILE* FDOpen(int fd, const char* mode) { return fdopen(fd, mode); }
    #endif
    inline int FClose(FILE* fp) { return fclose(fp); }
    #if !GTEST_OS_WINDOWS_MOBILE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif
    inline FILE* FOpen(const char* path, const char* mode) {
      return fopen(path, mode);
    }
    #if !GTEST_OS_WINDOWS_MOBILE
    inline FILE *FReopen(const char* path, const char* mode, FILE* stream) {
      return freopen(path, mode, stream);
    }
    inline FILE* FDOpen(int fd, const char* mode) { return fdopen(fd, mode); }
    #endif
    inline int FClose(FILE* fp) { return fclose(fp); }
    #if !GTEST_OS_WINDOWS_MOBILE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    					// TODO: find a more elegant approach to synchronizing returning requests
    					if(this.data.core.reopen) { clearTimeout(this.data.core.reopen); }
    					this.data.core.reopen = setTimeout(function () { _this.__callback({}, _this); }, 50);
    					this.data.core.refreshing = false;
    					this.reopen();
    				}
    			},
    			reopen : function () {
    				var _this = this;
    				if(this.data.core.to_open.length) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    	if ctxt.LinkMode != LinkInternal {
    		return
    	}
    	var h *Hostobj
    
    	for i := 0; i < len(hostobj); i++ {
    		h = &hostobj[i]
    		f, err := bio.Open(h.file)
    		if err != nil {
    			Exitf("cannot reopen %s: %v", h.pn, err)
    		}
    		f.MustSeek(h.off, 0)
    		if h.ld == nil {
    			Errorf(nil, "%s: unrecognized object file format", h.pn)
    			continue
    		}
    		h.ld(ctxt, f, h.pkg, h.length, h.pn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    }
    
    def TF_CloseSummaryWriterOp : TF_Op<"CloseSummaryWriter", []> {
      let summary = "Flushes and closes the summary writer.";
    
      let description = [{
    Also removes it from the resource manager. To reopen, use another
    CreateSummaryFileWriter op.
    
    writer: A handle to the summary writer resource.
      }];
    
      let arguments = (ins
        Arg<TF_ResourceTensor, "", [TF_SummaryFree]>:$writer
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top