Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 459 for T_nested (0.16 sec)

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

                    $annotation
                    Property<ResolvedArtifactResult> getNested()
                }
    
                abstract class TaskWithInput extends DefaultTask {
    
                    private final NestedBean nested = project.objects.newInstance(NestedBean.class)
    
                    $annotation
                    ResolvedArtifactResult getDirect() { null }
    
                    $annotation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcIncludedBuildIntegrationTest.groovy

        }
    
        def "buildSrc can apply plugins contributed by nested included build"() {
            file("buildSrc/build.gradle") << """
                plugins {
                    id "test-plugin"
                }
            """
    
            writePluginTo(file("included/nested"))
    
            settingsFile << """
                includeBuild("included")
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 02:04:28 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/ObjectExtensionInstantiationIntegrationTest.groovy

            expect:
            succeeds()
        }
    
        def "can create instance of interface with read-only @Nested interface property"() {
            buildFile """
                interface Bean {
                    Property<String> getName()
                }
    
                interface Thing {
                    @Nested
                    Bean getValue()
                }
    
                extensions.create("thing", Thing)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 16.9K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

        def "handles invalid nested bean classloader"() {
            given:
            buildScript """
                ${customTaskCode('foo', 'bar')}
                def classLoader = new GroovyClassLoader(this.class.classLoader)
                def c = classLoader.parseClass '''
                    class A {
                        @$Input.name
                        String input = 'nested'
                    }
                '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/fields/selector_test.go

    	}
    	if (&notHasTerm{}).Empty() {
    		t.Errorf("notHasTerm should not be empty")
    	}
    	if !(andTerm{andTerm{}}).Empty() {
    		t.Errorf("Nested andTerm should be empty")
    	}
    	if (andTerm{&hasTerm{"a", "b"}}).Empty() {
    		t.Errorf("Nested andTerm should not be empty")
    	}
    }
    
    func TestRequiresExactMatch(t *testing.T) {
    	testCases := map[string]struct {
    		S     Selector
    		Label string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 08:00:38 UTC 2017
    - 11.2K bytes
    - Viewed (0)
  6. tests/test_annotated.py

    
    def test_nested_router():
        app = FastAPI()
    
        router = APIRouter(prefix="/nested")
    
        @router.get("/test")
        async def test(var: Annotated[str, Query()] = "bar"):
            return {"foo": var}
    
        app.include_router(router)
    
        client = TestClient(app)
    
        response = client.get("/nested/test")
        assert response.status_code == 200
        assert response.json() == {"foo": "bar"}
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. scan.go

    							}
    						} else {
    							matchedFieldCount[column] = 1
    						}
    					} else if names := utils.SplitNestedRelationName(column); len(names) > 1 { // has nested relation
    						if rel, ok := sch.Relationships.Relations[names[0]]; ok {
    							subNameCount := len(names)
    							// nested relation fields
    							relFields := make([]*schema.Field, 0, subNameCount-1)
    							relFields = append(relFields, rel.Field)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/AbstractTypeMetadataWalker.java

            @Override
            protected void onNestedNodeCycle(@Nullable String firstOccurrenceQualifiedName, String secondOccurrenceQualifiedName) {
                throw new IllegalStateException(String.format("Cycles between nested beans are not allowed. Cycle detected between: '%s' and '%s'.", firstOccurrenceQualifiedName, secondOccurrenceQualifiedName));
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation.go

    	fieldLevel
    )
    
    type ValidationOptions struct {
    	// AllowNestedAdditionalProperties allows additionalProperties to be specified in
    	// nested contexts (allOf, anyOf, oneOf, not).
    	AllowNestedAdditionalProperties bool
    
    	// AllowNestedXValidations allows x-kubernetes-validations to be specified in
    	// nested contexts (allOf, anyOf, oneOf, not).
    	AllowNestedXValidations bool
    
    	// AllowValidationPropertiesWithAdditionalProperties allows
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    package workflow
    
    import (
    	"fmt"
    	"strings"
    
    	"github.com/pkg/errors"
    	"github.com/spf13/cobra"
    	"github.com/spf13/pflag"
    )
    
    // phaseSeparator defines the separator to be used when concatenating nested
    // phase names
    const phaseSeparator = "/"
    
    // RunnerOptions defines the options supported during the execution of a
    // kubeadm composable workflows
    type RunnerOptions struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
Back to top