Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 148 for __callback (0.14 sec)

  1. src/cmd/trace/goroutinegen.go

    			// Back-date the event to the start of the trace.
    			start = ctx.startTime
    		}
    		// Write down that we've entered a syscall. Note: we might have no G or P here
    		// if we're in a cgo callback or this is a transition from GoUndetermined
    		// (i.e. the G has been blocked in a syscall).
    		gs.syscallBegin(start, goID, ev.Stack())
    	}
    
    	// Note down the goroutine transition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. src/runtime/traceevent.go

    	traceEvGoCreateSyscall     // goroutine appears in syscall (cgo callback) [timestamp, new goroutine ID]
    	traceEvGoStart             // goroutine starts running [timestamp, goroutine ID, goroutine seq]
    	traceEvGoDestroy           // goroutine ends [timestamp]
    	traceEvGoDestroySyscall    // goroutine ends in syscall (cgo callback) [timestamp]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginAdapter.java

            createPluginService();
        }
    
        @Override
        public void buildFinished(@Nullable Throwable buildFailure) {
            // Ensure that all tasks are complete prior to the buildFinished callback.
            requiredServices.getBackgroundJobExecutors().stop();
    
            if (pluginService != null) {
                pluginService.getEndOfBuildListener().buildFinished(new DefaultDevelocityPluginResult(buildFailure));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. src/crypto/tls/common.go

    	// considering this callback. If normal verification is disabled (on the
    	// client when InsecureSkipVerify is set, or on a server when ClientAuth is
    	// RequestClientCert or RequireAnyClientCert), then this callback will be
    	// considered but the verifiedChains argument will always be nil. When
    	// ClientAuth is NoClientCert, this callback is not called on the server.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

            1 * command.run() >> {
                instant.running
                thread.block()
            }
            1 * onFinishCommand.run()
            0 * _._
        }
    
        def "cancelBuild stops daemon when cancel callback fails and command completes in short time"() {
            def command = Mock(Runnable)
    
            expect:
            notStopped
    
            when:
            coordinator.runCommand(command, "command")
            start {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. src/main/config/openapi/openapi-user.yaml

              description: String to specify a shard for searching
              required: false
              schema:
                type: string
                example: abc
            - name: callback
              in: query
              description: Callback name for using JSONP
              required: false
              schema:
                type: string
          responses:
            '200':
              description: Successful operation
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  7. src/cmd/trace/threadgen.go

    		if from == trace.GoUndetermined {
    			// Back-date the event to the start of the trace.
    			start = ctx.startTime
    		}
    		// Write down that we've entered a syscall. Note: we might have no P here
    		// if we're in a cgo callback or this is a transition from GoUndetermined
    		// (i.e. the G has been blocked in a syscall).
    		gs.syscallBegin(start, ev.Thread(), ev.Stack())
    	}
    
    	// Note down the goroutine transition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/internal/trace/event/go122/event.go

    	EvGoCreateSyscall     // goroutine appears in syscall (cgo callback) [timestamp, new goroutine ID]
    	EvGoStart             // goroutine starts running [timestamp, goroutine ID, goroutine seq]
    	EvGoDestroy           // goroutine ends [timestamp]
    	EvGoDestroySyscall    // goroutine ends in syscall (cgo callback) [timestamp]
    	EvGoStop              // goroutine yields its time, but is runnable [timestamp, reason, stack ID]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/InitScriptExecutionIntegrationTest.groovy

            succeeds()
        }
    
        @Issue("https://github.com/gradle/gradle-native/issues/962")
        @UnsupportedWithConfigurationCache
        def "init script can register all projects hook from within the projects loaded callback of build listener"() {
            given:
            executer.requireOwnGradleUserHomeDir()
    
            and:
            file("buildSrc/settings.gradle").createFile()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_graceful_termination_test.go

    	return d(client, gci, path, timeout)
    }
    
    type result struct {
    	err      error
    	response *http.Response
    }
    
    // wrap a lifecycleSignal so the test can inject its own callback
    type wrappedLifecycleSignal struct {
    	lifecycleSignal
    	before func(lifecycleSignal)
    	after  func(lifecycleSignal)
    }
    
    func (w *wrappedLifecycleSignal) Signal() {
    	if w.before != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 38.3K bytes
    - Viewed (0)
Back to top