Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 434 for category2 (0.17 sec)

  1. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/src/main/AndroidManifest.xml

            android:theme="@style/AppTheme">
            <activity android:name=".MainActivity">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
    
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
        </application>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 737 bytes
    - Viewed (0)
  2. hack/verify-e2e-test-ownership.sh

      summary_jq=${tmpdir}/summary.jq
      cat >"${summary_jq}" <<EOS
      . as \$results |
      # for each policy category
      reduce \$results[0].policies[] as \$p ({}; . + {
        # add a convenience .policy field containing that policy's result
        (\$p.category): \$results | map(. + {policy: .policies[] | select(.category == \$p.category)}) | {
          level: \$p.level,
          reason: \$p.reason,
          passing: map(select(.policy.fail | not)) | length,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 06:46:18 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/LogEvent.java

        public LogEvent(long timestamp, String category, LogLevel logLevel, String message, @Nullable Throwable throwable) {
            this(timestamp, category, logLevel, message, throwable, null);
        }
    
        public LogEvent(long timestamp, String category, LogLevel logLevel, String message, @Nullable Throwable throwable, @Nullable OperationIdentifier buildOperationIdentifier) {
            super(timestamp, category, logLevel, buildOperationIdentifier);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/testing/testReport/kotlin/buildSrc/src/main/kotlin/myproject.java-conventions.gradle.kts

    configurations.create("binaryTestResultsElements") {
        isCanBeResolved = false
        isCanBeConsumed = true
        attributes {
            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.DOCUMENTATION))
            attribute(DocsType.DOCS_TYPE_ATTRIBUTE, objects.named("test-report-data"))
        }
        outgoing.artifact(tasks.test.map { task -> task.getBinaryResultsDirectory().get() })
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 690 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced/kotlin/producer/build.gradle.kts

    }
    
    // tag::declare-outgoing-configuration[]
    val instrumentedJars by configurations.creating {
        isCanBeConsumed = true
        isCanBeResolved = false
        attributes {
            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.LIBRARY))
            attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage.JAVA_RUNTIME))
            attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(Bundling.EXTERNAL))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 927 bytes
    - Viewed (0)
  6. src/unicode/graphic.go

    // The [C] ([Other]) Unicode category includes more code points
    // such as surrogates; use [Is](C, r) to test for them.
    func IsControl(r rune) bool {
    	if uint32(r) <= MaxLatin1 {
    		return properties[uint8(r)]&pC != 0
    	}
    	// All control characters are < MaxLatin1.
    	return false
    }
    
    // IsLetter reports whether the rune is a letter (category [L]).
    func IsLetter(r rune) bool {
    	if uint32(r) <= MaxLatin1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/ProgressLogEventGenerator.java

                this.category = category;
                this.loggingHeader = loggingHeader;
                this.startTime = startTime;
                this.hasLoggingHeader = GUtil.isTrue(loggingHeader);
                this.buildOperationIdentifier = buildOperationIdentifier;
            }
    
            private StyledTextOutputEvent plainTextEvent(long timestamp, String text) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemReporter.java

     *
     * @since 8.6
     */
    @Incubating
    public interface ProblemReporter {
    
        /**
         * Configures and reports a new problem.
         * <p>
         * The spec must specify the problem label and the category. Any additional configuration is optional.
         *
         * @param spec the problem configuration
         * @since 8.6
         */
        void reporting(Action<ProblemSpec> spec);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 10:28:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestReportTaskIntegrationTest.groovy

                public class SubTest {
                    @Category(SubClassTests.class) @Test public void onlySub() {
                        System.out.println("org.gradle.testing.SubTest#onlySub " + System.getProperty("category"));
                        assertEquals("sub", System.getProperty("category"));
                    }
                    @Category(SubClassTests.class) @Test public void passing() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  10. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/NativeAlignmentWithJavaPlatformResolveIntegrationTest.groovy

                        byConstraint("platform alignment")
                        byConflictResolution("between versions 1.1 and 1.0")
                        variant "apiElements", [
                            'org.gradle.category':'library',
                            'org.gradle.dependency.bundling':'external',
                            'org.gradle.jvm.version': JavaVersion.current().majorVersion,
                            'org.gradle.status':'release',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top