Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for withProjection (0.18 sec)

  1. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/model/internal/fixture/ModelRegistryHelperExtension.java

                    }
                })
                .withProjection(ModelMapModelProjection.unmanaged(
                    modelType,
                    ChildNodeInitializerStrategyAccessors.of(NodeBackedModelMap.createUsingParentNode(modelType)))
                )
                .withProjection(UnmanagedModelProjection.of(instantiatorType))
                .build();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/platform/base/binary/BaseBinarySpec.java

                    @Override
                    public void execute(MutableModelNode modelNode) {
                        modelNode.setPrivateData(BINARY_TASKS_COLLECTION, tasks);
                    }
                })
                .withProjection(new UnmanagedModelProjection<BinaryTasksCollection>(BINARY_TASKS_COLLECTION))
                .descriptor(modelNode.getDescriptor())
                .build();
            modelNode.addLink(itemRegistration);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

            // the type of the property node instead.
            ModelProjection projection = new EmptyReferenceProjection<T>(type);
            ModelRegistration registration = ModelRegistrations.of(getPath().child(name))
                .withProjection(projection)
                .descriptor(descriptor).build();
            ModelReferenceNode referenceNode = new ModelReferenceNode(modelRegistry, registration, this);
            if (target != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            this.ruleExtractor = ruleExtractor;
            this.projectPath = projectPath;
            this.projectState = projectState;
            ModelRegistration rootRegistration = ModelRegistrations.of(ModelPath.ROOT).descriptor("<root>").withProjection(EmptyModelProjection.INSTANCE).build();
            modelGraph = new ModelGraph(new ModelElementNode(this, rootRegistration, null));
            ruleBindings = new RuleBindings();
            transition(modelGraph.getRoot(), Created, false);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
Back to top