Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 69 for SIMPLE (0.12 sec)

  1. pilot/pkg/networking/core/cluster_tls_test.go

    					t.Fatalf("expected alpn list %v; got %v", util.ALPNInMeshH2WithMxc, got)
    				}
    			},
    		},
    		{
    			name:                       "user specified simple tls",
    			mtlsCtx:                    userSupplied,
    			discoveryType:              cluster.Cluster_EDS,
    			tls:                        simpleTLSSettingsWithCerts,
    			expectTransportSocket:      true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  2. gradle/verification-metadata.xml

                <pgp value="4922C79AF3339C8941C3E7AF80662F8192D749A0"/>
             </artifact>
          </component>
          <component group="com.googlecode.json-simple" name="json-simple" version="1.1">
             <artifact name="json-simple-1.1.jar">
                <sha256 value="2d9484f4c649f708f47f9a479465fc729770ee65617dca3011836602264f6439" reason="Artifact is not signed"/>
             </artifact>
          </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ====
    
    Here are some examples of using the `file()` method with different types of arguments:
    
    ====
    include::sample[dir="snippets/files/file/kotlin",files="build.gradle.kts[tags=simple-params]"]
    include::sample[dir="snippets/files/file/groovy",files="build.gradle[tags=simple-params]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/sidecar_simulation_test.go

      name: sidecar
      namespace: default
    spec:
      ingress:
        - defaultEndpoint: 0.0.0.0:9080
          port:
            name: tls
            number: 9080
            protocol: %s
          tls:
            mode: SIMPLE
            privateKey: "httpbinkey.pem"
            serverCertificate: "httpbin.pem"
      workloadSelector:
        labels:
          app: foo
    ---
    `, protocol)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. tests/integration/ambient/baseline_test.go

    					opt.Check = check.OK()
    				}
    			}
    			t.NewSubTest("simple deny").Run(func(t framework.TestContext) {
    				opt = opt.DeepCopy()
    				opt.HTTP.Path = "/deny"
    				opt.Check = CheckDeny
    				overrideCheck(&opt)
    				src.CallOrFail(t, opt)
    			})
    			t.NewSubTest("simple allow").Run(func(t framework.TestContext) {
    				opt = opt.DeepCopy()
    				opt.HTTP.Path = "/allowed"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            def sideEffect2 = Mock(ValueSupplier.SideEffect)
            def expectedUnpackedValue = ["some value", "simple value", "other value"]
    
            when:
            property.add(Providers.of("some value").withSideEffect(sideEffect1))
            property.add(Providers.of("simple value"))
            property.add(Providers.of("other value").withSideEffect(sideEffect2))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. docs/ru/docs/deployment/docker.md

    ![Swagger UI](https://fastapi.tiangolo.com/img/index/index-01-swagger-ui-simple.png)
    
    ## Альтернативная документация API
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    [source,text]
    ----
    ❯ ./gradlew help --task test
    ...
    Type
         Test (org.gradle.api.tasks.testing.Test)
    ----
    
    Note that the IDE can assist you with the required imports, so you only need the simple names of the types, i.e. without the package name part.
    In this case, there's no need to import the `Test` task type as it is part of the Gradle API and is therefore <<kotlin_dsl#sec:implicit_imports,imported implicitly>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    				return false, errors.New("expected error when creating sentinel resource")
    			}
    
    			// Check to see if the returned error message contains our
    			// unique string. UUID should be unique enough to just check
    			// simple existence in the error.
    			if strings.Contains(err.Error(), uuidString) {
    				return true, nil
    			}
    
    			return false, nil
    		})
    	}
    	return err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  10. src/text/template/exec_test.go

    	return &n
    }
    
    func newString(s string) *string {
    	return &s
    }
    
    func newIntSlice(n ...int) *[]int {
    	p := new([]int)
    	*p = make([]int, len(n))
    	copy(*p, n)
    	return p
    }
    
    // Simple methods with and without arguments.
    func (t *T) Method0() string {
    	return "M0"
    }
    
    func (t *T) Method1(a int) int {
    	return a
    }
    
    func (t *T) Method2(a uint16, b string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top