Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 93 for greatest (0.17 sec)

  1. cmd/metrics-v2.go

    		labels = append(labels, l)
    		values = append(values, v)
    	}
    	return
    }
    
    // newMinioCollectorNode describes the collector
    // and returns reference of minioCollector for version 2
    // It creates the Prometheus Description which is used
    // to define Metric and  help string
    func newMinioCollectorNode(metricsGroups []*MetricsGroupV2) *minioNodeCollector {
    	return &minioNodeCollector{
    		metricsGroups: metricsGroups,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        inputStream.close()
        val elapsedNanos = System.nanoTime() - startNanos
        val elapsedMillis = TimeUnit.NANOSECONDS.toMillis(elapsedNanos)
    
        // If we're working correctly, this should be greater than 100ms, but less than double that.
        // Previously we had a bug where we would download the entire response body as long as no
        // individual read took longer than 100ms.
        assertThat(elapsedMillis).isLessThan(500L)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/garbagecollector_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	assert.Equal(t, 0, len(gc.dependencyGraphBuilder.monitors))
    
    	// Make sure resource monitor syncing creates and stops resource monitors.
    	tweakableRM.Add(schema.GroupVersionKind{Group: "tpr.io", Version: "v1", Kind: "unknown"}, nil)
    	err = gc.resyncMonitors(logger, twoResources)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    	reqdone chan struct{}
    	resp    *Response
    	respErr error
    
    	conn   net.Conn
    	reader *bufio.Reader
    }
    
    const transport100ContinueTestBody = "request body"
    
    // newTransport100ContinueTest creates a Transport and sends an Expect: 100-continue
    // request on it.
    func newTransport100ContinueTest(t *testing.T, timeout time.Duration) *transport100ContinueTest {
    	ln := newLocalListener(t)
    	defer ln.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/asmz.go

    		return CCMask(p.From.Offset)
    	case ABEQ, ACMPBEQ, ACMPUBEQ, AMOVDEQ:
    		return Equal
    	case ABGE, ACMPBGE, ACMPUBGE, AMOVDGE:
    		return GreaterOrEqual
    	case ABGT, ACMPBGT, ACMPUBGT, AMOVDGT:
    		return Greater
    	case ABLE, ACMPBLE, ACMPUBLE, AMOVDLE:
    		return LessOrEqual
    	case ABLT, ACMPBLT, ACMPUBLT, AMOVDLT:
    		return Less
    	case ABNE, ACMPBNE, ACMPUBNE, AMOVDNE:
    		return NotEqual
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller_test.go

    	if len(fakePodControl.Templates) != expectedCreates {
    		return fmt.Errorf("Unexpected number of creates.  Expected %d, saw %d\n", expectedCreates, len(fakePodControl.Templates))
    	}
    	if len(fakePodControl.DeletePodName) != expectedDeletes {
    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

    	DT_RUNPATH      DynTag = 29 /* String table offset of a null-terminated library search path string. */
    	DT_FLAGS        DynTag = 30 /* Object specific flag values. */
    	DT_ENCODING     DynTag = 32 /* Values greater than or equal to DT_ENCODING
    	   and less than DT_LOOS follow the rules for
    	   the interpretation of the d_un union
    	   as follows: even == 'd_ptr', even == 'd_val'
    	   or none */
    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. cmd/bucket-replication.go

    	MRFWorkerAutoDefault = 4
    
    	// LargeWorkerCount is default number of workers assigned to large uploads ( >= 128MiB)
    	LargeWorkerCount = 10
    )
    
    // NewReplicationPool creates a pool of replication workers of specified size
    func NewReplicationPool(ctx context.Context, o ObjectLayer, opts replicationPoolOpts) *ReplicationPool {
    	var workers, failedWorkers int
    	priority := "auto"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

    | E\n\n\t(Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n\n<decimalExponent> ::= \"e\" <signedNumber> | \"E\" <signedNumber> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

                "type": "string"
              },
              "versionPriority": {
                "default": 0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
Back to top