Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 270 for Colors (0.1 sec)

  1. docs/ja/docs/tutorial/first-steps.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: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooserTest.groovy

            given:
            def a = component('1.2')
            def b = component('1.3', 'release', [color: 'red'])
            def c = component('1.4', 'release', [color: 'green'])
            def d = component('2.0', 'release', [color: 'blue'])
            def selectedComponentResult = Mock(ComponentSelectionContext)
            consumerAttributes = AttributeTestUtil.attributes(color: 'red')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. pkg/proxy/util/endpoints_test.go

    	}{
    		{"1.2.3.4", "1.2.3.4", noError},
    		{"1.2.3.4:9999", "1.2.3.4", noError},
    		{"2001:db8::1:1", "2001:db8::1:1", noError},
    		{"[2001:db8::2:2]:9999", "2001:db8::2:2", noError},
    		{"1.2.3.4::9999", "", "too many colons"},
    		{"1.2.3.4:[0]", "", "unexpected '[' in address"},
    		{"1.2.3:8080", "", "invalid ip part"},
    	}
    
    	for _, tc := range testCases {
    		ip := IPPart(tc.endpoint)
    		if tc.expectedError == noError {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. docs/debugging/inspect/go.mod

    	github.com/minio/madmin-go/v3 v3.0.52
    	github.com/secure-io/sio-go v0.3.1
    	github.com/tinylib/msgp v1.1.9
    )
    
    require (
    	github.com/cespare/xxhash/v2 v2.3.0 // indirect
    	github.com/fatih/color v1.17.0 // indirect
    	github.com/mattn/go-colorable v0.1.13 // indirect
    	github.com/mattn/go-isatty v0.0.20 // indirect
    	github.com/minio/pkg/v3 v3.0.1 // indirect
    	github.com/philhofer/fwd v1.1.2 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 09:27:44 UTC 2024
    - 668 bytes
    - Viewed (0)
  5. operator/cmd/mesh/install.go

    	if err != nil {
    		return fmt.Errorf("fetch Istio version: %v", err)
    	}
    
    	// return warning if current date is near the EOL date
    	if operatorVer.IsEOL() {
    		warnMarker := color.New(color.FgYellow).Add(color.Italic).Sprint("WARNING:")
    		fmt.Printf("%s Istio %v may be out of support (EOL) already: see https://istio.io/latest/docs/releases/supported-releases/ for supported releases\n",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/annotations/TestAnnotationHandlingSupport.groovy

        enum Modifiers implements AnnotationCategory {
            COLOR;
    
            @Override
            String getDisplayName() {
                name()
            }
        }
    
        TypeAnnotationMetadataStore typeAnnotationMetadataStore = new DefaultTypeAnnotationMetadataStore(
            [ThisIsAThing],
            [(TestNested): TYPE, (Long): TYPE, (Short): TYPE, (Tint): Modifiers.COLOR],
            ["java", "groovy"],
            [Object],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestDataGenerator.java

                this.xaxis = ImmutableMap.of("from", index - 0.5, "to", index + 0.5);
                this.color = String.format(Locale.ENGLISH, "rgba(%d,%d,0,%.1f)", redComponent, greenComponent, opacity);
            }
    
            public Map getXaxis() {
                return xaxis;
            }
    
            public String getColor() {
                return color;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

        public static final String THREADS = "T";
    
        public static final String BUILDER = "b";
    
        public static final String NO_TRANSFER_PROGRESS = "ntp";
    
        public static final String COLOR = "color";
    
        public static final String CACHE_ARTIFACT_NOT_FOUND = "canf";
    
        public static final String STRICT_ARTIFACT_DESCRIPTOR_POLICY = "sadp";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. operator/pkg/verifier/verifier.go

    	}
    
    	for _, opt := range options {
    		opt(&verifier)
    	}
    
    	return &verifier, nil
    }
    
    func (v *StatusVerifier) Colorize() {
    	v.successMarker = color.New(color.FgGreen).Sprint(v.successMarker)
    	v.failureMarker = color.New(color.FgRed).Sprint(v.failureMarker)
    }
    
    // Verify implements Verifier interface. Here we check status of deployment
    // and jobs, count various resources for verification.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. internal/logger/target/console/console.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package console
    
    import (
    	"encoding/json"
    	"fmt"
    	"io"
    	"strconv"
    	"strings"
    
    	"github.com/minio/minio/internal/color"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v3/logger/message/log"
    )
    
    // Target implements loggerTarget to send log
    // in plain or json format to the standard output.
    type Target struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top