Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 281 for MiXeD (0.28 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/testdata/valid-configs/kms/multiple-providers-mixed.yaml

    Rita Zhang <******@****.***> 1698166245 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 22:05:31 UTC 2023
    - 367 bytes
    - Viewed (0)
  2. tests/test_response_model_include_exclude.py

        }
    
    
    @app.get(
        "/mixed",
        response_model=Model3,
        response_model_include={"ref2", "name"},
        response_model_exclude={"ref2": {"baz"}},
    )
    def mixed():
        return Model3(
            name="mixed model3 name",
            age=3,
            ref2=Model2(
                ref=Model1(foo="mixed model foo", bar="mixed model bar"),
                baz="mixed model2 baz",
            ),
        )
    
    
    @app.get(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jul 19 19:14:58 UTC 2021
    - 4K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/multicluster/inconsistent-service-1.yaml

        targetPort: 8080
    ---
    # Service is mixed mode(clusterIP and headless), should generate warning.
    apiVersion: v1
    kind: Service
    metadata:
      name: mixed-mode
      namespace: my-namespace
    spec:
      clusterIP: 1.2.3.4
      selector:
        app: my-service
      ports:
      - name: tcp-foo
        protocol: TCP
        port: 8080
        targetPort: 8080
    ---
    # Service is mixed type, should generate warning.
    apiVersion: v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/RegExpPatternStepTest.java

            RegExpPatternStep step = new RegExpPatternStep("MiXeD", true);
            assertTrue(step.matches("MiXeD"));
            assertFalse(step.matches("mixed"));
    
            step = new RegExpPatternStep("MiXeD", false);
            assertTrue(step.matches("MiXeD"));
            assertTrue(step.matches("mixed"));
    
            step = new RegExpPatternStep("MiXeD?", true);
            assertTrue(step.matches("MiXeD1"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/multicluster/inconsistent-service-2.yaml

        port: 8080
        targetPort: 8080
    ---
    # Service is mixed type, should generate warning.
    apiVersion: v1
    kind: Service
    metadata:
      name: mixed-type
      namespace: my-namespace
    spec:
      type: LoadBalancer
      selector:
        app: my-service
      ports:
      - name: tcp-foo
        protocol: TCP
        port: 8080
        targetPort: 8080
    ---
    # Service is mixed mode(clusterIP and headless), should generate warning.
    apiVersion: v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/ztunnel-dashboard.gen.json

             },
             "id": 1,
             "panels": [ ],
             "title": "Process",
             "type": "row"
          },
          {
             "datasource": {
                "type": "datasource",
                "uid": "-- Mixed --"
             },
             "description": "Version number of each running instance",
             "fieldConfig": {
                "defaults": {
                   "custom": {
                      "fillOpacity": 10,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. manifests/addons/dashboards/pilot-dashboard.gen.json

             "id": 1,
             "panels": [ ],
             "title": "Deployed Versions",
             "type": "row"
          },
          {
             "datasource": {
                "type": "datasource",
                "uid": "-- Mixed --"
             },
             "description": "Version number of each running instance",
             "fieldConfig": {
                "defaults": {
                   "custom": {
                      "fillOpacity": 10,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. src/internal/types/testdata/examples/inference.go

    	_ = min(s, "foo")
    	_ = min("foo", "bar")
    }
    
    func mixed[T1, T2, T3 any](T1, T2, T3) {}
    
    func _() {
    	// mixed can be called with explicit instantiation.
    	mixed[int, string, bool](0, "", false)
    
    	// Alternatively, partial type arguments may be provided
    	// (from left to right), and the other may be inferred.
    	mixed[int, string](0, "", false)
    	mixed[int](0, "", false)
    	mixed(0, "", false)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 16:49:45 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/MultipartBodyTest.kt

            .addPart("Hello, World!".toRequestBody(null))
            .build()
        assertThat(body.boundary).isEqualTo("123")
        assertThat(body.type).isEqualTo(MultipartBody.MIXED)
        assertThat(body.contentType().toString())
          .isEqualTo("multipart/mixed; boundary=123")
        assertThat(body.parts.size).isEqualTo(1)
        assertThat(body.contentLength()).isEqualTo(33L)
        val buffer = Buffer()
        body.writeTo(buffer)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. test/ken/divmod.go

    	if n1/qd1 != q1 || n1%qd1 != r1 {
    		println("mixed int64-1", n1, qd1, n1/qd1, n1%qd1)
    		panic("fail")
    	}
    	if n2/qd1 != q2 || n2%qd1 != r2 {
    		println("mixed int64-2", n2, qd1, n2/qd1, n2%qd1)
    		panic("fail")
    	}
    	if n1/qd2 != q3 || n1%qd2 != r3 {
    		println("mixed int64-3", n1, qd2, n1/qd2, n1%qd2)
    		panic("fail")
    	}
    	if n2/qd2 != q4 || n2%qd2 != r4 {
    		println("mixed int64-4", n2, qd2, n2/qd2, n2%qd2)
    		panic("fail")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 5.1K bytes
    - Viewed (0)
Back to top