Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for urlopen (0.21 sec)

  1. src/main/java/jcifs/smb/SmbCopyUtil.java

                                ioff += maxChunkSize;
                            }
    
                            if ( dfd == null || !dfd.isValid() ) {
                                // don't reopen the file for every round if it's not necessary, keep the lock
                                dfd = openCopyTargetFile(dest, src.getAttributes(), !write);
                            }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 17.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    						//
    						// 1. rename current log to rotated log file whose filename contains current timestamp (fmt.Sprintf("%s.%s", log, timestamp))
    						// 2. reopen the container log
    						// 3. if #2 fails, rename rotated log file back to container log
    						//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/database/sql/sql_test.go

    	defer func() { setHookOpenErr(nil) }()
    
    	errs := make(chan error, tryOpen)
    
    	var opening sync.WaitGroup
    	opening.Add(tryOpen)
    
    	setHookOpenErr(func() error {
    		// Wait for all connections to enqueue.
    		opening.Wait()
    		return errOffline
    	})
    
    	for i := 0; i < tryOpen; i++ {
    		go func() {
    			opening.Done() // signal one connection is in flight
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/BUILD

    # TF_LoadLibrary/tf.load_op_library) register their ops and kernels with this
    # shared object directly.
    #
    # For example, from Python tf.load_op_library loads a custom op library (via
    # dlopen() on Linux), the library finds libtensorflow_framework.so (no
    # filesystem search takes place, since libtensorflow_framework.so has already
    # been loaded by pywrap_tensorflow) and registers its ops and kernels via
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  8. src/runtime/asm_arm.s

    // We expect argc and argv to be passed in the usual C ABI registers
    // R0 and R1.
    TEXT _rt0_arm_lib(SB),NOSPLIT,$104
    	// Preserve callee-save registers. Raspberry Pi's dlopen(), for example,
    	// actually cares that R11 is preserved.
    	MOVW	R4, 12(R13)
    	MOVW	R5, 16(R13)
    	MOVW	R6, 20(R13)
    	MOVW	R7, 24(R13)
    	MOVW	R8, 28(R13)
    	MOVW	g, 32(R13)
    	MOVW	R11, 36(R13)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  9. 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)
  10. src/debug/elf/elf.go

    	// Indicates that this object's initialization section be run before any other
    	// objects loaded.
    	DF_1_INITFIRST DynFlag1 = 0x00000020
    	// Indicates that the object cannot be added to a running process with dlopen.
    	DF_1_NOOPEN DynFlag1 = 0x00000040
    	// Indicates the object requires $ORIGIN processing.
    	DF_1_ORIGIN DynFlag1 = 0x00000080
    	// Indicates that the object should use direct binding information.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top