Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 538 for Chandler (0.35 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ChangingValueHandler.java

        private List<Action<T>> handlers;
    
        @Override
        public void onValueChange(Action<T> action) {
            if (handlers == null) {
                handlers = new ArrayList<>();
            }
            handlers.add(action);
        }
    
        public void handle(T previousValue) {
            if (handlers != null) {
                for (Action<T> handler : handlers) {
                    handler.execute(previousValue);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testcshared/testdata/main5.c

    	// Check that the Go code saw SIGIO.
    	awaitSIGIO = (void (*)(void))dlsym(handle, "AwaitSIGIO");
    	if (awaitSIGIO == NULL) {
    		fprintf(stderr, "%s\n", dlerror());
    		exit(EXIT_FAILURE);
    	}
    
    	if (verbose) {
    		fprintf(stderr, "calling AwaitSIGIO\n");
    	}
    
    	awaitSIGIO();
    
    	if (sigioSeen != 0) {
    		fprintf(stderr, "C handler saw SIGIO when only Go handler should have\n");
    		exit(EXIT_FAILURE);
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testcshared/testdata/main4.c

    	*p = '\0';
    	if (i > 0) {
    		recur(i - 1, a);
    	}
    }
    
    // Signal handler that uses up more stack space than a goroutine will have.
    static void ioHandler(int signo, siginfo_t* info, void* ctxt) {
    	char a[1024];
    
    	recur(4, a);
    	sigioSeen = 1;
    }
    
    static jmp_buf jmp;
    static char* nullPointer;
    
    // Signal handler for SIGSEGV on a C thread.
    static void segvHandler(int signo, siginfo_t* info, void* ctxt) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractorTest.java

    import org.dbflute.utflute.core.PlainTestCase;
    import org.mortbay.jetty.Handler;
    import org.mortbay.jetty.HttpConnection;
    import org.mortbay.jetty.HttpMethods;
    import org.mortbay.jetty.Server;
    import org.mortbay.jetty.handler.AbstractHandler;
    import org.mortbay.jetty.handler.DefaultHandler;
    import org.mortbay.jetty.handler.HandlerList;
    
    /**
     * @author shinsuke
     *
     */
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testcarchive/testdata/main2.c

    	*p = '\0';
    	if (i > 0) {
    		recur(i - 1, a);
    	}
    }
    
    static void pipeHandler(int signo, siginfo_t* info, void* ctxt) {
    	sigpipeSeen = 1;
    }
    
    // Signal handler that uses up more stack space than a goroutine will have.
    static void ioHandler(int signo, siginfo_t* info, void* ctxt) {
    	char a[1024];
    
    	recur(4, a);
    	sigioSeen = 1;
    }
    
    static jmp_buf jmp;
    static char* nullPointer;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testcarchive/testdata/main4.c

    #include "libgo4.h"
    
    #ifdef _AIX
    // On AIX, CSIGSTKSZ is too small to handle Go sighandler.
    #define CSIGSTKSZ 0x4000
    #else
    #define CSIGSTKSZ SIGSTKSZ
    #endif
    
    static void die(const char* msg) {
    	perror(msg);
    	exit(EXIT_FAILURE);
    }
    
    static int ok = 1;
    
    static void ioHandler(int signo, siginfo_t* info, void* ctxt) {
    }
    
    // Set up the SIGIO signal handler in a high priority constructor, so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/vcweb/script.go

    }
    
    func scriptHandle() script.Cmd {
    	return script.Command(
    		script.CmdUsage{
    			Summary: "set the HTTP handler that will serve the script's output",
    			Args:    "handler [dir]",
    			Detail: []string{
    				"The handler will be passed the script's current working directory and environment as arguments.",
    				"Valid handlers include 'dir' (for general http.Dir serving), 'bzr', 'fossil', 'git', and 'hg'",
    			},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 9K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/artifact/handler/manager/DefaultArtifactHandlerManager.java

        }
    
        @Override
        public void addHandlers(Map<String, ArtifactHandler> handlers) {
            throw new UnsupportedOperationException("Adding handlers programmatically is not supported anymore");
        }
    
        @Deprecated
        public Set<String> getHandlerTypes() {
            throw new UnsupportedOperationException("Querying handlers programmatically is not supported anymore");
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/vcweb/hg.go

    	"slices"
    	"strings"
    	"sync"
    	"time"
    )
    
    type hgHandler struct {
    	once      sync.Once
    	hgPath    string
    	hgPathErr error
    }
    
    func (h *hgHandler) Available() bool {
    	h.once.Do(func() {
    		h.hgPath, h.hgPathErr = exec.LookPath("hg")
    	})
    	return h.hgPathErr == nil
    }
    
    func (h *hgHandler) Handler(dir string, env []string, logger *log.Logger) (http.Handler, error) {
    	if !h.Available() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 02:52:19 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. fess-crawler-es/src/test/java/org/codelibs/fess/crawler/util/CrawlerWebServer.java

    import org.codelibs.core.io.FileUtil;
    import org.codelibs.fess.crawler.exception.CrawlerSystemException;
    import org.mortbay.jetty.Handler;
    import org.mortbay.jetty.Server;
    import org.mortbay.jetty.handler.DefaultHandler;
    import org.mortbay.jetty.handler.HandlerList;
    import org.mortbay.jetty.handler.ResourceHandler;
    import org.mortbay.log.Log;
    
    /**
     * @author shinsuke
     *
     */
    public class CrawlerWebServer {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top