Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 277 for list1 (0.15 sec)

  1. cni/pkg/install/testdata/list.conflist.golden

    Ben Leggett <******@****.***> 1716316321 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 867 bytes
    - Viewed (0)
  2. cni/pkg/install/testdata/list-with-istio.conflist

    Ben Leggett <******@****.***> 1716316321 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 724 bytes
    - Viewed (0)
  3. hack/testdata/multi-resource-list.json

    {
       "kind":"List",
       "apiVersion":"v1",
       "items":[
          {
            "kind":"Service",
            "apiVersion":"v1",
            "metadata":{
              "name":"mock",
              "labels":{
                "app":"mock"
              }
            },
            "spec":{
              "ports": [{
                "protocol": "TCP",
                "port": 99,
                "targetPort": 9949
              }],
              "selector":{
                "app":"mock"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. cni/pkg/install/testdata/list-with-istio.conflist.golden

    Ben Leggett <******@****.***> 1716316321 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 867 bytes
    - Viewed (0)
  5. hack/testdata/multi-resource-list-modify.json

    {
       "kind":"List",
       "apiVersion":"v1",
       "items":[
          {
            "kind":"Service",
            "apiVersion":"v1",
            "metadata":{
              "name":"mock",
              "labels":{
                "app":"mock",
                "status":"replaced"
              }
            },
            "spec":{
              "ports": [{
                "protocol": "TCP",
                "port": 99,
                "targetPort": 9949
              }],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    	XListMapKeys []string
    
    	// x-kubernetes-list-type annotates a list to further describe its topology.
    	// This extension must only be used on lists and may have 3 possible values:
    	//
    	// 1) `atomic`: the list is treated as a single entity, like a scalar.
    	//      Atomic lists will be entirely replaced when updated. This extension
    	//      may be used on any type of list (struct, scalar, ...).
    	// 2) `set`:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/LimitedDescription.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.util.internal;
    
    import com.google.common.collect.Lists;
    
    import java.util.LinkedList;
    import java.util.List;
    
    /**
     * Discards old entries when current count is over the limit.
     *
     * @deprecated Used only by a deprecated public class GFileUtils. Prefer Guava's EvictionQueue in the new code.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/YesNoQuestionPromptEvent.java

     */
    
    package org.gradle.internal.logging.events;
    
    import com.google.common.collect.Lists;
    import org.apache.commons.lang.BooleanUtils;
    import org.apache.commons.lang.StringUtils;
    
    import java.util.List;
    
    public class YesNoQuestionPromptEvent extends PromptOutputEvent {
        public static final List<String> YES_NO_CHOICES = Lists.newArrayList("yes", "no");
        private final String question;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. docs/pt/docs/tutorial/body-nested-models.md

    ## Campos do tipo Lista
    
    Você pode definir um atributo como um subtipo. Por exemplo, uma `list` do Python:
    
    ```Python hl_lines="14"
    {!../../../docs_src/body_nested_models/tutorial001.py!}
    ```
    
    Isso fará com que tags seja uma lista de itens mesmo sem declarar o tipo dos elementos desta lista.
    
    ## Campos do tipo Lista com um parâmetro de tipo
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/ListSerializer.java

     * limitations under the License.
     */
    package org.gradle.internal.serialize;
    
    import com.google.common.collect.Lists;
    
    import java.util.Collections;
    import java.util.List;
    
    public class ListSerializer<T> extends AbstractCollectionSerializer<T, List<T>> implements Serializer<List<T>> {
    
        public ListSerializer(Serializer<T> entrySerializer) {
            super(entrySerializer);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top