Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 93 for IMMEDIATE (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/link/internal/ld/lib.go

    			argv = append(argv, "-shared")
    		}
    	}
    
    	var altLinker string
    	if ctxt.IsELF && (ctxt.DynlinkingGo() || *flagBindNow) {
    		// For ELF targets, when producing dynamically linked Go code
    		// or when immediate binding is explicitly requested,
    		// we force all symbol resolution to be done at program startup
    		// because lazy PLT resolution can use large amounts of stack at
    		// times we cannot allow it to do so.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. CHANGELOG/CHANGELOG-1.28.md

    - Enabled use of pods with volumes and user namespaces. The feature gate was renamed from `UserNamespacesStatelessPodsSupport`...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.30.md

       ([#120111](https://github.com/kubernetes/kubernetes/pull/120111), [@newtondev](https://github.com/newtondev))
    - When using a claim with immediate allocation and a pod referencing that claim couldn't get scheduled, the scheduler incorrectly may have tried to deallocate that claim. ([#122415](https://github.com/kubernetes/kubernetes/pull/122415), [@pohly](https://github.com/pohly))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.29.md

    - In the `wait.PollUntilContextTimeout` function, if `immediate` is true, the condition will now be invoked before waiting, guaranteeing that the condition is invoked at least once and then wait a interval before executing again. ([#119762](https://github.com/kubernetes/kubernetes/pull/119762), [@AxeZhan](ht...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  10. 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