Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 412 for dispatchTo (0.19 sec)

  1. subprojects/core-api/src/main/java/org/gradle/internal/metaobject/MethodMixIn.java

    /**
     * A decorated domain object type may optionally implement this interface to dynamically expose methods in addition to those declared statically on the type.
     *
     * Note that when a type implements this interface, dynamic Groovy dispatch will not be used to discover opaque methods. That is, methods such as methodMissing() will be ignored.
     */
    public interface MethodMixIn {
        MethodAccess getAdditionalMethods();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 27 06:24:30 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/TestTls13Request.kt

        .build()
    
    private fun testClient(
      urls: List<String>,
      client: OkHttpClient,
    ) {
      try {
        for (url in urls) {
          sendRequest(client, url)
        }
      } finally {
        client.dispatcher.executorService.shutdownNow()
        client.connectionPool.evictAll()
      }
    }
    
    private fun buildClient(vararg specs: ConnectionSpec): OkHttpClient {
      return OkHttpClient.Builder()
        .connectionSpecs(listOf(*specs))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/example/types.go

    	// If not specified, the pod will not have a domainname at all.
    	// +optional
    	Subdomain string
    	// If specified, the pod will be dispatched by specified scheduler.
    	// If not specified, the pod will be dispatched by default scheduler.
    	// +optional
    	SchedulerName string
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // PodList is a list of Pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 03 06:34:52 UTC 2019
    - 5.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DispatchingFailureIntegrationSpec.groovy

            file("settings.gradle") << "// empty"
            def projectdir = file("project dir").createDir()
    
            //requesting x failing builds creates enough stress to expose issues with unsynchronized dispatch
            50.times {
                executer.usingProjectDirectory(projectdir)
                        .withTasks("tasks")
                        .runWithFailure()
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ListenerNotificationException.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.internal.event;
    
    import org.gradle.internal.dispatch.MethodInvocation;
    import org.gradle.internal.exceptions.Contextual;
    import org.gradle.internal.exceptions.DefaultMultiCauseException;
    
    import javax.annotation.Nullable;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. dbflute_fess/dfprop/lastafluteMap.dfprop

        # package for your domain name, e.g. com.example
        ; domainPackage = org.codelibs.fess
    
        # keywords for environment properties, same as directory name
        ; environmentList = list:{}
    
        # environment dispatch by lasta.env of system property?
        ; isUseLastaEnv = false
    
        # settings for web applications
        ; appMap = map:{
            ; fess = map:{
                ; path = ..
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 20 08:20:11 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/TestConnection.groovy

        private final BlockingQueue<InterHubMessage> outgoing = new LinkedBlockingQueue<>()
        private final BlockingQueue<InterHubMessage> outgoingBuffered = new LinkedBlockingQueue<>()
    
        @Override
        void dispatch(InterHubMessage message) {
            outgoingBuffered.put(message)
        }
    
        @Override
        void flush() {
            outgoingBuffered.drainTo(outgoing)
        }
    
        @Override
        InterHubMessage receive() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/KotlinDeprecationErrorTest.kt

        val headers: Headers? = part.headers()
        val body: RequestBody = part.body()
      }
    
      @Test @Disabled
      fun okHttpClient() {
        val client = OkHttpClient()
        val dispatcher: Dispatcher = client.dispatcher()
        val proxy: Proxy? = client.proxy()
        val protocols: List<Protocol> = client.protocols()
        val connectionSpecs: List<ConnectionSpec> = client.connectionSpecs()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/ConnectionSet.java

            ConnectionState state = new ConnectionState(this, connection, queue);
            connections.add(state);
            return state;
        }
    
        /**
         * Called when all dispatch and receive has completed on the given connection.
         */
        public void finished(ConnectionState connectionState) {
            connections.remove(connectionState);
            if (stopping) {
                maybeStop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/DefaultBuildController.java

            }
        }
    
        @Override
        public void dispatch(Object value) {
            SerializedPayload serializedModel = payloadSerializer.serialize(value);
            StreamedValue streamedValue = new StreamedValue(serializedModel);
            BuildEventConsumer buildEventConsumer = this.buildEventConsumer;
            sideEffectExecutor.runIsolatableSideEffect(() -> buildEventConsumer.dispatch(streamedValue));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:56:14 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top