Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 154 for parentMod (0.14 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/ClassDoc.groovy

                classSection << n
            }
    
            propertiesTable = getTable('Properties')
            propertiesSection = propertiesTable.parentNode
            methodsTable = getTable('Methods')
            methodsSection = methodsTable.parentNode
        }
    
        String getId() { return id }
    
        String getName() { return className }
    
        String getSimpleName() { return simpleName }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationBridgeTest.groovy

            }
        }
    
        BuildOperationDescriptor d(Long id, Long parentId, Long details) {
            BuildOperationDescriptor.displayName(id.toString()).details(details).build(
                new OperationIdentifier(id),
                parentId == null ? null : new OperationIdentifier(parentId)
            )
        }
    
        def "parentId is of last parent that a notification was sent for"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationFixture.groovy

                        }
    
                        ops.put(startedNotification.notificationOperationId, new BuildOpsEntry(id: startedNotification.notificationOperationId?.id,
                                parentId: startedNotification.notificationOperationParentId?.id,
                                detailsType: detailsType.name,
                                details: details,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 11:47:00 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/initialization/BuildInitializationBuildOperationsIntegrationTest.groovy

            configureBuildBuildOperations.details.buildPath == ":"
            configureBuildBuildOperations.result.isEmpty()
    
            loadProjectsBuildOperation.details.buildPath == ":"
            loadProjectsBuildOperation.result.rootProject.projectDir == settingsFile.parent
            buildOperations.first('Configure build').id == loadProjectsBuildOperation.parentId
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 27 15:36:36 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/CompileJavaBuildOperationsFixture.groovy

            operations = new BuildOperationsFixture(executer, projectDir)
        }
    
        BuildOperationRecord getAt(String taskPath) {
            operations.only(CompileJavaBuildOperationType) {
                operations.parentsOf(it).contains(operations.only(ExecuteTaskBuildOperationType) { it.details.taskPath == taskPath })
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/initialization/ClassLoaderScopeRegistryListener.java

     *
     * @see ClassLoaderScopeRegistry
     * @see ClassLoaderScope
     */
    @EventScope(Scope.UserHome.class)
    public interface ClassLoaderScopeRegistryListener {
    
        void childScopeCreated(ClassLoaderScopeId parentId, ClassLoaderScopeId childId, @Nullable ClassLoaderScopeOrigin origin);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestEventSerializer.java

                String name = decoder.readString();
                String displayName = decoder.readString();
                CompositeIdGenerator.CompositeId parentId = idSerializer.read(decoder);
                return new DefaultNestedTestSuiteDescriptor(id, name, displayName, parentId);
            }
    
            @Override
            public void write(Encoder encoder, DefaultNestedTestSuiteDescriptor value) throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/operations/TestListenerBuildOperationAdapter.java

            OperationIdentifier parentId = parentOperation == null ? CurrentBuildOperationRef.instance().getId() : parentOperation.descriptor.getId();
            return BuildOperationDescriptor.displayName(testDescriptor.getDisplayName())
                .details(details)
                .build(newOperationIdentifier(), parentId);
        }
    
        private OperationIdentifier newOperationIdentifier() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ModuleLibrary.java

            this.exported = exported;
        }
    
        @Override
        public void addToNode(Node parentNode) {
            Map<String, Object> orderEntryAttributes = new LinkedHashMap<>();
            orderEntryAttributes.put("type", "module-library");
            orderEntryAttributes.putAll(getAttributeMapForScopeAndExported());
            Node libraryNode = parentNode.appendNode("orderEntry", orderEntryAttributes).appendNode("library");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/TestStartEventTest.groovy

            TestStartEvent event = new TestStartEvent(200L)
    
            expect:
            def newEvent = event.withParentId('parent')
            newEvent != event
            newEvent.startTime == 200L
            newEvent.parentId == 'parent'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top