Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for Parenti (0.29 sec)

  1. src/main/webapp/js/admin/adminlte.min.js.map

    (ClassName.OPEN)\n      })\n    }\n\n    toggle(event) {\n\n      const $relativeTarget = $(event.currentTarget)\n      const $parent = $relativeTarget.parent()\n\n      let treeviewMenu = $parent.find('> ' + Selector.TREEVIEW_MENU)\n\n      if (!treeviewMenu.is(Selector.TREEVIEW_MENU)) {\n\n        if (!$parent.is(Selector.LI)) {\n          treeviewMenu = $parent.parent().find('> ' + Selector.TREEVIEW_MENU)\n        }\n\n        if (!treeviewMenu.is(Selector.TREEVIEW_MENU)) {\n          return\n...
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 07:55:41 GMT 2020
    - 77K bytes
    - Viewed (1)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                throws ModelBuilderException {
            problems.setSource(childModel);
    
            Parent parent = childModel.getParent();
    
            String groupId = parent.getGroupId();
            String artifactId = parent.getArtifactId();
            String version = parent.getVersion();
    
            ModelResolver modelResolver = getModelResolver(request);
            Objects.requireNonNull(
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 59.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            public ModelSource resolveModel(Session session, Parent parent, AtomicReference<Parent> modified)
                    throws ModelResolverException {
                try {
                    org.apache.maven.model.Parent p = new org.apache.maven.model.Parent(parent);
                    ModelSource source = toSource(resolver.resolveModel(p));
                    if (p.getDelegate() != parent) {
                        modified.set(p.getDelegate());
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 55.2K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/bootstrap.min.js

    a.length&&(this._selector=s,this._triggerArray.push(r))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var t=a.prototype;return t.toggle=function(){g(this._element).hasClass(yt)?this.hide():this.show()},t.show=function(){var t,e,n=this;if(!this._isTransitioning&&!g(this._element).hasClass(yt)&&(this._parent&&0===(t=[].slice.call(this._parent.querySelectorAll(Dt)).filt...
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 58.6K bytes
    - Viewed (3)
  5. src/main/webapp/js/bootstrap.min.js

    a.length&&(this._selector=s,this._triggerArray.push(r))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var t=a.prototype;return t.toggle=function(){g(this._element).hasClass(yt)?this.hide():this.show()},t.show=function(){var t,e,n=this;if(!this._isTransitioning&&!g(this._element).hasClass(yt)&&(this._parent&&0===(t=[].slice.call(this._parent.querySelectorAll(Dt)).filt...
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 58.6K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/filesystem_interface.h

                                                    TF_Status* status);
    
      /// Creates the directory specified by `path`, assuming parent exists.
      ///
      /// Plugins:
      ///   * Must set `status` to `TF_OK` if directory was created.
      ///   * Must set `status` to `TF_NOT_FOUND` if one of the parents entries in
      ///     `path` doesn't exist.
      ///   * Must set `status` to `TF_FAILED_PRECONDITION` if `path` is invalid.
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("https://parent.url/child", pom.getValue("url"));
            assertEquals("https://parent.url/org", pom.getValue("organization/url"));
            assertEquals("https://parent.url/license.txt", pom.getValue("licenses[1]/url"));
            assertEquals("https://parent.url/viewvc/child", pom.getValue("scm/url"));
            assertEquals("https://parent.url/scm/child", pom.getValue("scm/connection"));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  8. cmd/iam.go

    // policy is the role's policy.
    //
    // - inherited from parent - this is the case for AssumeRole API, where the
    // parent user is an actual real user with their own (permanent) credentials and
    // policy association.
    //
    // - inherited from "virtual" parent - this is the case for AssumeRoleWithLDAP
    // where the parent user is the DN of the actual LDAP user. The parent user
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 21:28:16 GMT 2024
    - 71.1K bytes
    - Viewed (1)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCallResolver.kt

        private fun KtElement.getContainingDotQualifiedExpressionForSelectorExpression(): KtQualifiedExpression? {
            val parent = parent
            if (parent is KtDotQualifiedExpression && parent.selectorExpression == this) return parent
            if (parent is KtSafeQualifiedExpression && parent.selectorExpression == this) return parent
            return null
        }
    
        private fun createKtCall(
            psi: KtElement,
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 70.8K bytes
    - Viewed (1)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

            Parent parent = m.getParent();
            if (parent != null) {
                validateStringNotEmpty(
                        "parent.groupId", problems, Severity.FATAL, Version.BASE, parent.getGroupId(), parent);
    
                validateStringNotEmpty(
                        "parent.artifactId", problems, Severity.FATAL, Version.BASE, parent.getArtifactId(), parent);
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 65K bytes
    - Viewed (0)
Back to top