Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,234 for parent_ (0.17 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/ProgressOperationsTest.groovy

            then:
            thrown(IllegalStateException)
        }
    
        def "missing parents are tolerated"() {
            when:
            def op = ops.start("Building", null, new OperationIdentifier(1), new OperationIdentifier(122))
    
            then:
            op.parent == null
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. src/os/path.go

    		i--
    	}
    	if i < 0 {
    		i = 0
    	}
    
    	// If there is a parent directory, and it is not the volume name,
    	// recurse to ensure parent directory exists.
    	if parent := path[:i]; len(parent) > len(filepathlite.VolumeName(path)) {
    		err = MkdirAll(parent, perm)
    		if err != nil {
    			return err
    		}
    	}
    
    	// Parent now exists; invoke Mkdir and use its result.
    	err = Mkdir(path, perm)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. 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...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (1)
  4. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemGroup.java

    import javax.annotation.concurrent.Immutable;
    
    /**
     * Represents a group of problems.
     * <p>
     * Groups are organized in hierarchy where the parent group should represent the more broad problem group.
     * <p>
     * Two problem groups  are considered equal if their {@link #getName()} and their parents' are equal.
     *
     * @since 8.8
     * @see ProblemId
     */
    @Incubating
    @Immutable
    public interface ProblemGroup {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. maven-model-builder/src/test/resources/poms/inheritance/empty-urls-parent.xml

    Christian Wansart <******@****.***> 1573139799 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/references/TestReferenceResolveResultRenderer.kt

            }
            val container = (symbol as? KaSymbolWithKind)?.getContainingSymbol() ?: return null
            val parents = generateSequence(container) { it.getContainingSymbol() }.toList().asReversed()
            return "<local>: " + parents.joinToString(separator = ".") { (it as? KaNamedSymbol)?.name?.asString() ?: "<no name>" }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri May 31 19:52:16 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/route-binding.status.yaml.golden

    metadata:
      creationTimestamp: null
      name: invalid-bind-cross-namespace
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
          message: hostnames matched parent hostname "*.slctr-labels.example", but namespace
            "default" is not allowed by the parent
          reason: NotAllowedByListeners
          status: "False"
          type: Accepted
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. cmd/genman/gen_kube_man.go

    		fmt.Fprintf(out, "# OPTIONS INHERITED FROM PARENT COMMANDS\n")
    		printFlags(out, flags)
    		fmt.Fprintf(out, "\n")
    	}
    }
    
    func genMarkdown(command *cobra.Command, parent, docsDir string) {
    	dparent := strings.Replace(parent, " ", "-", -1)
    	name := command.Name()
    	dname := name
    	if len(parent) > 0 {
    		dname = dparent + "-" + name
    		name = parent + " " + name
    	}
    
    	out := new(bytes.Buffer)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 12:03:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/FileSystemSnapshotSerializer.java

        }
    
        private static String toAbsolutePath(Collection<String> parents, String fileName) {
            int length = fileName.length() + parents.size()  + parents.stream()
                .mapToInt(String::length)
                .sum();
            StringBuilder buffer = new StringBuilder(length);
            for (String parent : parents) {
                buffer.append(parent);
                buffer.append(File.separatorChar);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 15:45:55 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/compact/compact.go

    		return cci <= coreTags[i]
    	})
    	if i == len(coreTags) || coreTags[i] != cci {
    		return 0, false
    	}
    	return ID(i), true
    }
    
    // Parent returns the ID of the parent or the root ID if id is already the root.
    func (id ID) Parent() ID {
    	return parents[id]
    }
    
    // Tag converts id to an internal language Tag.
    func (id ID) Tag() language.Tag {
    	if int(id) >= len(coreTags) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top