Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 324 for Osage (0.54 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

                }
            }
        }
    
        /**
         * If this configuration has a role set upon creation, conditionally warn upon usage mutation.
         * Configurations with roles set upon creation should not have their usage changed. In 9.0,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMavenPublishIntegrationTest.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
    - 13.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-configuration/build.gradle.kts

        testFixturesImplementation(project(":internal-integ-testing"))
    
        testRuntimeOnly(project(":distributions-jvm")) {
            because("ProjectBuilder tests load services from a Gradle distribution.  Toolchain usage requires JVM distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-full"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 888 bytes
    - Viewed (0)
  4. manifests/addons/dashboards/pilot-dashboard.gen.json

                "y": 1
             },
             "id": 3,
             "panels": [ ],
             "title": "Resource Usage",
             "type": "row"
          },
          {
             "datasource": {
                "type": "datasource",
                "uid": "-- Mixed --"
             },
             "description": "Memory usage of each running instance",
             "fieldConfig": {
                "defaults": {
                   "custom": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. src/crypto/x509/verify.go

    		if len(cert.ExtKeyUsage) == 0 && len(cert.UnknownExtKeyUsage) == 0 {
    			// The certificate doesn't have any extended key usage specified.
    			continue
    		}
    
    		for _, usage := range cert.ExtKeyUsage {
    			if usage == ExtKeyUsageAny {
    				// The certificate is explicitly good for any usage.
    				continue NextCert
    			}
    		}
    
    		const invalidUsage ExtKeyUsage = -1
    
    	NextRequestedUsage:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/InitScriptExecutionIntegrationTest.groovy

            }
        }
    
        def 'init script classpath configuration has proper usage attribute'() {
            def initScript = file('init.gradle')
            initScript << """
    initscript {
        configurations.classpath {
            def value = attributes.getAttribute(Usage.USAGE_ATTRIBUTE)
            assert value.name == Usage.JAVA_RUNTIME
        }
    }
    """
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. pkg/kubelet/images/image_gc_manager.go

    // which garbage collection will be run.
    type ImageGCPolicy struct {
    	// Any usage above this threshold will always trigger garbage collection.
    	// This is the highest usage we will allow.
    	HighThresholdPercent int
    
    	// Any usage below this threshold will never trigger garbage collection.
    	// This is the lowest threshold we will try to garbage collect to.
    	LowThresholdPercent int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            configurationCacheRun "run"
    
            then: "cache is NO longer valid"
            output.count(usage.endsWith("presence") ? "ON CI" : "NOT CI") == 1
            outputContains "file 'ci' has changed"
            configurationCache.assertStateStored()
    
            where:
            expression                                                | usage
            "asText.map(String::toBoolean).getOrElse(false)"          | "text"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  9. src/cmd/go/internal/telemetrycmd/telemetry.go

    func runTelemetry(ctx context.Context, cmd *base.Command, args []string) {
    	if len(args) == 0 {
    		fmt.Println(telemetry.Mode())
    		return
    	}
    
    	if len(args) != 1 {
    		cmd.Usage()
    	}
    
    	mode := args[0]
    	if mode != "local" && mode != "off" && mode != "on" {
    		cmd.Usage()
    	}
    	if old := telemetry.Mode(); old == mode {
    		return
    	}
    
    	if err := telemetry.SetMode(mode); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. src/cmd/distpack/pack.go

    	goos       string
    	goarch     string
    )
    
    func main() {
    	log.SetPrefix("distpack: ")
    	log.SetFlags(0)
    	telemetry.Start()
    	flag.Usage = usage
    	flag.Parse()
    	telemetry.Inc("distpack/invocations")
    	telemetry.CountFlags("distpack/flag:", *flag.CommandLine)
    	if flag.NArg() != 0 {
    		usage()
    	}
    
    	// Load context.
    	goroot = runtime.GOROOT()
    	if goroot == "" {
    		log.Fatalf("missing $GOROOT")
    	}
    	gohostos = runtime.GOOS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top