Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of about 10,000 for STYLE (0.06 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/swift-application-task-graph.dot

      node [style=filled, fillcolor="#cfe2f3"]
      rankdir=LR
    
      compileDebugSwift -> linkDebug -> assemble -> build [dir=back]
      linkDebug -> assembleDebug [dir=back]
      check -> build [dir=back]
      compileReleaseSwift -> linkRelease -> assembleRelease [dir=back]
      clean
    
      // Ensure ordering
      compileDebugSwift -> compileReleaseSwift -> clean [style=invis]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. test/fixedbugs/issue22662.go

    		panic(fmt.Sprintf("got %s:%d; want %s:%d", f, l, file, line))
    	}
    }
    
    func main() {
    //-style line directives
    //line :1
    	check("??", 1) // no file specified
    //line foo.go:1
    	check("foo.go", 1)
    //line bar.go:10:20
    	check("bar.go", 10)
    //line :11:22
    	check("bar.go", 11) // no file, but column specified => keep old filename
    
    /*-style line directives */
    /*line :1*/ check("??", 1) // no file specified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 18:32:03 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/LinePrefixingStyledTextOutputTest.groovy

                    return null
                }
    
                @Override
                StyledTextOutput style(StyledTextOutput.Style style) {
                    return null
                }
    
                @Override
                StyledTextOutput withStyle(StyledTextOutput.Style style) {
                    return null
                }
    
                @Override
                StyledTextOutput text(Object text) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/src/main/res/values/styles.xml

    <resources>
    
        <!-- Base application theme. -->
        <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
            <!-- Customize your theme here. -->
            <item name="colorPrimary">@color/colorPrimary</item>
            <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
            <item name="colorAccent">@color/colorAccent</item>
        </style>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 383 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/templates/java-android-application/src/main/res/values/styles.xml

    <resources>
    
        <!-- Base application theme. -->
        <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
            <!-- Customize your theme here. -->
            <item name="colorPrimary">@color/colorPrimary</item>
            <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
            <item name="colorAccent">@color/colorAccent</item>
        </style>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 383 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/testdata/sample.go

    // immediately following token. 
    import "math" /* ERROR unexpected comma */ ,
    
    // If there are multiple /*-style error comments before
    // the next token, only the last one is considered.
    type x = /* ERROR ignored */ /* ERROR literal 0 in type declaration */ 0
    
    // A //-style error comment matches any error position
    // on the same line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 18:02:18 UTC 2022
    - 951 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/cpp-shared-library-task-graph.dot

      node [shape=rectangle, fixedsize=true, width=2.5, height=0.5];
      node [style=filled, fillcolor="#cfe2f3"]
      rankdir=LR
    
      compileDebugCpp -> linkDebug -> assembleDebug -> assemble -> build [dir=back]
      check -> build [dir=back]
      compileReleaseCpp -> linkRelease -> assembleRelease [dir=back]
      clean
    
      // Ensure ordering
      compileDebugCpp -> compileReleaseCpp -> clean [style=invis]
      {rank=same compileDebugCpp compileReleaseCpp clean}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/AbstractTestLogger.java

            return true;
        }
    
        private StyledTextOutput.Style getStyle(TestLogEvent event) {
            switch (event) {
                case PASSED: return StyledTextOutput.Style.Identifier;
                case FAILED: return StyledTextOutput.Style.Failure;
                case SKIPPED: return StyledTextOutput.Style.Info;
                default: return StyledTextOutput.Style.Normal;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_main.txt

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package standalone_main_normal_test
    
    import "testing"
    
    func TestMain(t *testing.T) {
    }
    -- standalone_main_wrong_test.go --
    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 17 00:45:15 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/templates/java-android-application/app/src/main/res/values/styles.xml

    <resources>
    
        <!-- Base application theme. -->
        <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
            <!-- Customize your theme here. -->
            <item name="colorPrimary">@color/colorPrimary</item>
            <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
            <item name="colorAccent">@color/colorAccent</item>
        </style>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 383 bytes
    - Viewed (0)
Back to top