Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,828 for okdown (0.1 sec)

  1. 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)
  2. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/MethodMap.java

                            // known maximally specific, so remove the old maximum.
                            maximal.remove();
                            break;
    
                        case LESS_SPECIFIC:
                            // This method is less specific than some of the
                            // currently known maximally specific methods, so we
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  3. 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)
  4. platforms/native/language-native/src/main/java/org/gradle/language/BinaryCollection.java

         *
         * @param action The action to execute for each element becomes known.
         */
        void whenElementKnown(Action<? super T> action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. 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)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/ScenarioDefinition.java

        /**
         * The Gradle arguments.
         */
        List<String> getArgs();
    
        /**
         * The Gradle JVM args. Null if not known
         */
        @Nullable
        List<String> getGradleOpts();
    
        /**
         * Was the daemon used. Null if not known
         */
        @Nullable
        Boolean getDaemon();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. 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)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtTypeScope.kt

         *
         * This implementation is more optimal than the one with `nameFilter` and should be used when the candidate name set is known.
         */
        public fun getCallableSignatures(names: Collection<Name>): Sequence<KaCallableSignature<*>>
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinCompilerWarningsTest.kt

        @Test
        @Requires(IntegTestPreconditions.NotEmbeddedExecutor::class)
        fun `experimental compiler warnings are not shown for known experimental features`() {
            withBuildScriptForKotlinCompile()
            withKotlinSourceFile()
    
            val result = build("compileKotlin")
    
            result.assertNotOutput(experimentalWarningHeader)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. pkg/config/schema/collection/schemas_test.go

    	_ "google.golang.org/protobuf/types/known/emptypb"
    	_ "google.golang.org/protobuf/types/known/structpb"
    
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/collection"
    	"istio.io/istio/pkg/config/schema/resource"
    )
    
    var (
    	emptyResource = resource.Builder{
    		Kind:         "Empty",
    		Plural:       "empties",
    		ProtoPackage: "google.golang.org/protobuf/types/known/emptypb",
    		Proto:        "google.protobuf.Empty",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top