Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 674 for todolist (0.26 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. operator/pkg/compare/compare.go

    						" length != 3: %v", name)
    				}
    				toList := strings.Split(toPat, ":")
    				if len(toList) != 3 {
    					return nil, fmt.Errorf("failed to split the rename-to string,"+
    						" length != 3: %v", toPat)
    				}
    
    				// Use the old name if toList has "*" or ""
    				// Otherwise, use the name in toList
    				newList := make([]string, 3)
    				for i := range toList {
    					if toList[i] == "" || toList[i] == "*" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/testing/testvolumespec.go

    func CreateTestClient() *fake.Clientset {
    	var extraPods *v1.PodList
    	var volumeAttachments *storagev1.VolumeAttachmentList
    	var pvs *v1.PersistentVolumeList
    	var nodes *v1.NodeList
    
    	fakeClient := &fake.Clientset{}
    
    	extraPods = &v1.PodList{}
    	fakeClient.AddReactor("list", "pods", func(action core.Action) (handled bool, ret runtime.Object, err error) {
    		obj := &v1.PodList{}
    		podNamePrefix := "mypod"
    		namespace := "mynamespace"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 17 08:48:30 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  6. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    			},
    		},
    	}
    
    	tests := map[string]struct {
    		nodeList                []*v1.Node
    		updatedNodeStatuses     []v1.NodeStatus
    		expectedInitialStates   map[string]ZoneState
    		expectedFollowingStates map[string]ZoneState
    	}{
    		"No Disruption: Node created recently without failure domain labels (happens only at cluster startup)": {
    			nodeList: []*v1.Node{
    				{
    					ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  7. pkg/controller/podgc/gc_controller_test.go

    func setupNewSimpleClient(nodes []*v1.Node, pods []*v1.Pod) *fake.Clientset {
    	podList := &v1.PodList{}
    	for _, podItem := range pods {
    		podList.Items = append(podList.Items, *podItem)
    	}
    	nodeList := &v1.NodeList{}
    	for _, nodeItem := range nodes {
    		nodeList.Items = append(nodeList.Items, *nodeItem)
    	}
    	return fake.NewSimpleClientset(nodeList, podList)
    }
    
    func getDeletedPodNames(client *fake.Clientset) sets.Set[string] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                final Document doc = builder.parse(is);
                final NodeList snapshotNodeList = doc.getElementsByTagName("snapshot");
                if (snapshotNodeList.getLength() > 0) {
                    final NodeList nodeList = snapshotNodeList.item(0).getChildNodes();
                    for (int i = 0; i < nodeList.getLength(); i++) {
                        final Node node = nodeList.item(i);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    	i = 0
    	nodeList, err := informerFactory.Core().V1().Nodes().Lister().List(labels.Everything())
    	for len(nodeList) < nodesNum {
    		if err != nil {
    			t.Fatalf("Error getting list of nodes %v", err)
    		}
    		if i > 100 {
    			t.Fatalf("Time out while waiting for the node informer sync: found %d nodes, expected %d nodes", len(nodeList), nodesNum)
    		}
    		time.Sleep(100 * time.Millisecond)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

        }
    
        protected void parseTextContent(final Node node, final StringBuilder buf) {
            if (node.hasChildNodes()) {
                final NodeList nodeList = node.getChildNodes();
                for (int i = 0; i < nodeList.getLength(); i++) {
                    final Node childNode = nodeList.item(i);
                    parseTextContent(childNode, buf);
                }
            } else if (node.getNodeType() == Node.TEXT_NODE) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 41.9K bytes
    - Viewed (0)
Back to top