Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 350 for Osage (0.07 sec)

  1. cmd/data-usage-cache.go

    // dataUsageCacheV2 contains a cache of data usage entries version 2.
    type dataUsageCacheV2 struct {
    	Info  dataUsageCacheInfo
    	Cache map[string]dataUsageEntryV2
    }
    
    // dataUsageCacheV3 contains a cache of data usage entries version 3.
    type dataUsageCacheV3 struct {
    	Info  dataUsageCacheInfo
    	Cache map[string]dataUsageEntryV3
    }
    
    // dataUsageCacheV4 contains a cache of data usage entries version 4.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  2. platforms/jvm/java-platform/src/test/java/org/gradle/internal/component/model/JavaEcosystemAttributeMatcherTest.groovy

                                attributes(Usage.JAVA_API, LibraryElements.CLASSES, 9)]
            def runtimeElements9 = [attributes(Usage.JAVA_RUNTIME, LibraryElements.JAR, 9),
                                    attributes(Usage.JAVA_RUNTIME, LibraryElements.CLASSES, 9)]
    
            def apiElements11 = [attributes(Usage.JAVA_API, LibraryElements.JAR, 11),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryOutgoingVariantsIntegrationTest.groovy

            """)
        }
    
        def "provides API classes variant"() {
            buildFile << """
                project(':consumer') {
                    apply plugin: 'jvm-ecosystem'
                    configurations.consume.attributes.attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.JAVA_API))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/java/JavaApplicationOutgoingVariantsIntegrationTest.groovy

            """)
        }
    
        def "provides runtime jar variant - requestJarAttribute: #requestJarAttribute"() {
            buildFile << """
                project(':consumer') {
                    apply plugin: 'jvm-ecosystem'
                    configurations.consume.attributes.attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.JAVA_RUNTIME))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/JavaProjectOutgoingVariantsIntegrationTest.groovy

            """)
        }
    
        def "provides runtime variant - requestJarAttribute: #requestJarAttribute"() {
            buildFile << """
                project(':consumer') {
                    apply plugin: 'jvm-ecosystem'
                    configurations.consume.attributes.attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.JAVA_RUNTIME))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. src/flag/flag.go

    	usage = flag.Usage
    	for i := 0; i < len(usage); i++ {
    		if usage[i] == '`' {
    			for j := i + 1; j < len(usage); j++ {
    				if usage[j] == '`' {
    					name = usage[i+1 : j]
    					usage = usage[:i] + name + usage[j+1:]
    					return name, usage
    				}
    			}
    			break // Only one back quote; use type name.
    		}
    	}
    	// No explicit name, so use type if we can find one.
    	name = "value"
    	switch fv := flag.Value.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/LoggingDeprecatedFeatureHandler.java

                    addSolution(usage.getAdvice(), problemSpec);
                    addSolution(usage.getContextualAdvice(), problemSpec);
                }
            });
            reporter.report(problem);
        }
    
        private static String getDefaultDeprecationIdDisplayName(DeprecatedFeatureUsage usage) {
            if (usage.getProblemId() != null) {
                return usage.getProblemId();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/jvm/internal/DefaultJvmPluginServicesTest.groovy

    import static org.gradle.api.attributes.LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE
    import static org.gradle.api.attributes.Usage.JAVA_API
    import static org.gradle.api.attributes.Usage.JAVA_RUNTIME
    import static org.gradle.api.attributes.Usage.USAGE_ATTRIBUTE
    import static org.gradle.api.attributes.java.TargetJvmEnvironment.STANDARD_JVM
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/main/java/org/gradle/api/internal/artifacts/JavaEcosystemSupport.java

            final Usage javaApi;
            final Usage javaRuntime;
            final Usage javaApiJars;
            final Usage javaRuntimeJars;
    
            final ImmutableSet<Usage> apiVariants;
            final ImmutableSet<Usage> runtimeVariants;
    
            @Inject
            public UsageDisambiguationRules(Usage javaApi,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

         * the resulting set of files.
         *
         * @implSpec Usage: This method should only be called on resolvable configurations and will emit a deprecation warning if
         * called on a configuration that does not permit this usage, or has allowed this usage but marked it as deprecated.
         *
         * @return The files of this configuration.
         */
        Set<File> resolve();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top