Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,659 for Osage (0.19 sec)

  1. 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)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-ivyMetadataRule/groovy/build.gradle

        final Category libraryCategory
        final Usage javaRuntimeUsage
        final Usage javaApiUsage
    
        @Inject
        IvyVariantDerivationRule(ObjectFactory objectFactory) {
            jarLibraryElements = objectFactory.named(LibraryElements, LibraryElements.JAR)
            libraryCategory = objectFactory.named(Category, Category.LIBRARY)
            javaRuntimeUsage = objectFactory.named(Usage, Usage.JAVA_RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/help.txt

    stdout 'bug.*start a bug report'
    
    # go help bug shows usage for bug
    go help bug
    stdout 'usage: go bug'
    stdout 'bug report'
    
    # go bug help is an error (bug takes no arguments)
    ! go bug help
    stderr 'bug takes no arguments'
    
    # go help mod shows mod subcommands
    go help mod
    stdout 'go mod <command>'
    stdout tidy
    
    # go help mod tidy explains tidy
    go help mod tidy
    stdout 'usage: go mod tidy'
    
    # go mod help tidy does too
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppCustomHeaderDependencyIntegrationTest.groovy

                def USAGE = Usage.USAGE_ATTRIBUTE
                def CUSTOM = objects.named(Usage.class, "custom")
                def C_PLUS_PLUS_API = objects.named(Usage.class, Usage.C_PLUS_PLUS_API)
                def NATIVE_RUNTIME = objects.named(Usage.class, Usage.NATIVE_RUNTIME)
                def NATIVE_LINK = objects.named(Usage.class, Usage.NATIVE_LINK)
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. src/flag/export_test.go

    var DefaultUsage = Usage
    
    // ResetForTesting clears all flag state and sets the usage function as directed.
    // After calling ResetForTesting, parse errors in flag handling will not
    // exit the program.
    func ResetForTesting(usage func()) {
    	CommandLine = NewFlagSet(os.Args[0], ContinueOnError)
    	CommandLine.SetOutput(io.Discard)
    	CommandLine.Usage = commandLineUsage
    	Usage = usage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 07 09:29:14 UTC 2022
    - 653 bytes
    - Viewed (0)
  6. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyGradleModuleMetadataPublishIntegrationTest.groovy

                        name: 'api',
                        usage: objects.named(Usage, 'api'),
                        dependencies: configurations.implementation.allDependencies,
                        attributes: testAttributes))
    
                comp.usages.add(new TestUsage(
                        name: 'impl',
                        usage: objects.named(Usage, 'api'),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 30.4K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/replica_calculator.go

    	replicaCount = statusReplicas
    	usageRatio := float64(usage) / (float64(targetAverageUsage) * float64(replicaCount))
    	if math.Abs(1.0-usageRatio) > c.tolerance {
    		// update number of replicas if change is large enough
    		replicaCount = int32(math.Ceil(float64(usage) / float64(targetAverageUsage)))
    	}
    	usage = int64(math.Ceil(float64(usage) / float64(statusReplicas)))
    	return replicaCount, usage, timestamp, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 20.1K 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. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/JavaBasePluginTest.groovy

            consumer                     | producer                     | compatible
            Usage.JAVA_API               | Usage.JAVA_API               | true
            Usage.JAVA_API               | Usage.JAVA_RUNTIME           | true
    
            Usage.JAVA_RUNTIME           | Usage.JAVA_API               | false
            Usage.JAVA_RUNTIME           | Usage.JAVA_RUNTIME           | true
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 16.4K bytes
    - Viewed (0)
Back to top