Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of about 10,000 for lisp (0.07 sec)

  1. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-roles.yaml

        - persistentvolumes
        verbs:
        - list
        - watch
      - apiGroups:
        - ""
        resources:
        - nodes
        verbs:
        - get
        - list
        - watch
      - apiGroups:
        - ""
        resources:
        - nodes/status
        verbs:
        - patch
        - update
      - apiGroups:
        - ""
        resources:
        - pods
        verbs:
        - list
        - watch
      - apiGroups:
        - ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/meta/help.go

    )
    
    // GetItemsPtr returns a pointer to the list object's Items member.
    // If 'list' doesn't have an Items member, it's not really a list type
    // and an error will be returned.
    // This function will either return a pointer to a slice, or an error, but not both.
    // TODO: this will be replaced with an interface in the future
    func GetItemsPtr(list runtime.Object) (interface{}, error) {
    	obj, err := getItemsPtr(list)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 16:25:43 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

                val buckets: List<List<PerformanceTestDuration>> = splitIntoBuckets(list, toIntFunction, largeElementSplitFunction, smallElementAggregateFunction, expectedBucketNumber, Integer.MAX_VALUE, { listOf() })
                    .filter { it.isNotEmpty() }
    
                buckets.mapIndexed { index: Int, classesInBucket: List<PerformanceTestDuration> ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 11:22:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/templates/clusterrole.yaml

        resources: ["customresourcedefinitions"]
        verbs: ["get", "list", "watch"]
    
      # discovery and routing
      - apiGroups: [""]
        resources: ["pods", "nodes", "services", "namespaces", "endpoints"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["discovery.k8s.io"]
        resources: ["endpointslices"]
        verbs: ["get", "list", "watch"]
    
    {{- if .Values.pilot.taint.enabled }}
      - apiGroups: [""]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/OrderingTest.java

        List<Integer> list = Arrays.asList(3, 4, 5, -1);
        List<Integer> result = numberOrdering.leastOf(list, list.size() + 1);
        assertTrue(result instanceof RandomAccess);
        assertListImmutable(result);
        assertEquals(ImmutableList.of(-1, 3, 4, 5), result);
      }
    
      public void testLeastOfIterator_simple_nPlusOne() {
        List<Integer> list = Arrays.asList(3, 4, 5, -1);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/Collections2Test.java

      }
    
      public void testOrderedPermutationSetEmpty() {
        List<Integer> list = newArrayList();
        Collection<List<Integer>> permutationSet = Collections2.orderedPermutations(list);
    
        assertEquals(1, permutationSet.size());
        assertThat(permutationSet).contains(list);
    
        Iterator<List<Integer>> permutations = permutationSet.iterator();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy_test.go

    			roles[role.Name] = &role
    		}
    
    		for _, name := range names.List() {
    			list.Items = append(list.Items, roles[name])
    		}
    	}
    
    	testObjects(t, list, "namespace-roles.yaml")
    }
    
    func TestBootstrapNamespaceRoleBindings(t *testing.T) {
    	list := &api.List{}
    	names := sets.NewString()
    	roleBindings := map[string]runtime.Object{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/reflect/AbstractInvocationHandlerTest.java

      }
    
      @SuppressWarnings("unchecked") // proxy of List<String>
      private static List<String> newDelegatingList(List<String> delegate) {
        return Reflection.newProxy(List.class, new DelegatingInvocationHandler(delegate));
      }
    
      @SuppressWarnings("unchecked") // proxy of List<String>
      private static List<String> newDelegatingListWithEquals(List<String> delegate) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 15:49:06 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_pseudo.txt

    go get ...test@d7ae1e4
    go list -m all
    stdout '^github.com/rsc/legacytest v2\.0\.0\+incompatible$'
    
    # v1.2.1-0.pseudo
    go get ...test@d2d4c3e
    go list -m all
    stdout '^github.com/rsc/legacytest v1\.2\.1-0\.\d{14}-d2d4c3ea6623$'
    
    # v1.2.0
    go get ...test@9f6f860
    go list -m all
    stdout '^github.com/rsc/legacytest v1\.2\.0$'
    
    # v1.1.0-pre.0.pseudo
    go get ...test@fb3c628
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformerTest.java

            assertEquals("タイトル", map.get("title"));
            assertEquals("第一章 第一節 ほげほげふがふが LINK 第2章 第2節", map.get("body"));
            final List<String> list = new ArrayList<String>();
            list.add("リスト1");
            list.add("リスト2");
            list.add("リスト3");
            assertEquals(list, map.get("list"));
        }
    
        public void test_getData_dataMap_entity() throws Exception {
            final String value = "<?xml version=\"1.0\"?>\n"//
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top