Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,302 for deliver (0.09 sec)

  1. pkg/volume/flexvolume/driver-call.go

    		Command: command,
    		Timeout: timeout,
    		plugin:  plugin,
    		args:    []string{command},
    	}
    }
    
    // Append appends arg into driver call argument list
    func (dc *DriverCall) Append(arg string) {
    	dc.args = append(dc.args, arg)
    }
    
    // AppendSpec appends volume spec to driver call argument list
    func (dc *DriverCall) AppendSpec(spec *volume.Spec, host volume.VolumeHost, extraOptions map[string]string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 25 02:39:55 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/queue/MultiChannelQueue.java

            if (message.getDelivery() == InterHubMessage.Delivery.Stateful) {
                initializer.onStatefulMessage(message);
            }
            if (message instanceof Routable) {
                Routable routableMessage = (Routable) message;
                getChannel(routableMessage.getChannel()).dispatch(message);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. pkg/volume/flexvolume/driver-call_test.go

    Mikaƫl Cluseau <******@****.***> 1503456285 +1100
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 11:18:58 UTC 2017
    - 894 bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/protocol/RejectedMessage.java

        }
    
        @Override
        public String toString() {
            return String.format("[%s channel:%s, payload:%s]", getClass().getSimpleName(), channel, payload);
        }
    
        @Override
        public Delivery getDelivery() {
            return Delivery.AllHandlers;
        }
    
        @Override
        public ChannelIdentifier getChannel() {
            return channel;
        }
    
        public Object getPayload() {
            return payload;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/JavaEcosystemVariantDerivationStrategy.java

                        componentId.getGroup(),
                        componentId.getModule(),
                        componentId.getVersion()
                ), enforced ? "-derived-enforced-platform" : "-derived-platform")
            );
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    	// notifies the podWorkers to reconcile the state of the pod (for instance, if a container dies and needs to
    	// be restarted).
    	pleg pleg.PodLifecycleEventGenerator
    
    	// eventedPleg supplements the pleg to deliver edge-driven container changes with low-latency.
    	eventedPleg pleg.PodLifecycleEventGenerator
    
    	// Store kubecontainer.PodStatus for all pods.
    	podCache kubecontainer.Cache
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/RemovePreviousOutputsStep.java

        private final Deleter deleter;
        private final OutputChangeListener outputChangeListener;
        private final Step<? super C, ? extends R> delegate;
    
        public RemovePreviousOutputsStep(
            Deleter deleter,
            OutputChangeListener outputChangeListener,
            Step<? super C, ? extends R> delegate
        ) {
            this.deleter = deleter;
            this.outputChangeListener = outputChangeListener;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/HandleStaleOutputsStep.java

        private final Deleter deleter;
        private final OutputChangeListener outputChangeListener;
        private final OutputFilesRepository outputFilesRepository;
        private final Step<? super C, ? extends R> delegate;
    
        public HandleStaleOutputsStep(
            BuildOperationRunner buildOperationRunner,
            BuildOutputCleanupRegistry cleanupRegistry,
            Deleter deleter,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/HandleStaleOutputsStepTest.groovy

    import org.gradle.internal.execution.history.OutputFilesRepository
    import org.gradle.internal.file.Deleter
    import org.gradle.internal.file.TreeType
    
    class HandleStaleOutputsStepTest extends StepSpec<WorkspaceContext> implements SnapshotterFixture {
        def cleanupRegistry = Mock(BuildOutputCleanupRegistry)
        def deleter = Mock(Deleter)
        def outputChangeListener = Mock(OutputChangeListener)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. cmd/sftp-server-driver.go

    Sveinn <******@****.***> 1717573873 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top