Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for todolist (0.2 sec)

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

    ====================================================\n   */\n\n  $.fn[NAME] = TodoList._jQueryInterface\n  $.fn[NAME].Constructor = TodoList\n  $.fn[NAME].noConflict = function () {\n    $.fn[NAME] = JQUERY_NO_CONFLICT\n    return TodoList._jQueryInterface\n  }\n\n  return TodoList\n})(jQuery)\n\nexport default TodoList\n","/**\n * --------------------------------------------\n * AdminLTE CardWidget.js\n * License MIT\n * --------------------------------------------\n */\n\nconst CardWidget = (($) => {\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            given:
            container.add(a)
    
            when:
            container.add(a)
    
            then:
            toList(container) == [a]
    
            when:
            container.addAll([a, b])
    
            then:
            toList(container) == [a, b]
        }
    
        def "element added using provider is not realized when added"() {
            containerAllowsExternalProviders()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.pb.go

    }
    
    var xxx_messageInfo_PodCondition proto.InternalMessageInfo
    
    func (m *PodList) Reset()      { *m = PodList{} }
    func (*PodList) ProtoMessage() {}
    func (*PodList) Descriptor() ([]byte, []int) {
    	return fileDescriptor_c0604dbfc428ecfb, []int{2}
    }
    func (m *PodList) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *PodList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  4. pkg/controller/daemon/daemon_controller.go

    		return dsc.updateDaemonSetStatus(ctx, ds, nodeList, hash, false)
    	}
    
    	err = dsc.updateDaemonSet(ctx, ds, nodeList, hash, dsKey, old)
    	statusErr := dsc.updateDaemonSetStatus(ctx, ds, nodeList, hash, true)
    	switch {
    	case err != nil && statusErr != nil:
    		// If there was an error, and we failed to update status,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	backingStorage := &dummyStorage{
    		getListFn: func(_ context.Context, _ string, _ storage.ListOptions, listObj runtime.Object) error {
    			podList := listObj.(*example.PodList)
    			var err error
    			switch listCalls {
    			case 0:
    				podList.ListMeta = metav1.ListMeta{ResourceVersion: "1"}
    			case 1:
    				podList.ListMeta = metav1.ListMeta{ResourceVersion: "10"}
    			default:
    				err = fmt.Errorf("unexpected list call")
    			}
    			listCalls++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	result3 := example.PodList{}
    	if err := store.GetList(ctx, "/pods", options, &result3); err != nil {
    		t.Fatalf("failed to list objects: %v", err)
    	}
    
    	options.ResourceVersion = result3.ResourceVersion
    	options.ResourceVersionMatch = metav1.ResourceVersionMatchExact
    
    	result4 := example.PodList{}
    	if err := store.GetList(ctx, "/pods", options, &result4); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                            return new Pair<>(pair[0].trim(), sortValue);
                        }
                        return null;
                    }).filter(o -> o != null && keySet.add(o.getFirst())).collect(Collectors.toList()));
                }
                propMap.put(DEFAULT_SORT_VALUES, list);
            }
            return list.stream().map(p -> {
                final String key = p.getFirst();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                        .map(pomFile -> ((Callable<InterimResult>)
                                () -> build(projectIndex, pomFile, concat(aggregatorFiles, pomFile), root, recursive)))
                        .collect(Collectors.toList());
                try {
                    List<Future<InterimResult>> futures = executor.invokeAll(tasks);
                    List<InterimResult> list = new ArrayList<>();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            def filteredFileTreeDependencies = collection.getAsFileTree().matching({}).buildDependencies.getDependencies(null)
    
            then:
            dependencies.toList() == [task]
            fileTreeDependencies.toList() == [task]
            filteredFileTreeDependencies.toList() == [task]
            3 * taskResolver.resolveTask("task") >> task
            0 * _
        }
    
        def "does not resolve paths when visiting dependencies"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	// initialRV is used to initate the watcher at the beginning of the world.
    	podList := example.PodList{}
    	options := storage.ListOptions{
    		Predicate: storage.Everything,
    		Recursive: true,
    	}
    	if err := store.GetList(ctx, "/pods", options, &podList); err != nil {
    		t.Fatalf("Failed to list pods: %v", err)
    	}
    	initialRV := podList.ResourceVersion
    
    	options = storage.ListOptions{
    		ResourceVersion: initialRV,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top