Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 141 for reopen (0.11 sec)

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

        }
    
    
        /**
         * @return whether the stream is open
         */
        public boolean isOpen () {
            return this.handle != null && this.handle.isValid();
        }
    
    
        protected synchronized SmbFileHandleImpl ensureOpen () throws CIFSException {
            if ( !isOpen() ) {
                // one extra acquire to keep this open till the stream is released
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:14:04 UTC 2021
    - 11.9K bytes
    - Viewed (0)
  2. pkg/kubelet/network/dns/dns_test.go

    		{"options ndots:1 ndots:5 attempts:2", []string{}, []string{}, []string{"ndots:5", "attempts:2"}, false},
    		{"options ndots:1 edns0 attempts:2 single-request-reopen", []string{}, []string{}, []string{"edns0", "attempts:2", "single-request-reopen", "ndots:1"}, false},
    		{"options ndots:1\noptions ndots:5 attempts:3", []string{}, []string{}, []string{"ndots:5", "attempts:3"}, false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbCopyUtil.java

                            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);
                            }
    
                            // FSCTL_SRV_COPYCHUNK_WRITE allows to open the file for writing only, FSCTL_SRV_COPYCHUNK also
                            // needs read access
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 17.1K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/link/internal/ld/lib.go

    func hostobjs(ctxt *Link) {
    	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
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. 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)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCacheFactory.java

            this.executorFactory = executorFactory;
            this.buildOperationRunner = buildOperationRunner;
        }
    
        void onOpen(Object cache) {
        }
    
        void onClose(Object cache) {
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 15:54:23 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	// container log manager must start after container runtime is up to retrieve information from container runtime
    	// and inform container to reopen log file after log rotation.
    	kl.containerLogManager.Start()
    	// Adding Registration Callback function for CSI Driver
    	kl.pluginManager.AddHandler(pluginwatcherapi.CSIPlugin, plugincache.PluginHandler(csi.PluginHandler))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (1)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

            try {
                open();
            } catch (Exception e) {
                throw new UncheckedIOException(String.format("Could not open %s.", this), e);
            }
        }
    
        @Override
        public String toString() {
            return "cache " + cacheFile.getName() + " (" + cacheFile + ")";
        }
    
        private void open() throws Exception {
            LOGGER.debug("Opening {}", this);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r55/DefaultEclipseWorkspaceProject.java

        private final String name;
        private final File location;
        private final boolean isOpen;
    
        public DefaultEclipseWorkspaceProject(String name, File location, boolean isOpen) {
            this.name = name;
            this.location = location;
            this.isOpen = isOpen;
        }
    
        public DefaultEclipseWorkspaceProject(String name, File location) {
            this(name, location, true);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top