Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for IMMEDIATE (0.26 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            where:
            scheduled | dependency
            true      | 'project(":lib")'
            false     | '"test:a:1.3"'
            type = scheduled ? 'scheduled' : 'immediate'
        }
    
        def "transformation attribute cycles are permitted"() {
            mavenRepo.module("test", "a", "1.0").publish()
    
            buildFile << """
                repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *
     * @param <V> the type of the value of this step
     * @since 30.0
     */
    // TODO(dpb): Consider reusing one CloseableList for the entire pipeline, modulo combinations.
    @DoNotMock("Use ClosingFuture.from(Futures.immediate*Future)")
    @J2ktIncompatible
    @ElementTypesAreNonnullByDefault
    // TODO(dpb): GWT compatibility.
    public final class ClosingFuture<V extends @Nullable Object> {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller_test.go

    			}
    			manager.updateJob(logger, tc.oldJob, newJob)
    			gotRequeuedImmediately := manager.queue.Len() > 0
    			if tc.wantRequeuedImmediately != gotRequeuedImmediately {
    				t.Fatalf("Want immediate requeue: %v, got immediate requeue: %v", tc.wantRequeuedImmediately, gotRequeuedImmediately)
    			}
    		})
    	}
    }
    
    func TestGetPodCreationInfoForIndependentIndexes(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *
     * @param <V> the type of the value of this step
     * @since 30.0
     */
    // TODO(dpb): Consider reusing one CloseableList for the entire pipeline, modulo combinations.
    @DoNotMock("Use ClosingFuture.from(Futures.immediate*Future)")
    @J2ktIncompatible
    @ElementTypesAreNonnullByDefault
    // TODO(dpb): GWT compatibility.
    public final class ClosingFuture<V extends @Nullable Object> {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  5. cmd/metrics-v2.go

    func getTransitionMissedTasksMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: ilmSubsystem,
    		Name:      transitionMissedTasks,
    		Help:      "Number of missed immediate ILM transition tasks",
    		Type:      gaugeMetric,
    	}
    }
    
    func getExpiryPendingTasksMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: ilmSubsystem,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller_test.go

    			initialDelay := manager.failedPodsBackoff.Get(backoffKey)
    			if initialDelay <= 0 {
    				t.Fatal("Initial delay is expected to be set.")
    			}
    
    			resetCounters(manager)
    
    			// Immediate (second) sync gets limited by the backoff
    			expectSyncDaemonSets(t, manager, ds, podControl, 0, 0, 0)
    			delay := manager.failedPodsBackoff.Get(backoffKey)
    			if delay != initialDelay {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  7. src/debug/elf/elf.go

    func (i R_SPARC) GoString() string { return stringName(uint32(i), rsparcStrings, true) }
    
    // Magic number for the elf trampoline, chosen wisely to be an immediate value.
    const ARM_MAGIC_TRAMP_NUMBER = 0x5c000003
    
    // ELF32 File header.
    type Header32 struct {
    	Ident     [EI_NIDENT]byte /* File identification. */
    	Type      uint16          /* File type. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    		t.Fatal(err)
    	}
    
    	if err := cn.(*net.TCPConn).CloseWrite(); err != nil {
    		t.Fatal(err)
    	}
    	<-done
    }
    
    // Like TestServerHijackGetsBackgroundByte above but sending a
    // immediate 1MB of data to the server to fill up the server's 4KB
    // buffer.
    func TestServerHijackGetsBackgroundByte_big(t *testing.T) {
    	run(t, testServerHijackGetsBackgroundByte_big, []testMode{http1Mode})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top