Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for dispatchTo (0.15 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/types.go

    	// +optional
    	Subdomain string `json:"subdomain,omitempty" protobuf:"bytes,17,opt,name=subdomain"`
    	// If specified, the carp will be dispatched by specified scheduler.
    	// If not specified, the carp will be dispatched by default scheduler.
    	// +optional
    	SchedulerName string `json:"schedulername,omitempty" protobuf:"bytes,19,opt,name=schedulername"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // If not specified, the carp will not have a domainname at all.
      // +optional
      optional string subdomain = 17;
    
      // If specified, the carp will be dispatched by specified scheduler.
      // If not specified, the carp will be dispatched by default scheduler.
      // +optional
      optional string schedulername = 19;
    }
    
    // CarpStatus represents information about the status of a carp. Status may trail the actual
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SmartCastProvider.kt

            return listOfNotNull(
                smartCastedImplicitReceiver(smartCasts.receiverTypes[resolvedCall.dispatchReceiver], KaImplicitReceiverSmartCastKind.DISPATCH),
                smartCastedImplicitReceiver(smartCasts.receiverTypes[resolvedCall.extensionReceiver], KaImplicitReceiverSmartCastKind.EXTENSION)
            )
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSmartCastProvider.kt

            return Objects.hash(backingType, backingKind)
        }
    }
    
    public typealias KtImplicitReceiverSmartCast = KaImplicitReceiverSmartCast
    
    public enum class KaImplicitReceiverSmartCastKind {
        DISPATCH, EXTENSION
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ClientProvidedPhasedActionRunner.java

                BuildEventConsumer buildEventConsumer = ClientProvidedPhasedActionRunner.this.buildEventConsumer;
                sideEffectExecutor.runIsolatableSideEffect(() -> buildEventConsumer.dispatch(phaseResult));
            }
    
            @Nullable
            @Override
            public SerializedPayload getResult() {
                return null;
            }
    
            @Override
            public boolean isRunTasks() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:56:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/example/v1/types.go

    	// +optional
    	Subdomain string `json:"subdomain,omitempty" protobuf:"bytes,17,opt,name=subdomain"`
    	// If specified, the pod will be dispatched by specified scheduler.
    	// If not specified, the pod will be dispatched by default scheduler.
    	// +optional
    	SchedulerName string `json:"schedulername,omitempty" protobuf:"bytes,19,opt,name=schedulername"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. maven-settings-builder/pom.xml

        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-settings</artifactId>
        </dependency>
        <dependency>
          <groupId>org.codehaus.plexus</groupId>
          <artifactId>plexus-sec-dispatcher</artifactId>
        </dependency>
        <dependency>
          <groupId>org.codehaus.plexus</groupId>
          <artifactId>plexus-cipher</artifactId>
        </dependency>
    
        <dependency>
          <groupId>javax.inject</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationNotificationsFixture.groovy

    /**
     * Implicitly tests that the build emits usable build operation notifications,
     * with the listener subscribing as the root project is loaded.
     *
     * This exercises the store-and-replay behaviour of the notification dispatcher
     * that allows a listener to observe all of the notifications from the very start of the build.
     *
     * This fixture reflectively exercises the details/results objects of the notifications,
     * ensuring that they are “usable”.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/filters/wrap.go

    	return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		defer runtime.HandleCrash(func(err interface{}) {
    			crashHandler(w, req, err)
    		})
    
    		// Dispatch to the internal handler
    		handler.ServeHTTP(w, req)
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/process/internal/worker/request/Receiver.java

     */
    
    package org.gradle.process.internal.worker.request;
    
    import org.gradle.api.NonNullApi;
    import org.gradle.api.problems.internal.Problem;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.dispatch.StreamCompletion;
    import org.gradle.internal.logging.events.LogEvent;
    import org.gradle.internal.logging.events.OutputEventListener;
    import org.gradle.internal.logging.events.StyledTextOutputEvent;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top