Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,561 for okdown (0.13 sec)

  1. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/ProviderAssertions.groovy

            def producer = provider.producer
            assert !producer.known
            producer.visitProducerTasks { assert false }
            producer.visitContentProducerTasks { assert false }
        }
    
        void assertHasKnownProducer(ProviderInternal<?> provider) {
            def producer = provider.producer
            assert producer.known
            producer.visitProducerTasks { assert false }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/java/toolchain-filters/groovy/build.gradle

    // The bodies of the if statements are intentionally not indented to make the user guide page prettier.
    // tag::toolchain-known-vendor[]
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(11)
            vendor = JvmVendorSpec.ADOPTIUM
        }
    }
    // end::toolchain-known-vendor[]
    
    } else if (testToolchain == "matchingVendor") {
    // tag::toolchain-matching-vendor[]
    java {
        toolchain {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1004 bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/autoscaling/v1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/autoscaling/v1";
    
    // ContainerResourceMetricSource indicates how to scale on a resource metric known to
    // Kubernetes, as specified in the requests and limits, describing a single container in
    // each of the pods of the current scale target(e.g. CPU or memory). The values will be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/autoscaling/v1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/autoscaling/v1";
    
    // ContainerResourceMetricSource indicates how to scale on a resource metric known to
    // Kubernetes, as specified in the requests and limits, describing a single container in
    // each of the pods of the current scale target(e.g. CPU or memory). The values will be
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/autoscaling/v1/types.go

    	// will be averaged together before being compared to the target value.
    	PodsMetricSourceType MetricSourceType = "Pods"
    	// ResourceMetricSourceType is a resource metric known to Kubernetes, as
    	// specified in requests and limits, describing each pod in the current
    	// scale target (e.g. CPU or memory).  Such metrics are built in to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelMapIntegrationTest.groovy

                }
            }
            """
    
            expect:
            fails "components"
            failure.assertHasCause("Cannot create an instance of type 'NonRegisteredComponent' as this type is not known. Known types: ${ComponentSpec.name}, SampleComponent.")
        }
    
        def "cannot add unregistered type to model map of extensible type"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  7. src/debug/dwarf/entry.go

    			vers := b.format.version()
    			if vers == 0 {
    				b.error("unknown version for DW_FORM_ref_addr")
    			} else if vers == 2 {
    				val = Offset(b.addr())
    			} else {
    				is64, known := b.format.dwarf64()
    				if !known {
    					b.error("unknown size for DW_FORM_ref_addr")
    				} else if is64 {
    					val = Offset(b.uint64())
    				} else {
    					val = Offset(b.uint32())
    				}
    			}
    		case formRef1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/features/features.go

    func KnownFeatures(f *FeatureList) []string {
    	var known []string
    	for k, v := range *f {
    		if v.HiddenInHelpText {
    			continue
    		}
    
    		pre := ""
    		if v.PreRelease != featuregate.GA {
    			pre = fmt.Sprintf("%s - ", v.PreRelease)
    		}
    		known = append(known, fmt.Sprintf("%s=true|false (%sdefault=%t)", k, pre, v.Default))
    	}
    	sort.Strings(known)
    	return known
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/internal/metaobject/PropertyAccess.java

    import java.util.Map;
    
    /**
     * Provides dynamic access to properties of some object.
     */
    public interface PropertyAccess {
        /**
         * Returns true when this object is known to have the given property.
         *
         * <p>Note that not every property is known. Some properties require an attempt to get or set their value before they are discovered.</p>
         */
        boolean hasProperty(String name);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:01:06 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtScope.kt

         *
         * This function needs to retrieve a set of all possible names before processing the scope.
         * The overload with `names: Collection<Name>` should be used when the candidate name set is known.
         */
        public fun getCallableSymbols(nameFilter: KaScopeNameFilter = { true }): Sequence<KaCallableSymbol>
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top