Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 182 for callbackasm (0.19 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleIntegrationTest.groovy

                include("a")
    
                // register lifecycle callbacks first
                gradle.lifecycle.beforeProject { println("lifecycle: gradle.lifecycle.beforeProject '\${it.path}'") }
                gradle.lifecycle.afterProject { println("lifecycle: gradle.lifecycle.afterProject '\${it.path}'") }
    
                // register eager callbacks
                gradle.allprojects { println("lifecycle: gradle.allprojects '\${it.path}'") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 16:52:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. guava-gwt/src-super/com/google/common/escape/super/com/google/common/escape/Platform.java

        // instance.  It is always safe to return the same instance because
        // javascript is single-threaded, and only used by blocks that doesn't
        // involve async callbacks.
        return CHAR_BUFFER;
      }
    
      private Platform() {}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/GradleEnterprisePluginEndOfBuildListener.java

    import javax.annotation.Nullable;
    import java.util.Collection;
    
    /**
     * Used to signal the end of build to the plugin.
     *
     * Uses a specific listener to guarantee being invoked after user buildFinished callbacks.
     * Expected to be invoked once for a build tree.
     *
     * Implemented by the Enterprise plugin.
     */
    public interface GradleEnterprisePluginEndOfBuildListener {
    
        interface BuildResult {
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. docs_src/openapi_callbacks/tutorial001.py

    
    @invoices_callback_router.post(
        "{$callback_url}/invoices/{$request.body.id}", response_model=InvoiceEventReceived
    )
    def invoice_notification(body: InvoiceEvent):
        pass
    
    
    @app.post("/invoices/", callbacks=invoices_callback_router.routes)
    def create_invoice(invoice: Invoice, callback_url: Union[HttpUrl, None] = None):
        """
        Create an invoice.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 14 11:59:59 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TaskOriginCrossVersionSpec.groovy

            e.message.startsWith("Unsupported method: TaskOperationDescriptor.getOriginPlugin()")
        }
    
        def "reports task origin for tasks defined in project evaluation listener callbacks"() {
            given:
            buildFile << """
                apply plugin: MyPlugin
                afterEvaluate {
                    task a {}
                }
                class MyPlugin implements Plugin<Project> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprogcgo/dropm.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !plan9 && !windows
    // +build !plan9,!windows
    
    // Test that a sequence of callbacks from C to Go get the same m.
    // This failed to be true on arm and arm64, which was the root cause
    // of issue 13881.
    
    package main
    
    /*
    #include <stddef.h>
    #include <pthread.h>
    
    extern void GoCheckM();
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  7. src/runtime/testdata/testprogcgo/callback.go

    	for i := 0; i < P; i++ {
    		go func() {
    			grow()
    			done <- true
    		}()
    	}
    	for i := 0; i < P; i++ {
    		<-done
    	}
    	// now give these stack frames to cgo callbacks
    	for i := 0; i < P; i++ {
    		go func() {
    			C.foo()
    			done <- true
    		}()
    	}
    	for i := 0; i < P; i++ {
    		<-done
    	}
    
    	if e := extraMInUse.Load(); e != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 14:05:01 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. pilot/pkg/leaderelection/leaderelection.go

    			},
    		}
    	}
    
    	config := k8sleaderelection.LeaderElectionConfig{
    		Lock:          lock,
    		LeaseDuration: l.ttl,
    		RenewDeadline: l.ttl / 2,
    		RetryPeriod:   l.ttl / 4,
    		Callbacks:     callbacks,
    		// When Pilot exits, the lease will be dropped. This is more likely to lead to a case where
    		// to instances are both considered the leaders. As such, if this is intended to be use for mission-critical
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/JAASAuthenticator.java

         *
         * @see javax.security.auth.callback.CallbackHandler#handle(javax.security.auth.callback.Callback[])
         */
        @Override
        public void handle ( Callback[] callbacks ) throws IOException, UnsupportedCallbackException {
            for ( Callback cb : callbacks ) {
                if ( log.isDebugEnabled() ) {
                    log.debug("Got callback " + cb.getClass().getName());
                }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.1K bytes
    - Viewed (0)
  10. src/internal/poll/fd_poll_js.go

    func (pd *pollDesc) wait(mode int, isFile bool) error {
    	if pd.closing {
    		return errClosing(isFile)
    	}
    	if isFile { // TODO(neelance): js/wasm: Use callbacks from JS to block until the read/write finished.
    		return nil
    	}
    	return ErrDeadlineExceeded
    }
    
    func (pd *pollDesc) waitRead(isFile bool) error { return pd.wait('r', isFile) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:12:40 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top