Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 153 for Osage (0.04 sec)

  1. 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)
  2. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

            isCanBeConsumed = false
            isVisible = false
        }
    
    fun libraryResolver(extends: List<Configuration>) =
        configurations.creating {
            attributes {
                attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage.JAVA_RUNTIME))
                attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.LIBRARY))
                attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements.JAR))
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. cni/pkg/cmd/root.go

    }
    
    func registerStringParameter(name, value, usage string) {
    	rootCmd.Flags().String(name, value, usage)
    	registerEnvironment(name, value, usage)
    }
    
    func registerIntegerParameter(name string, value int, usage string) {
    	rootCmd.Flags().Int(name, value, usage)
    	registerEnvironment(name, value, usage)
    }
    
    func registerBooleanParameter(name string, value bool, usage string) {
    	rootCmd.Flags().Bool(name, value, usage)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

        }
    
        def "can add attributes to variants with existing usage attribute"() {
            given:
            repository {
                'org.test:module:1.0'()
            }
            buildFile << """
                def quality = Attribute.of("quality", String)
    
                configurations {
                    conf.attributes.attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage.class, Usage.JAVA_API))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. cmd/server-main.go

    		Name:   "log-prefix",
    		Usage:  "specify the log prefix name for the server log",
    		EnvVar: "MINIO_LOG_PREFIX",
    		Hidden: true,
    	},
    }
    
    var serverCmd = cli.Command{
    	Name:   "server",
    	Usage:  "start object storage server",
    	Flags:  append(ServerFlags, GlobalFlags...),
    	Action: serverMain,
    	CustomHelpTemplate: `NAME:
      {{.HelpName}} - {{.Usage}}
    
    USAGE:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (1)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/AbstractMutableModuleComponentResolveMetadataTest.groovy

            def metadata = createMetadata(id)
    
            given:
            def v1 = metadata.addVariant("api", attributes(usage: "compile"),)
            v1.addFile("f1", "dir/f1")
            v1.addFile("f2.jar", "f2-1.2.jar")
            def v2 = metadata.addVariant("runtime", attributes(usage: "runtime"),)
            v2.addFile("f1", "dir/f1")
    
            expect:
            metadata.variants.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/qos_container_manager_linux.go

    // that was attempted to be set in the first Update() and adjusts
    // their memory limit to the usage to prevent further growth.
    func (m *qosContainerManagerImpl) retrySetMemoryReserve(configs map[v1.PodQOSClass]*CgroupConfig, percentReserve int64) {
    	// Unreclaimable memory usage may already exceeded the desired limit
    	// Attempt to set the limit near the current usage to put pressure
    	// on the cgroup and prevent further growth.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/cmd/go/main.go

    	toolchain.Select()
    
    	telemetry.StartWithUpload() // Run the upload process. Opening the counter file is idempotent.
    	flag.Usage = base.Usage
    	flag.Parse()
    	telemetry.Inc("go/invocations")
    	telemetry.CountFlags("go/flag:", *flag.CommandLine)
    
    	args := flag.Args()
    	if len(args) < 1 {
    		base.Usage()
    	}
    
    	cfg.CmdName = args[0] // for error messages
    	if args[0] == "help" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. src/cmd/doc/main.go

    	showAll    bool   // -all flag
    	showCmd    bool   // -cmd flag
    	showSrc    bool   // -src flag
    	short      bool   // -short flag
    )
    
    // usage is a replacement usage function for the flags package.
    func usage() {
    	fmt.Fprintf(os.Stderr, "Usage of [go] doc:\n")
    	fmt.Fprintf(os.Stderr, "\tgo doc\n")
    	fmt.Fprintf(os.Stderr, "\tgo doc <pkg>\n")
    	fmt.Fprintf(os.Stderr, "\tgo doc <sym>[.<methodOrField>]\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIvyPublishIntegrationTest.groovy

                    String name
                    Set usages = []
                    Set variants = []
                }
    
                class TestUsage implements UsageContext {
                    String name
                    Usage usage
                    Set dependencies = []
                    Set dependencyConstraints = []
                    Set artifacts = []
                    Set capabilities = []
                    Set globalExcludes = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top