Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 377 for todolist (1.6 sec)

  1. src/cmd/go/testdata/script/mod_list.txt

    Michael Matloob <******@****.***> 1707153645 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

                        final Document doc = builder.parse(is);
                        final NodeList nodeList = doc.getElementsByTagName("component");
                        for (int i = 0; i < nodeList.getLength(); i++) {
                            final Node node = nodeList.item(i);
                            final NamedNodeMap attributes = node.getAttributes();
                            if (attributes != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Classpath.java

                    && Objects.equal(sourceFolder.getIncludes(), newSourceFolder.getIncludes());
            });
        }
    
        @Override
        protected void store(Node xml) {
            NodeList classpathEntryNodes = (NodeList)xml.get("classpathentry");
            for (Object classpathEntry : classpathEntryNodes) {
                xml.remove((Node) classpathEntry);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. pkg/apis/core/register.go

    		return err
    	}
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&Pod{},
    		&PodList{},
    		&PodStatusResult{},
    		&PodTemplate{},
    		&PodTemplateList{},
    		&ReplicationControllerList{},
    		&ReplicationController{},
    		&ServiceList{},
    		&Service{},
    		&ServiceProxyOptions{},
    		&NodeList{},
    		&Node{},
    		&NodeProxyOptions{},
    		&Endpoints{},
    		&EndpointsList{},
    		&Binding{},
    		&Event{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 13 11:36:48 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/register.go

    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&Pod{},
    		&PodList{},
    		&PodStatusResult{},
    		&PodTemplate{},
    		&PodTemplateList{},
    		&ReplicationController{},
    		&ReplicationControllerList{},
    		&Service{},
    		&ServiceProxyOptions{},
    		&ServiceList{},
    		&Endpoints{},
    		&EndpointsList{},
    		&Node{},
    		&NodeList{},
    		&NodeProxyOptions{},
    		&Binding{},
    		&Event{},
    		&EventList{},
    		&List{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 13 11:36:48 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/WtpFacet.java

        }
    
        public void setFacets(List<Facet> facets) {
            this.facets = facets;
        }
    
        @Override
        protected void load(Node xml) {
            NodeList fixed = (NodeList) xml.get("fixed");
            NodeList installed = (NodeList) xml.get("installed");
            for (Object n : fixed) {
                facets.add(new Facet((Node) n));
            }
            for (Object n : installed) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/graph/GraphMutationTest.java

          while (graph.nodes().size() < NUM_NODES) {
            graph.addNode(gen.nextInt(NODE_POOL_SIZE));
          }
          ArrayList<Integer> nodeList = new ArrayList<>(graph.nodes());
          while (graph.edges().size() < NUM_EDGES) {
            graph.putEdge(getRandomElement(nodeList, gen), getRandomElement(nodeList, gen));
          }
          ArrayList<EndpointPair<Integer>> edgeList = new ArrayList<>(graph.edges());
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Aug 18 16:17:46 UTC 2017
    - 4.2K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/AbstractClasspathEntry.java

        }
    
        private Set<AccessRule> readAccessRules(Node node) {
            Set<AccessRule> accessRules = new LinkedHashSet<>();
            NodeList accessRulesNodes = (NodeList) node.get("accessrules");
            for (Object accessRulesNode : accessRulesNodes) {
                NodeList accessRuleNodes = (NodeList) ((Node) accessRulesNode).get("accessrule");
                for (Object accessRuleNode : accessRuleNodes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. pkg/controller/nodeipam/ipam/cidr_allocator.go

    	var nodeList *v1.NodeList
    	logger := klog.FromContext(ctx)
    
    	// We must poll because apiserver might not be up. This error causes
    	// controller manager to restart.
    	if pollErr := wait.PollUntilContextTimeout(ctx, nodePollInterval, apiserverStartupGracePeriod, true, func(ctx context.Context) (bool, error) {
    		var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/JUnitXmlTestExecutionResult.groovy

                assert it["@name"] == testClass
            }
        }
    
        private Optional<String> getNodeText(NodeList nodeList) {
            assert nodeList.size() <= 1
            if (nodeList.isEmpty()) {
                return Optional.empty()
            } else {
                return Optional.of(nodeList.text())
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top