Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,188 for adown (0.04 sec)

  1. internal/config/heal/help.go

    		},
    		config.HelpKV{
    			Key:         Sleep,
    			Description: `maximum sleep duration between objects to slow down heal operation` + defaultHelpPostfix(Sleep),
    			Optional:    true,
    			Type:        "duration",
    		},
    		config.HelpKV{
    			Key:         IOCount,
    			Description: `maximum IO requests allowed between objects to slow down heal operation` + defaultHelpPostfix(IOCount),
    			Optional:    true,
    			Type:        "int",
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/UncaughtExceptionHandlers.java

       *   Thread.currentThread().setUncaughtExceptionHandler(UncaughtExceptionHandlers.systemExit());
       *   ...
       * </pre>
       *
       * <p>The returned handler logs any exception at severity {@code SEVERE} and then shuts down the
       * process with an exit status of 1, indicating abnormal termination.
       */
      public static UncaughtExceptionHandler systemExit() {
        return new Exiter(Runtime.getRuntime());
      }
    
      @VisibleForTesting
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. src/strconv/decimal.go

    		n = n*10 + c - '0'
    	}
    	a.dp -= r - 1
    
    	var mask uint = (1 << k) - 1
    
    	// Pick up a digit, put down a digit.
    	for ; r < a.nd; r++ {
    		c := uint(a.d[r])
    		dig := n >> k
    		n &= mask
    		a.d[w] = byte(dig + '0')
    		w++
    		n = n*10 + c - '0'
    	}
    
    	// Put down extra digits.
    	for n > 0 {
    		dig := n >> k
    		n &= mask
    		if w < len(a.d) {
    			a.d[w] = byte(dig + '0')
    			w++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 15 19:41:25 UTC 2017
    - 11K bytes
    - Viewed (0)
  4. releasenotes/notes/full-push-regression.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue: [39652]
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 12 12:34:53 UTC 2022
    - 213 bytes
    - Viewed (0)
  5. pkg/apis/autoscaling/v2/defaults_test.go

    				})
    			}
    			down := GenerateHPAScaleDownRules(scaleDownRules)
    			assert.EqualValues(t, tc.expectedPolicies, down.Policies)
    			if tc.expectedStabilization != nil {
    				assert.Equal(t, *tc.expectedStabilization, *down.StabilizationWindowSeconds)
    			} else {
    				assert.Equal(t, tc.expectedStabilization, down.StabilizationWindowSeconds)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    Here, Bill! catch hold of this rope--Will the roof bear?--Mind
    that loose slate--Oh, it's coming down!  Heads below!' (a loud
    crash)--`Now, who did that?--It was Bill, I fancy--Who's to go
    down the chimney?--Nay, I shan't! YOU do it!--That I won't,
    then!--Bill's to go down--Here, Bill! the master says you're to
    go down the chimney!'
    
      `Oh! So Bill's got to come down the chimney, has he?' said
    Alice to herself.  `Shy, they seem to put everything upon Bill!
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/UncaughtExceptionHandlers.java

       *   Thread.currentThread().setUncaughtExceptionHandler(UncaughtExceptionHandlers.systemExit());
       *   ...
       * </pre>
       *
       * <p>The returned handler logs any exception at severity {@code SEVERE} and then shuts down the
       * process with an exit status of 1, indicating abnormal termination.
       */
      public static UncaughtExceptionHandler systemExit() {
        return new Exiter(Runtime.getRuntime());
      }
    
      @VisibleForTesting
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. releasenotes/notes/51204.yamml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 51182
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 153 bytes
    - Viewed (0)
  9. releasenotes/notes/we-memory-leaks.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue: [47893]
    releaseNotes:
      - |
        **Fixed** a memory leak when `hostNetwork` pods scale up and down.
      - |
        **Fixed** a memory leak when `WorkloadEntries` change their IP address.
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 21 22:28:50 UTC 2023
    - 325 bytes
    - Viewed (0)
  10. cmd/healthcheck-handler.go

    		w.Header().Set(xhttp.MinIOHealingDrives, strconv.Itoa(result.HealingDrives))
    	}
    	if !result.Healthy {
    		// As a maintenance call we are purposefully asked to be taken
    		// down, this is for orchestrators to know if we can safely
    		// take this server down, return appropriate error.
    		if opts.Maintenance {
    			writeResponse(w, http.StatusPreconditionFailed, nil, mimeNone)
    		} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top