Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for elts (0.25 sec)

  1. README.md

    - For installations using Systemd MinIO service, upgrade via RPM/DEB packages **parallelly** on all servers or replace the binary lets say `/opt/bin/minio` on all nodes, apply executable permissions `chmod +x /opt/bin/minio` and process to perform `mc admin service restart alias/`.
    
    ### Upgrade Checklist
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/ws/WebSocketHttpTest.kt

        serverListener.assertOpen()
        serverListener.assertFailure(EOFException::class.java)
        serverListener.assertExhausted()
        clientListener.assertFailure(e)
      }
    
      @Disabled("AsyncCall currently lets runtime exceptions propagate.")
      @Test
      @Throws(
        Exception::class,
      )
      fun throwingOnFailLogs() {
        webServer.enqueue(
          MockResponse.Builder()
            .code(200)
            .body("Body")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/preemption/preemption.go

    	// Lower priority pods nominated to run on this node, may no longer fit on
    	// this node. So, we should remove their nomination. Removing their
    	// nomination updates these pods and moves them to the active queue. It
    	// lets scheduler find another place for them.
    	nominatedPods := getLowerPriorityNominatedPods(logger, fh, pod, c.Name())
    	if err := util.ClearNominatedNodeName(ctx, cs, nominatedPods...); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    	dirtyWork  map[string][]*admissionWaiter
    	inProgress sets.String
    
    	// controls the run method so that we can cleanly conform to the Evaluator interface
    	workers int
    	stopCh  <-chan struct{}
    	init    sync.Once
    
    	// lets us know what resources are limited by default
    	config *resourcequotaapi.Configuration
    }
    
    type admissionWaiter struct {
    	attributes admission.Attributes
    	finished   chan struct{}
    	result     error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. src/path/filepath/path_test.go

    	} {
    		if !filepath.IsLocal(p) {
    			continue
    		}
    		f, err := os.Create(p)
    		if err != nil {
    			f.Close()
    		}
    		ents, err := os.ReadDir(dir2)
    		if err != nil {
    			t.Fatal(err)
    		}
    		for _, e := range ents {
    			t.Fatalf("found: %v", e.Name())
    		}
    	}
    }
    
    func TestEvalSymlinksTooManyLinks(t *testing.T) {
    	testenv.MustHaveSymlink(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  6. src/context/x_test.go

    }
    
    // The following are regular tests in package context_test.
    
    // otherContext is a Context that's not one of the types defined in context.go.
    // This lets us test code paths that differ based on the underlying type of the
    // Context.
    type otherContext struct {
    	Context
    }
    
    const (
    	shortDuration    = 1 * time.Millisecond // a reasonable duration to block in a test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_asm.go

    // table is the previous table doubled six times. Six is the width of the
    // sliding window used in p256ScalarMult, and having each table already
    // pre-doubled lets us avoid the doublings between windows entirely. This table
    // MUST NOT be modified, as it aliases into p256PrecomputedEmbed below.
    var p256Precomputed *[43]p256AffineTable
    
    //go:embed p256_asm_table.bin
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. cluster/log-dump/log-dump.sh

        local -r scp_files="{$(printf "%s," "${files[@]}")}"
    
        if [[ "${gcloud_supported_providers}" =~ ${KUBERNETES_PROVIDER} ]]; then
          # get-serial-port-output lets you ask for ports 1-4, but currently (11/21/2016) only port 1 contains useful information
          gcloud compute instances get-serial-port-output --project "${PROJECT}" --zone "${ZONE}" --port 1 "${node}" > "${dir}/serial-1.log" || true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/Longs.java

            | (b4 & 0xFFL) << 32
            | (b5 & 0xFFL) << 24
            | (b6 & 0xFFL) << 16
            | (b7 & 0xFFL) << 8
            | (b8 & 0xFFL);
      }
    
      /*
       * Moving asciiDigits into this static holder class lets ProGuard eliminate and inline the Longs
       * class.
       */
      static final class AsciiDigits {
        private AsciiDigits() {}
    
        private static final byte[] asciiDigits;
    
        static {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/primitives/Longs.java

            | (b4 & 0xFFL) << 32
            | (b5 & 0xFFL) << 24
            | (b6 & 0xFFL) << 16
            | (b7 & 0xFFL) << 8
            | (b8 & 0xFFL);
      }
    
      /*
       * Moving asciiDigits into this static holder class lets ProGuard eliminate and inline the Longs
       * class.
       */
      static final class AsciiDigits {
        private AsciiDigits() {}
    
        private static final byte[] asciiDigits;
    
        static {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.8K bytes
    - Viewed (0)
Back to top