Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 163 for Greene (0.03 sec)

  1. internal/color/color.go

    		if IsTerminal() {
    			return color.New(color.FgYellow).SprintfFunc()
    		}
    		return fmt.Sprintf
    	}()
    
    	Green = func() func(a ...interface{}) string {
    		if IsTerminal() {
    			return color.New(color.FgGreen).SprintFunc()
    		}
    		return fmt.Sprint
    	}()
    
    	Greenf = func() func(format string, a ...interface{}) string {
    		if IsTerminal() {
    			return color.New(color.FgGreen).SprintfFunc()
    		}
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-05-01 17:57
    - 3.8K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

          },
          "fieldConfig": {
            "defaults": {
              "mappings": [],
              "thresholds": {
                "mode": "absolute",
                "steps": [
                  {
                    "color": "green",
                    "value": null
                  },
                  {
                    "color": "semi-dark-red",
                    "value": 80
                  }
                ]
              }
            },
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-03-22 15:22
    - 101.9K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/grafana/replication/minio-replication-cluster.json

                  "mode": "off"
                }
              },
              "mappings": [],
              "thresholds": {
                "mode": "absolute",
                "steps": [
                  {
                    "color": "green",
                    "value": null
                  },
                  {
                    "color": "red",
                    "value": 80
                  }
                ]
              },
              "unit": "bytes"
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-03-28 17:15
    - 71.1K bytes
    - Viewed (0)
  4. RELEASE_BRANCHES.md

    This document outlines getting in new features after a new branch has been cut and the process for getting a PR
    merged in before and after the first public release.
    
    # Feature Freeze
    
    One week before a release, the release branch goes into a state of code freeze. At this point only critical release
    blocking bugs are addressed. Additional changes that are targeted for new features and capabilities will not be merged.
    
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-09-16 21:14
    - 4.2K bytes
    - Viewed (0)
  5. docs/resiliency/resiliency-tests.sh

    		TESTS_RUN_STATUS=$((TESTS_RUN_STATUS & 0))
    		return 1
    	fi
    
    	# Remove single xl.meta -- status still green
    	OUTPUT=$(docker exec resiliency-minio1-1 /bin/sh -c "rm /data$((DATA_DRIVE))/test-bucket/initial-data/$FILE/xl.meta")
    	WANT='{ "before": { "color": "green", "missing": 1, "corrupted": 0 }, "after": { "color": "green", "missing": 0, "corrupted": 0 }, "args": {"file": "'${FILE}'", "dir": "'${DIR}'"} }'
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-12-21 04:24
    - 20.5K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/grafana/minio-dashboard.json

                  },
                  "type": "special"
                }
              ],
              "thresholds": {
                "mode": "percentage",
                "steps": [
                  {
                    "color": "green",
                    "value": null
                  }
                ]
              },
              "unit": "dtdurations"
            },
            "overrides": []
          },
          "gridPos": {
            "h": 6,
            "w": 3,
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-07-24 14:51
    - 93K bytes
    - Viewed (0)
  7. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

                  "mode": "off"
                }
              },
              "mappings": [],
              "thresholds": {
                "mode": "absolute",
                "steps": [
                  {
                    "color": "green",
                    "value": null
                  },
                  {
                    "color": "red",
                    "value": 80
                  }
                ]
              },
              "unit": "short"
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-06-13 22:26
    - 57.4K bytes
    - Viewed (0)
  8. cmd/service.go

    	serviceStop                               // Stops the server.
    	serviceReloadDynamic                      // Reload dynamic config values.
    	serviceFreeze                             // Freeze all S3 API calls.
    	serviceUnFreeze                           // Un-Freeze previously frozen S3 API calls.
    	// Add new service requests here.
    )
    
    // Global service signal channel.
    var globalServiceSignalCh = make(chan serviceSignal)
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-02-28 07:02
    - 3.8K bytes
    - Viewed (0)
  9. internal/s3select/jstream/README.md

    ```bash
    cat input.json | jstream -v -d -1
    
    depth	start	end	type   | value
    2	018	023	string | "RGB"
    3	041	046	string | "red"
    3	048	055	string | "green"
    3	057	063	string | "blue"
    2	039	065	array  | ["red","green","blue"]
    1	004	069	object | {"colors":["red","green","blue"],"desc":"RGB"}
    2	087	093	string | "CMYK"
    3	111	117	string | "cyan"
    3	119	128	string | "magenta"
    3	130	138	string | "yellow"
    3	140	147	string | "black"
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-09-23 19:35
    - 3.2K bytes
    - Viewed (0)
  10. docs/pl/docs/tutorial/index.md

    ```console
    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    <span style="color: green;">INFO</span>:     Started reloader process [28720]
    <span style="color: green;">INFO</span>:     Started server process [28722]
    <span style="color: green;">INFO</span>:     Waiting for application startup.
    <span style="color: green;">INFO</span>:     Application startup complete.
    ```
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-08-06 04:48
    - 2.8K bytes
    - Viewed (0)
Back to top