Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 434 for category2 (0.15 sec)

  1. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportAggregationWorkAction.kt

        """
                )
    
                data.toSortedMap().forEach { (category, _) ->
                    writer.println("<li><a href=\"#$category\">$category</a><br></li>")
                }
                writer.println("</ul>")
                data.toSortedMap().forEach { (category, problems) ->
                    writer.println("<a name=\"$category\"></a>")
                    writer.println("<h2>$category</h2>")
                    problems.forEach { (name, issues) ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 18 06:55:55 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/services/LoggingServiceRegistryTest.groovy

            def registry = LoggingServiceRegistry.newCommandLineProcessLogging()
            def logger = LoggerFactory.getLogger("category")
    
            when:
            def loggingManager = registry.newInstance(LoggingManagerInternal)
            logger.warn("before")
    
            then:
            outputEventListener.toString() == '[[WARN] [category] before]'
    
            when:
            loggingManager.levelInternal = LogLevel.INFO
            loggingManager.start()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/swift/testReport/groovy/buildSrc/src/main/groovy/myproject.xctest-conventions.gradle

    // Share the test report data to be aggregated for the whole project
    configurations {
        binaryTestResultsElements {
            canBeResolved = false
            attributes {
                attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.DOCUMENTATION))
                attribute(DocsType.DOCS_TYPE_ATTRIBUTE, objects.named(DocsType, 'test-report-data'))
            }
            tasks.withType(XCTest).configureEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 772 bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/cpp/renderers/cpp_config.cc

    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    CppConfig::CppConfig(const string &category, const string &name_space)
        : category(category),
          unit(str_util::Lowercase(category)),
          namespaces(absl::StrSplit(name_space, "::")) {}
    
    }  // namespace cpp
    }  // namespace generator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/build.gradle

    }
    
    configurations {
        gradleFullDocsElements {
            attributes {
                attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.JAVA_RUNTIME))
                attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.DOCUMENTATION))
                attribute(DocsType.DOCS_TYPE_ATTRIBUTE, objects.named(DocsType, "gradle-documentation"))
            }
            visible = false
            canBeResolved = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/ModifierAnnotationCategory.java

                builder.put(typeAnnotation, TYPE);
            }
            for (ModifierAnnotationCategory category : values()) {
                for (Class<? extends Annotation> annotation : category.annotations) {
                    builder.put(annotation, category);
                }
            }
            return builder.build();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-attributeSubstitutionRule/groovy/consumer/build.gradle

    configurations.all {
        resolutionStrategy.dependencySubstitution {
            substitute variant(module('com.google.guava:guava:28.2-jre')) {
                attributes {
                    attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.REGULAR_PLATFORM))
                }
            } using module('com.google.guava:guava:28.2-jre')
        }
    }
    // end::substitution_rule_alternative[]
    
    tasks.register('resolve') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-consistentResolution/tests/fixed-dependency-insight.out

        | Attribute Name                 | Provided     | Requested    |
        |--------------------------------|--------------|--------------|
        | org.gradle.status              | release      |              |
        | org.gradle.category            | library      | library      |
        | org.gradle.libraryelements     | jar          | jar          |
        | org.gradle.usage               | java-runtime | java-runtime |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/jvm/internal/DefaultJvmFeatureTest.groovy

            configuration.canBeConsumed
            (configuration.attributes.getAttribute(Usage.USAGE_ATTRIBUTE) as Usage).name == Usage.JAVA_RUNTIME
            (configuration.attributes.getAttribute(Category.CATEGORY_ATTRIBUTE) as Category).name == Category.DOCUMENTATION
            (configuration.attributes.getAttribute(Bundling.BUNDLING_ATTRIBUTE) as Bundling).name == Bundling.EXTERNAL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/url.go

    // and returns the URL. See Diagnostic.URL for details.
    func ResolveURL(a *analysis.Analyzer, d analysis.Diagnostic) (string, error) {
    	if d.URL == "" && d.Category == "" && a.URL == "" {
    		return "", nil // do nothing
    	}
    	raw := d.URL
    	if d.URL == "" && d.Category != "" {
    		raw = "#" + d.Category
    	}
    	u, err := url.Parse(raw)
    	if err != nil {
    		return "", fmt.Errorf("invalid Diagnostic.URL %q: %s", raw, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 901 bytes
    - Viewed (0)
Back to top