Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 824 for repeated (0.12 sec)

  1. staging/src/k8s.io/api/apiserverinternal/v1alpha1/generated.proto

      // The encodingVersion must be included in the decodableVersions.
      // +listType=set
      repeated string decodableVersions = 3;
    
      // The API server can serve these versions.
      // DecodableVersions must include all ServedVersions.
      // +listType=set
      repeated string servedVersions = 4;
    }
    
    // Storage version of a specific resource.
    message StorageVersion {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/rbac/v1beta1/generated.proto

      // Items is a list of ClusterRoles
      repeated ClusterRole items = 2;
    }
    
    // PolicyRule holds information that describes a policy rule, but does not contain information
    // about who the rule applies to or which namespace the rule applies to.
    message PolicyRule {
      // Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
      repeated string verbs = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // +listType=set
      repeated string verbs = 5;
    
      // shortNames is a list of suggested short names of the resource.
      // +listType=set
      repeated string shortNames = 6;
    
      // categories is a list of the grouped resources this resource belongs to (e.g. 'all').
      // Clients may use this to simplify acting on multiple resource types at once.
      // +listType=set
      repeated string categories = 7;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. pkg/test/echo/proto/echo.proto

      string caCertFile = 7;
      // Skip verifying peer's certificate.
      bool insecureSkipVerify = 8;
    }
    
    message Alpn {
      repeated string value = 1;
    }
    
    message ForwardEchoResponse {
      repeated string output = 1;
    }
    
    enum ProxyProtoVersion {
      NONE = 0;
      V1 = 1;
      V2 = 2;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 31 17:42:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. tests/test_repeated_parameter_alias.py

                                "schema": {"title": "Repeated Alias", "type": "string"},
                            },
                            {
                                "in": "query",
                                "name": "repeated_alias",
                                "required": True,
                                "schema": {"title": "Repeated Alias", "type": "string"},
                            },
                        ],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. test/assign.go

    		y = *x             // ok
    		*x = y             // ok
    		_ = x
    		_ = y
    	}
    	{
    		var x = 1
    		{
    			x, x := 2, 3 // ERROR ".*x.* repeated on left side of :=|x redeclared in this block"
    			_ = x
    		}
    		_ = x
    	}
    	{
    		a, a := 1, 2 // ERROR ".*a.* repeated on left side of :=|a redeclared in this block"
    		_ = a
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 20:13:36 UTC 2020
    - 1K bytes
    - Viewed (0)
  7. test/fixedbugs/issue6772.go

    // license that can be found in the LICENSE file.
    
    package p
    
    func f1() {
    	for a, a := range []int{1, 2, 3} { // ERROR "a.* repeated on left side of :=|a redeclared"
    		println(a)
    	}
    }
    
    func f2() {
    	var a int
    	for a, a := range []int{1, 2, 3} { // ERROR "a.* repeated on left side of :=|a redeclared"
    		println(a)
    	}
    	println(a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 17:50:13 UTC 2020
    - 454 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/testing/junitplatform-jupiter/kotlin/src/test/java/org/gradle/junitplatform/JupiterTest.java

    public class JupiterTest {
        @Test
        public void ok() {
            System.out.println("Hello from JUnit Jupiter!");
        }
    
        @RepeatedTest(2)
        public void repeated() {
            System.out.println("This will be repeated!");
        }
    
        @BeforeEach
        public void beforeEach() {
            System.out.println("This will be called before each method!");
        }
    
        @BeforeAll
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 945 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/testing/junitplatform-jupiter/groovy/src/test/java/org/gradle/junitplatform/JupiterTest.java

    public class JupiterTest {
        @Test
        public void ok() {
            System.out.println("Hello from JUnit Jupiter!");
        }
    
        @RepeatedTest(2)
        public void repeated() {
            System.out.println("This will be repeated!");
        }
    
        @BeforeEach
        public void beforeEach() {
            System.out.println("This will be called before each method!");
        }
    
        @BeforeAll
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 945 bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_activity.proto

        // A histogram of the TF operations in this cluster.
        repeated OpAndCount op_histogram = 3;
      }
    
      // The number of nodes in the graph that are not inside an XLA cluster.
      int32 unclustered_node_count = 1;
    
      // The number of nodes in the graph that are in an XLA cluster.
      int32 clustered_node_count = 2;
    
      // All of the XLA clusters in the TF graph.
      repeated Cluster clusters = 3;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 15 03:11:33 UTC 2022
    - 3.6K bytes
    - Viewed (0)
Back to top