Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for textcolor (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/commandLineTutorialTasks.graphml

              <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Arial" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.40625" modelName="internal" modelPosition="c" textColor="#555555" visible="true" width="68.6875" x="35.65625" y="6.296875">compileTest</y:NodeLabel>
              <y:Shape type="roundrectangle"/>
            </y:ShapeNode>
          </data>
        </node>
        <node id="n1">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/warPluginTasks.graphml

              <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Arial" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.40625" modelName="internal" modelPosition="c" textColor="#555555" visible="true" width="23.3359375" x="58.33203125" y="6.296875">war</y:NodeLabel>
              <y:Shape type="roundrectangle"/>
            </y:ShapeNode>
          </data>
        </node>
        <node id="n1">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/PmdInvoker.groovy

                }
    
                if (parameters.consoleOutput.get()) {
                    def consoleOutputType = 'text'
                    if (parameters.stdOutIsAttachedToTerminal.get()) {
                        consoleOutputType = 'textcolor'
                    }
                    ant.builder.saveStreams = false
                    formatter(type: consoleOutputType, toConsole: true)
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/Style.java

            }
    
            Style rhs = (Style) obj;
            return Objects.equal(getEmphasises(), rhs.getEmphasises())
                && Objects.equal(getColor(), rhs.getColor());
        }
    
        @Override
        public int hashCode() {
            return Objects.hashCode(getEmphasises(), getColor());
        }
    
        public static Style of(Emphasis emphasis) {
            return of(emphasis, Color.DEFAULT);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultColorMap.java

            addDefault(style.name().toLowerCase(Locale.ROOT), colorSpec);
        }
    
        @Override
        public Color getStatusBarColor() {
            return getColor(STATUS_BAR);
        }
    
        @Override
        public Color getColourFor(StyledTextOutput.Style style) {
            return getColor(style.name().toLowerCase(Locale.ROOT));
        }
    
        @Override
        public Color getColourFor(Style style) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. tests/integration/security/fuzz/fuzzers/jwt_tool/Dockerfile

    RUN chmod +x ./run.sh && chmod +x jwt_tool.py && apt-get update && apt-get install --no-install-recommends -y python3-pip \
      && apt-get clean && rm -rf /var/lib/apt/lists/*
    RUN python3 -m pip install --no-cache-dir termcolor==1.1.0 cprint==1.2.2 pycryptodomex==3.10.1 requests==2.25.1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 21 20:06:01 UTC 2021
    - 485 bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/universe.go

    		universeAnyAlias = NewTypeName(nopos, nil, "any", nil)
    		universeAnyAlias.setColor(black)
    		_ = NewAlias(universeAnyAlias, universeAnyNoAlias.Type().Underlying()) // Link TypeName and Alias
    		def(universeAnyAlias)
    	}
    
    	// type error interface{ Error() string }
    	{
    		obj := NewTypeName(nopos, nil, "error", nil)
    		obj.setColor(black)
    		typ := NewNamed(obj, nil, nil)
    
    		// error.Error() string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. src/go/types/universe.go

    		universeAnyAlias = NewTypeName(nopos, nil, "any", nil)
    		universeAnyAlias.setColor(black)
    		_ = NewAlias(universeAnyAlias, universeAnyNoAlias.Type().Underlying()) // Link TypeName and Alias
    		def(universeAnyAlias)
    	}
    
    	// type error interface{ Error() string }
    	{
    		obj := NewTypeName(nopos, nil, "error", nil)
    		obj.setColor(black)
    		typ := NewNamed(obj, nil, nil)
    
    		// error.Error() string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. ci/official/requirements_updater/requirements.in

    numpy ~= 1.26.0 ; python_version >= "3.12"
    wheel ~= 0.41.2
    h5py >= 3.10.0
    lit ~= 17.0.2
    opt_einsum == 3.3.0
    astunparse == 1.6.3
    dill == 0.3.7
    astor == 0.7.1
    typing_extensions == 4.8.0
    gast == 0.4.0
    termcolor == 2.3.0
    wrapt == 1.16.0
    tblib == 2.0.0
    ml_dtypes >= 0.4.0, < 0.5.0
    
    # Install tensorboard, and keras
    # Note that here we want the latest version that matches TF major.minor version
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 19:00:33 UTC 2024
    - 834 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/CrashingBuildsArtifactTransformIntegrationTest.groovy

    def type = Attribute.of("artifactType", String)
    
    abstract class ToColor implements TransformAction<Parameters> {
        interface Parameters extends TransformParameters {
            @Input
            Property<Color> getColor()
    
            @Input
            Property<Boolean> getBroken()
        }
    
        @InputArtifact
        abstract Provider<FileSystemLocation> getInputArtifact()
    
        void transform(TransformOutputs outputs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top