Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 701 for todolist (0.25 sec)

  1. android/guava-tests/test/com/google/common/collect/ListsTest.java

        /* toList modifications reflected in fromList */
        toList.remove(0);
        assertEquals(asList(5, 9, 3), fromList);
        toList.add(7);
        assertEquals(asList(7, 5, 9, 3), fromList);
        toList.add(5);
        assertEquals(asList(5, 7, 5, 9, 3), fromList);
        toList.remove(Integer.valueOf(5));
        assertEquals(asList(5, 7, 9, 3), fromList);
        toList.set(1, 8);
        assertEquals(asList(5, 7, 8, 3), fromList);
        toList.clear();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ListsTest.java

        /* toList modifications reflected in fromList */
        toList.remove(0);
        assertEquals(asList(5, 9, 3), fromList);
        toList.add(7);
        assertEquals(asList(7, 5, 9, 3), fromList);
        toList.add(5);
        assertEquals(asList(5, 7, 5, 9, 3), fromList);
        toList.remove(Integer.valueOf(5));
        assertEquals(asList(5, 7, 9, 3), fromList);
        toList.set(1, 8);
        assertEquals(asList(5, 7, 8, 3), fromList);
        toList.clear();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/AbstractLongRunningOperation.java

        public T addArguments(String... arguments) {
            operationParamsBuilder.addArguments(CollectionUtils.toList(Preconditions.checkNotNull(arguments)));
            return getThis();
        }
    
        @Override
        public T addArguments(Iterable<String> arguments) {
            operationParamsBuilder.addArguments(CollectionUtils.toList(Preconditions.checkNotNull(arguments)));
            return getThis();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/replica_calculator.go

    	podList, err := c.podLister.Pods(namespace).List(selector)
    	if err != nil {
    		return 0, fmt.Errorf("unable to get pods while calculating replica count: %v", err)
    	}
    
    	if len(podList) == 0 {
    		return 0, fmt.Errorf("no pods returned by selector while calculating replica count")
    	}
    
    	readyPodCount := 0
    
    	for _, pod := range podList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/core/ModelPathTest.groovy

            expect:
            path.toString() == "<root>"
            path.toList() == []
            path.name == ""
            path.size() == 0
            path.parent == null
            path.rootParent == null
        }
    
        def "path with single component is top level"() {
            def path = ModelPath.path("p")
    
            expect:
            path.toString() == "p"
            path.toList() == ["p"]
            path.name == "p"
            path.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/AbstractTypeScopeTest.kt

            val callables = typeScope.getCallableSignatures().toList()
            return prettyPrint {
                callables.forEach {
                    appendLine(stringRepresentation(it))
                }
            }
        }
    
        private fun KaSession.prettyPrintForTests(typeScope: KaTypeScope): String {
            val callables = typeScope.getCallableSignatures().toList()
            return prettyPrint {
                callables.forEach {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XPathAPI.java

            } catch (final Exception e) {
                throw new CrawlerSystemException("Failed to create XPath instance.", e);
            }
        }
    
        /**
         *  Use an XPath string to select a nodelist.
         *  XPath namespace prefixes are resolved from the contextNode.
         *
         *  @param contextNode The node to start searching from.
         *  @param expression A valid XPath string.
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/printers/jsonpath_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	objects := map[string]runtime.Object{
    		"pod":             &v1.Pod{ObjectMeta: om("pod")},
    		"emptyPodList":    &v1.PodList{},
    		"nonEmptyPodList": &v1.PodList{Items: []v1.Pod{{}}},
    		"endpoints": &v1.Endpoints{
    			Subsets: []v1.EndpointSubset{{
    				Addresses: []v1.EndpointAddress{{IP: "127.0.0.1"}, {IP: "localhost"}},
    				Ports:     []v1.EndpointPort{{Port: 8080}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 15 21:58:20 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/converter_test.go

    			ClusterScoped: false,
    			ToVersion:     "example.com/v2",
    			SourceObject: &unstructured.UnstructuredList{
    				Object: map[string]interface{}{
    					"apiVersion": "example.com/v1",
    					"kind":       "fooList",
    				},
    				Items: []unstructured.Unstructured{
    					{
    						Object: map[string]interface{}{
    							"apiVersion": "example.com/v1",
    							"kind":       "foo",
    							"other":      "data",
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 15:27:39 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/PgpKeyGrouper.java

                            .filter(trustedKey -> trustedKey.getKeyId().equals(e.getKey()))
                            .noneMatch(entry::checkAndMarkSatisfiedBy))
                        .collect(Collectors.toList());
                    if (pgpKeys.size() > 1) {
                        // if there's only one entry, we won't "normalize" into globally trusted keys
                        List<ModuleComponentIdentifier> moduleComponentIds = pgpKeys.stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top