Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for eofline (0.11 sec)

  1. docs/metrics/prometheus/list.md

    | `minio_node_replication_link_online`                    | Reports whether the replication link is online (1) or offline (0).                                       |
    | `minio_node_replication_link_offline_duration_seconds`  | Total duration of replication link being offline in seconds since last offline event                     |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  2. cmd/metrics-v2.go

    			linkOnline := MetricV2{
    				Description: getClusterRepLinkOnlineMD(),
    				VariableLabels: map[string]string{
    					"endpoint": ep,
    				},
    			}
    			online := Offline
    			if health.Online {
    				online = Online
    			}
    			linkOnline.Value = float64(online)
    			ml = append(ml, linkOnline)
    			offlineDuration := MetricV2{
    				Description: getClusterRepLinkCurrOfflineDurationMD(),
    				VariableLabels: map[string]string{
    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. cmd/erasure-object.go

    	}
    
    	// count the number of offline disks
    	offline := 0
    	for i := 0; i < len(errs); i++ {
    		var found bool
    		switch {
    		case errors.Is(errs[i], errDiskNotFound):
    			found = true
    		default:
    			for p := range dataErrsByPart {
    				if dataErrsByPart[p][i] == checkPartDiskNotFound {
    					found = true
    					break
    				}
    			}
    		}
    		if found {
    			offline++
    		}
    	}
    	if offline > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  4. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

            return projectRequired;
        }
    
        // ----------------------------------------------------------------------
        // Online vs. Offline requirement
        // ----------------------------------------------------------------------
    
        /**
         * @param requiresOnline <code>true</code> if the Mojo is online, <code>false</code> otherwise.
         */
        public void setOnlineRequired(boolean requiresOnline) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  5. docs/metrics/v3.md

    | `minio_cluster_health_drives_online_count`         | `gauge` | Count of online drives in the cluster          |        |
    | `minio_cluster_health_drives_count`                | `gauge` | Count of all drives in the cluster             |        |
    | `minio_cluster_health_nodes_offline_count`         | `gauge` | Count of offline nodes in the cluster          |        |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheKeyIntegrationTest.groovy

        def configurationCache = newConfigurationCacheFixture()
    
        def "offline flag is part of the cache key"() {
            when:
            configurationCacheRun "help"
            then:
            configurationCache.assertStateStored()
    
            when:
            configurationCacheRun "help", "--offline"
            then:
            configurationCache.assertStateStored()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheRemoteBuildScriptIntegrationTest.groovy

        }
    
        def "reuse cache for offline build"() {
            when:
            configurationCacheRun 'ok'
    
            then:
            configurationCache.assertStateStored()
    
            when:
            scriptFile << """
                print 'update remote script'
            """
    
            and:
            executer.withArgument("--offline")
            configurationCacheRun 'ok'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. cmd/erasure-healing-common.go

    			// Since for majority of the cases erasure.Index matches with erasure.Distribution we can
    			// consider the offline disks as consistent.
    			continue
    		}
    		if !meta.Deleted {
    			if len(meta.Erasure.Distribution) != len(onlineDisks) {
    				// Erasure distribution seems to have lesser
    				// number of items than number of online disks.
    				inconsistent++
    				continue
    			}
    			if meta.Erasure.Distribution[i] != meta.Erasure.Index {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. cmd/xl-storage-disk-id-check.go

    				"node(%s): Read/Write/Delete successful, bringing drive %s online", globalLocalNodeName, p.storage.String())
    			p.health.status.Store(diskHealthOK)
    			p.health.waiting.Add(-1)
    			return
    		}
    	}
    }
    
    // monitorDiskStatus should be called once when a drive has been marked offline.
    // Once the disk has been deemed ok, it will return to online status.
    func (p *xlStorageDiskIDCheck) monitorDiskWritable(ctx context.Context) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

        /**
         * Specifies whether the build should be performed offline (ie without network access).
         */
        public boolean isOffline() {
            return offline;
        }
    
        /**
         * Specifies whether the build should be performed offline (ie without network access).
         */
        public void setOffline(boolean offline) {
            this.offline = offline;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top