Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 141 for reopen (0.14 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/CompositeProjectSubstitutionCrossVersionSpec.groovy

            new DefaultEclipseWorkspace(temporaryFolder.file("workspace"), projects)
        }
    
    
        EclipseWorkspaceProject project(String name, File location, boolean isOpen = true) {
            new DefaultEclipseWorkspaceProject(name, location, isOpen)
        }
    
        EclipseWorkspaceProject externalProject(String name) {
            new DefaultEclipseWorkspaceProject(name, temporaryFolder.file("external/$name"))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbPipeHandleImpl.java

    
        public String getUncPath () {
            return this.uncPath;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.SmbPipeHandle#isOpen()
         */
        @Override
        public boolean isOpen () {
            return this.open && this.handle != null && this.handle.isValid();
        }
    
    
        /**
         * 
         * {@inheritDoc}
         *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Apr 13 17:05:22 UTC 2020
    - 10.3K bytes
    - Viewed (0)
  3. okhttp-sse/src/test/java/okhttp3/sse/internal/EventSourceRecorder.kt

      private val events = LinkedBlockingDeque<Any>()
      private var cancel = false
    
      fun enqueueCancel() {
        cancel = true
      }
    
      override fun onOpen(
        eventSource: EventSource,
        response: Response,
      ) {
        get().log("[ES] onOpen", Platform.INFO, null)
        events.add(Open(eventSource, response))
        drainCancelQueue(eventSource)
      }
    
      override fun onEvent(
        eventSource: EventSource,
        id: String?,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/runtime/cgo/gcc_android.c

    inittls(void **tlsg, void **tlsbase)
    {
    	pthread_key_t k;
    	int i, err;
    	void *handle, *get_ver, *off;
    
    	// Check for Android Q where we can use the free TLS_SLOT_APP slot.
    	handle = dlopen("libc.so", RTLD_LAZY);
    	if (handle == NULL) {
    		fatalf("inittls: failed to dlopen main program");
    		return;
    	}
    	// android_get_device_api_level is introduced in Android Q, so its mere presence
    	// is enough.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 09 23:17:17 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  5. src/syscall/dirent.go

    	origlen := len(buf)
    	count = 0
    	for max != 0 && len(buf) > 0 {
    		reclen, ok := direntReclen(buf)
    		if !ok || reclen > uint64(len(buf)) {
    			return origlen, count, names
    		}
    		rec := buf[:reclen]
    		buf = buf[reclen:]
    		ino, ok := direntIno(rec)
    		if !ok {
    			break
    		}
    		// See src/os/dir_unix.go for the reason why this condition is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:13:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbPipeOutputStream.java

            this.handle = handle;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.smb.SmbFileOutputStream#isOpen()
         */
        @Override
        public boolean isOpen () {
            return this.handle.isOpen();
        }
    
    
        @Override
        protected synchronized SmbTreeHandleImpl ensureTreeConnected () throws CIFSException {
            return this.handle.ensureTreeConnected();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/plugins/timepicker/bootstrap-timepicker.min.js

    this.showMeridian?" "+this.meridian:"")},hideWidget:function(){this.isOpen!==!1&&(this.$element.trigger({type:"hide.timepicker",time:{value:this.getTime(),hours:this.hour,minutes:this.minute,seconds:this.second,meridian:this.meridian}}),"modal"===this.template&&this.$widget.modal?this.$widget.modal("hide"):this.$widget.removeClass("open"),a(c).off("mousedown.timepicker, touchend.timepicker",this.handleDocumentClick),this.isOpen=!1,this.$widget.detach())},highlightUnit:function(){this.position=th...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 18.2K bytes
    - Viewed (0)
  8. cmd/kubelet/app/server_linux.go

    	watcher, err := inotify.NewWatcher()
    	if err != nil {
    		klog.ErrorS(err, "Unable to create watcher for lockfile")
    		return err
    	}
    	if err = watcher.AddWatch(path, inotify.InOpen|inotify.InDeleteSelf); err != nil {
    		klog.ErrorS(err, "Unable to watch lockfile")
    		watcher.Close()
    		return err
    	}
    	go func() {
    		select {
    		case ev := <-watcher.Event:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 26 09:04:06 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testcshared/testdata/main3.c

    #include <dlfcn.h>
    
    // Tests "main.main" is exported on android/arm,
    // which golang.org/x/mobile/app depends on.
    int main(int argc, char** argv) {
      void* handle = dlopen(argv[1], RTLD_LAZY | RTLD_GLOBAL);
      if (!handle) {
        fprintf(stderr, "ERROR: failed to open the shared library: %s\n",
                dlerror());
        return 2;
      }
    
      uintptr_t main_fn = (uintptr_t)dlsym(handle, "main.main");
      if (!main_fn) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 785 bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testcshared/testdata/main5.c

    		die("sigemptyset");
    	}
    	sa.sa_flags = SA_SIGINFO;
    	if (sigaction(SIGIO, &sa, NULL) < 0) {
    		die("sigaction");
    	}
    
    	if (verbose) {
    		fprintf(stderr, "calling dlopen\n");
    	}
    
    	handle = dlopen(argv[1], RTLD_NOW | RTLD_GLOBAL);
    	if (handle == NULL) {
    		fprintf(stderr, "%s\n", dlerror());
    		exit(EXIT_FAILURE);
    	}
    
    	// At this point there should not be a Go signal handler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top