Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for IMMEDIATE (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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