Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 69 for __callback (0.38 sec)

  1. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

        }
    
        protected void writeJsonResponse(final int status, final String body) {
            final String callback = LaRequestUtil.getOptionalRequest().map(req -> req.getParameter("callback")).orElse(null);
            final boolean isJsonp = ComponentUtil.getFessConfig().isApiJsonpEnabled() && StringUtil.isNotBlank(callback);
    
            final HttpServletResponse response = LaResponseUtil.getResponse();
            response.setStatus(status);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            then:
            noExceptionThrown()
    
            where:
            methods << getQueryMethods() + getMutatingMethods()
        }
    
        def "fires build operation when emitting added callback and reestablishes user code context"() {
            given:
            containerSupportsBuildOperations()
    
            UserCodeApplicationId id1 = null
            userCodeApplicationContext.apply(Stub(UserCodeSource)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                }
                callback.run();
                break;
            default:
                ComponentUtil.getCurlHelper().post("/_configsync/flush").execute(response -> {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Flushed config files: {} => {}", fesenType, response.getContentAsString());
                    }
                    callback.run();
                }, e -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    	arg := "0"
    	if len(paramnames) > 0 {
    		arg = "uintptr(unsafe.Pointer(&p0))"
    	} else if !void {
    		arg = "uintptr(unsafe.Pointer(&r1))"
    	}
    
    	noCallback := p.noCallbacks[n.C]
    	if noCallback {
    		// disable cgocallback, will check it in runtime.
    		fmt.Fprintf(fgo2, "\t_Cgo_no_callback(true)\n")
    	}
    
    	prefix := ""
    	if n.AddError {
    		prefix = "errno := "
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/runtime/framework.go

    	return func(o *frameworkOptions) {
    		o.parallelizer = parallelize.NewParallelizer(parallelism)
    	}
    }
    
    // CaptureProfile is a callback to capture a finalized profile.
    type CaptureProfile func(config.KubeSchedulerProfile)
    
    // WithCaptureProfile sets a callback to capture the finalized profile.
    func WithCaptureProfile(c CaptureProfile) Option {
    	return func(o *frameworkOptions) {
    		o.captureProfile = c
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_server_test.go

    	}
    
    	if test.validate != nil {
    		if err := test.validate(connState); err != nil {
    			t.Fatalf("validate callback returned error: %s", err)
    		}
    	}
    
    	if write {
    		path := test.dataPath()
    		out, err := os.OpenFile(path, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0644)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. okhttp/api/okhttp.api

    	public static final field TYPE_A I
    	public static final field TYPE_AAAA I
    	public abstract fun query (Ljava/lang/String;Lokhttp3/AsyncDns$Callback;)V
    }
    
    public abstract interface class okhttp3/AsyncDns$Callback {
    	public abstract fun onFailure (Ljava/lang/String;Ljava/io/IOException;)V
    	public abstract fun onResponse (Ljava/lang/String;Ljava/util/List;)V
    }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  8. src/index/suffixarray/sais2.go

    	// such that text[i] is an L-character and text[i+1] is an S-character.
    	// That is, i+1 is the position of the start of an LMS-substring.
    	// These could be hoisted out into a function with a callback,
    	// but at a significant speed cost. Instead, we just write these
    	// seven lines a few times in this source file. The copies below
    	// refer back to the pattern established by this original as the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. src/internal/trace/order.go

    func (o *ordering) advanceGoDestroySyscall(ev *baseEvent, evt *evTable, m ThreadID, gen uint64, curCtx schedCtx) (schedCtx, bool, error) {
    	// This event indicates that a goroutine created for a
    	// cgo callback is disappearing, either because the callback
    	// ending or the C thread that called it is being destroyed.
    	//
    	// Also, treat this as if we lost our P too.
    	// The thread ID may be reused by the platform and we'll get
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    			linesOut = append(linesOut, line)
    		} else {
    			linesOut = append(linesOut, "")
    
    			// #cgo (nocallback|noescape) <function name>
    			if fields := strings.Fields(l); len(fields) == 3 {
    				directive := fields[1]
    				funcName := fields[2]
    				if directive == "nocallback" {
    					fatalf("#cgo nocallback disabled until Go 1.23")
    					f.NoCallbacks[funcName] = true
    				} else if directive == "noescape" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top