Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 756 for Osage (2.2 sec)

  1. 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)
  2. 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)
  3. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/duplicatedCallableWithImplicitType.kt

    // MODULE: lib1
    // FILE: dependency.kt
    package usage
    
    fun implicitType() = 1
    
    // MODULE: dep(lib1)
    // FILE: annotation.kt
    package usage
    
    fun implicitTypeFromAnotherModule() = implicitType()
    
    // MODULE: lib2
    // FILE: dependency.kt
    package usage
    
    fun implicitType() = "str"
    
    // MODULE: main(lib2, dep)
    // FILE: usage.kt
    package usage
    
    fun usage(): Int = run {
        implicitType()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Mar 18 21:14:36 UTC 2024
    - 414 bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecatedFeatureUsage.java

        DeprecatedFeatureUsage(DeprecatedFeatureUsage usage) {
            super(usage.getSummary(), usage.getCalledFrom());
            this.removalDetails = usage.removalDetails;
            this.advice = usage.advice;
            this.contextualAdvice = usage.contextualAdvice;
            this.documentation = usage.documentation;
            this.type = usage.type;
            this.problemIdDisplayName = usage.problemIdDisplayName;
            this.problemId = usage.problemId;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/quota/v1/evaluator/core/persistent_volume_claims_test.go

    	evaluator := NewPersistentVolumeClaimEvaluator(nil)
    	testCases := map[string]struct {
    		pvc                        *core.PersistentVolumeClaim
    		usage                      corev1.ResourceList
    		enableRecoverFromExpansion bool
    	}{
    		"pvc-usage": {
    			pvc: validClaim,
    			usage: corev1.ResourceList{
    				corev1.ResourceRequestsStorage:        resource.MustParse("10Gi"),
    				corev1.ResourcePersistentVolumeClaims: resource.MustParse("1"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. src/cmd/preprofile/main.go

    // itself and is thus wasteful to perform in every invocation of the compiler.
    //
    // Usage:
    //
    //	go tool preprofile [-v] [-o output] -i input
    //
    //
    
    package main
    
    import (
    	"bufio"
    	"cmd/internal/objabi"
    	"cmd/internal/pgo"
    	"cmd/internal/telemetry"
    	"flag"
    	"fmt"
    	"log"
    	"os"
    )
    
    func usage() {
    	fmt.Fprintf(os.Stderr, "usage: go tool preprofile [-v] [-o output] -i input\n\n")
    	flag.PrintDefaults()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 1.9K 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