Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for onDone (0.17 sec)

  1. src/math/big/int_test.go

    	p := tri(231)
    	p.Sub(p, intOne)
    	p.Sub(p, intOne) // tri(231) - 2 is a prime == 5 mod 8
    	x := new(Int).SetUint64(7)
    	for i := 0; i < b.N; i++ {
    		x.SetUint64(7)
    		x.modSqrtTonelliShanks(x, p)
    	}
    }
    
    func BenchmarkModSqrt231_5Mod8(b *testing.B) {
    	p := tri(231)
    	p.Sub(p, intOne)
    	p.Sub(p, intOne) // tri(231) - 2 is a prime == 5 mod 8
    	x := new(Int).SetUint64(7)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  2. cmd/erasure-object.go

    // Object Operations
    
    func countOnlineDisks(onlineDisks []StorageAPI) (online int) {
    	for _, onlineDisk := range onlineDisks {
    		if onlineDisk != nil && onlineDisk.IsOnline() {
    			online++
    		}
    	}
    	return online
    }
    
    // CopyObject - copy object source object to destination object.
    // if source object and destination object are same we only
    // update metadata.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/grafana/minio-dashboard.json

              "hide": false,
              "instant": true,
              "legendFormat": ".",
              "range": false,
              "refId": "B"
            }
          ],
          "title": "Total Online/Offline Drives",
          "type": "gauge"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
          "fieldConfig": {
            "defaults": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

              "interval": "1m",
              "legendFormat": "{{endpoint}}",
              "refId": "A"
            }
          ],
          "title": "Link Online/Offline",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
          "fieldConfig": {
            "defaults": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool.go

    				SetID:         setIdx,
    				PoolID:        poolIdx,
    				Healthy:       erasureSetUpCount[poolIdx][setIdx].online >= poolWriteQuorums[poolIdx],
    				HealthyRead:   erasureSetUpCount[poolIdx][setIdx].online >= poolReadQuorums[poolIdx],
    				HealthyDrives: erasureSetUpCount[poolIdx][setIdx].online,
    				HealingDrives: erasureSetUpCount[poolIdx][setIdx].healing,
    				ReadQuorum:    poolReadQuorums[poolIdx],
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/grafana/replication/minio-replication-cluster.json

                "axisLabel": "",
                "axisPlacement": "auto",
                "barAlignment": 0,
                "drawStyle": "line",
                "fillOpacity": 10,
                "gradientMode": "none",
                "hideFrom": {
                  "legend": false,
                  "tooltip": false,
                  "viz": false
                },
                "insertNulls": false,
                "lineInterpolation": "linear",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:15:39 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller.go

    		}
    		logger.V(4).Info("Observed a ControllerRevision", "controllerRevision", klog.KObj(history))
    		return
    	}
    
    	// Otherwise, it's an orphan. Get a list of all matching DaemonSets and sync
    	// them to see if anyone wants to adopt it.
    	daemonSets := dsc.getDaemonSetsForHistory(logger, history)
    	if len(daemonSets) == 0 {
    		return
    	}
    	logger.V(4).Info("Orphan ControllerRevision added", "controllerRevision", klog.KObj(history))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/manual.css

    	width: 100%;
    	color: var(--text-color);
    	white-space: nowrap;
    	display: inline-block;
    	padding-top: 3px;
    	border: 0 none;
    	transition: none;
    	-o-transition: none;
    	-moz-transition: none;
    	-webkit-transition: none;
    }
    
    .site-header__navigation-submenu-section .site-header__navigation-submenu .site-header__navigation-submenu-item-link .site-header__navigation-submenu-item-link-text {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

          testing.parameter_combinations([{
              'bias_fn': (
                  None,
                  nn_ops.bias_add,
              ),
              'activation_fn': (
                  None,
                  nn_ops.relu,
                  nn_ops.relu6,
              ),
              'dim_sizes': (
                  # tf.MatMul cases.
                  ([None, 1024], [1024, 3]),  # dynamic batch dim.
                  ([1, 1024], [1024, 3]),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  10. src/net/dnsclient_unix_test.go

    			continue
    		}
    	}
    }
    
    // Issue 13705: don't try to resolve onion addresses, etc
    func TestAvoidDNSName(t *testing.T) {
    	tests := []struct {
    		name  string
    		avoid bool
    	}{
    		{"foo.com", false},
    		{"foo.com.", false},
    
    		{"foo.onion.", true},
    		{"foo.onion", true},
    		{"foo.ONION", true},
    		{"foo.ONION.", true},
    
    		// But do resolve *.local address; Issue 16739
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top