Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 154 for parentMod (0.13 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelGraph.java

            }
    
            return found;
        }
    
        @Nullable
        public ModelNodeInternal remove(ModelNode node) {
            ModelNodeInternal parentNode = find(node.getPath().getParent());
            if (parentNode != null) {
                parentNode.removeLink(node.getPath().getName());
            }
    
            return flattened.remove(node.getPath());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/results/AttachParentTestResultProcessorTest.groovy

            processor.started(suite, suiteStartEvent)
            processor.started(test, new TestStartEvent(200L))
    
            then:
            1 * target.started(suite, suiteStartEvent)
            1 * target.started(test, { it.parentId == 'suite' })
        }
    
        def canHaveMoreThanOneRootSuite() {
            TestDescriptorInternal root = suite('root')
            TestDescriptorInternal other = suite('suite1')
            TestDescriptorInternal test = test('test')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. src/main/webapp/js/jquery-3.6.3.min.js

    t?parseInt(t,10):ht.test(e.nodeName)||gt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),v.optSelected||(E.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),E.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){E.propFix[this...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 87.8K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp

                                        <label for="doc.parent_id" class="col-sm-3 text-sm-right col-form-label">parent_id</label>
                                        <div class="col-sm-9">
                                            <la:errors property="doc.parent_id"/>
                                            <la:text styleId="doc.parent_id" property="doc.parent_id" styleClass="form-control"/>
                                        </div>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 24.9K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Dependency.java

        String getScope();
    
        /**
         * The scope of this library. If <code>null</code>, the scope attribute is not added.
         * @since 4.5
         */
        void setScope(String scope);
    
        void addToNode(Node parentNode);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ClientForwardingBuildOperationListener.java

            String name = buildOperation.getName();
            String displayName = buildOperation.getDisplayName();
            OperationIdentifier parentId = eventConsumer.findStartedParentId(buildOperation);
            return new DefaultOperationDescriptor(id, name, displayName, parentId);
        }
    
        static AbstractOperationResult toOperationResult(OperationFinishEvent result) {
            Throwable failure = result.getFailure();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/gradients/tape/tape_operation.cc

    #include "tensorflow/c/eager/gradients.h"
    
    namespace tensorflow {
    namespace gradients {
    TapeOperation::TapeOperation(AbstractOperation* parent_op, Tape* tape,
                                 const GradientRegistry& registry)
        : AbstractOperation(kTape),
          parent_op_(parent_op),
          tape_(tape),
          registry_(registry) {
      // TODO(b/172003047): Consider making AbstractOperation RefCounted.
      // parent_op_->Ref();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 06:16:45 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/oldresult/TransientConfigurationResultsBuilder.java

                            break;
                        case EDGE:
                            long parentId = decoder.readSmallLong();
                            long childId = decoder.readSmallLong();
                            DefaultResolvedDependency parent = allDependencies.get(parentId);
                            DefaultResolvedDependency child = allDependencies.get(childId);
                            if (parent == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/sparsetree.go

    type SparseTree []SparseTreeNode
    
    // newSparseTree creates a SparseTree from a block-to-parent map (array indexed by Block.ID).
    func newSparseTree(f *Func, parentOf []*Block) SparseTree {
    	t := make(SparseTree, f.NumBlocks())
    	for _, b := range f.Blocks {
    		n := &t[b.ID]
    		if p := parentOf[b.ID]; p != nil {
    			n.parent = p
    			n.sibling = t[p.ID].child
    			t[p.ID].child = b
    		}
    	}
    	t.numberBlock(f.Entry, 1)
    	return t
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/AbstractMavenModule.groovy

                    packaging(pomPackaging)
                    description("Published on ${formattedPublishTimestamp}")
                    if (parentPom) {
                        parent {
                            groupId(parentPom.groupId)
                            artifactId(parentPom.artifactId)
                            version(parentPom.version)
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 29.4K bytes
    - Viewed (0)
Back to top