Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,388 for Osage (0.05 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/LazyAttributesIntegrationTest.groovy

                            attributeProvider(Usage.USAGE_ATTRIBUTE, testProvider)
                        }
                    }
                }
                """.stripIndent()
    
            expect:
            fails "outgoingVariants"
            failure.assertHasCause("Unexpected type for attribute 'org.gradle.usage' provided. Expected a value of type org.gradle.api.attributes.Usage but found a value of type java.lang.Integer.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppBinary.java

            Configuration ipc = configurations.resolvableDependencyScopeUnlocked(names.withPrefix("cppCompile"));
            includePathConfiguration = ipc;
            includePathConfiguration.getAttributes().attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage.class, Usage.C_PLUS_PLUS_API));
            includePathConfiguration.getAttributes().attribute(DEBUGGABLE_ATTRIBUTE, identity.isDebuggable());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationCreationRequest.java

         *
         * Does <strong>NOT</strong> check anything to do with deprecated usage.
         *
         * @param conf the existing configuration
         * @return the existing configuration, with its usage now matching the requested usage
         * @throws UnmodifiableUsageException if the usage doesn't match this request and cannot be mutated
         */
        Configuration verifyExistingConfigurationUsage(Configuration conf);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 13:42:17 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryPublishedTargetJvmEnvironmentIntegrationTest.groovy

                    extendsFrom(configurations.implementation)
                    attributes {
                        // This is what AGP 7 will most likely do:
                        attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.JAVA_API))
                        attribute(TargetJvmEnvironment.TARGET_JVM_ENVIRONMENT_ATTRIBUTE, objects.named(TargetJvmEnvironment, TargetJvmEnvironment.ANDROID))
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/UsageDescriber.java

        private static final String UNUSABLE = "This configuration does not allow any usage";
    
        private static final String IS_DEPRECATED = "(but this behavior is marked deprecated)";
    
        private UsageDescriber() { /* not instantiable */ }
    
        /**
         * Builds a human-readable description of the usage allowed by the given role.
         *
         * @param role the role to describe
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 16:04:58 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. 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)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/artifacts/configurations/AbstractRoleBasedConfigurationCreationRequest.java

         *
         * Does <strong>NOT</strong> check anything to do with deprecated usage.
         *
         * @return the existing configuration, with its usage now matching the requested usage
         * @throws UnmodifiableUsageException if the usage doesn't match this request and cannot be mutated
         */
        @Override
        public Configuration verifyExistingConfigurationUsage(Configuration conf) {
            warnAboutReservedName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/script/errors.go

    }
    
    func (e *UsageError) Error() string {
    	usage := e.Command.Usage()
    	suffix := ""
    	if usage.Async {
    		suffix = " [&]"
    	}
    	return fmt.Sprintf("usage: %s %s%s", e.Name, usage.Args, suffix)
    }
    
    // ErrUsage may be returned by a Command to indicate that it was called with
    // invalid arguments; its Usage method may be called to obtain details.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:10 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-ivyMetadataRule/kotlin/build.gradle.kts

        private val libraryCategory: Category
        private val javaRuntimeUsage: Usage
        private val javaApiUsage: Usage
    
        init {
            jarLibraryElements = objectFactory.named(LibraryElements.JAR)
            libraryCategory = objectFactory.named(Category.LIBRARY)
            javaRuntimeUsage = objectFactory.named(Usage.JAVA_RUNTIME)
            javaApiUsage = objectFactory.named(Usage.JAVA_API)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top