Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 799 for SIMPLE (0.09 sec)

  1. tests/integration/ambient/waypoint_test.go

    metadata:
      name: disable-hbone
    spec:
      selector:
        matchLabels:
          gateway.networking.k8s.io/gateway-name: simple-http-waypoint
      environmentVariables:
        ISTIO_META_DISABLE_HBONE_SEND: "true"
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: simple-http-waypoint
      namespace: {{.Namespace}}
      labels:
        istio.io/dataplane-mode: ambient
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. doc/next/6-stdlib/2-unique.md

    Two `Handle[T]` are equal if and only if the values used to produce the
    handles are equal, allowing programs to deduplicate values and reduce
    their memory footprint.
    Comparing two `Handle[T]` values is efficient, reducing down to a simple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 566 bytes
    - Viewed (0)
  3. tests/integration/pilot/testdata/tunneling/destination-rule.tmpl.yaml

    spec:
      host: external-forward-proxy.{{ .externalNamespace }}.svc.cluster.local
      trafficPolicy:
        portLevelSettings:
        - port:
            number: {{ .forwardProxyPort }}
          tls:
            mode: SIMPLE
            sni: external-forward-proxy.{{ .externalNamespace }}.svc.cluster.local
            insecureSkipVerify: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 20 19:37:50 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/appendixa_test.go

    			decoded: nil,
    		},
    		{
    			example: hex("f7"),
    			reject:  "only simple values false, true, and null have a clear analog",
    			fixme:   "the undefined simple value should not successfully decode as nil",
    		},
    		{
    			example: hex("f0"),
    			reject:  "only simple values false, true, and null have a clear analog",
    			fixme:   "simple values other than false, true, and null should be rejected",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 18:59:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/plugin-notations.toml

    [plugins]
    simple = "org.example:1.0"
    without-version = { id = "org.example" }
    with-id = { id = "org.example", version = "1.1"}
    with-ref = { id = "org.example", version.ref = "ref"}
    with-rich1 = { id = "org.example", version = { prefer = "1.0" } }
    with-rich2 = { id = "org.example", version.prefer = "1.0" }
    with-rich3 = { id = "org.example", version.require = "1.0" }
    with-rich4 = { id = "org.example", version.strictly = "1.0" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 668 bytes
    - Viewed (0)
  6. pkg/registry/admissionregistration/rest/storage_apiserver.go

    func (p RESTStorageProvider) v1Storage(apiResourceConfigSource serverstorage.APIResourceConfigSource, restOptionsGetter generic.RESTOptionsGetter) (map[string]rest.Storage, error) {
    	storage := map[string]rest.Storage{}
    
    	// use a simple wrapper so that initialization order won't cause a nil getter
    	var policyGetter rest.Getter
    
    	r, err := resolver.NewDiscoveryResourceResolver(p.DiscoveryClient)
    	if err != nil {
    		return storage, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/containingDeclarationProvider/FirStandaloneNormalAnalysisSourceModuleContainingDeclarationProviderByReferenceTestGenerated.java

      }
    
      @Test
      @TestMetadata("simple.kt")
      public void testSimple() {
        runTest("analysis/analysis-api/testData/components/containingDeclarationProvider/containingDeclarationByReference/simple.kt");
      }
    
      @Test
      @TestMetadata("topLevelFunctionFromInside.kt")
      public void testTopLevelFunctionFromInside() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:20:29 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/containingDeclarationProvider/FirIdeNormalAnalysisSourceModuleContainingDeclarationProviderByReferenceTestGenerated.java

      }
    
      @Test
      @TestMetadata("simple.kt")
      public void testSimple() {
        runTest("analysis/analysis-api/testData/components/containingDeclarationProvider/containingDeclarationByReference/simple.kt");
      }
    
      @Test
      @TestMetadata("topLevelFunctionFromInside.kt")
      public void testTopLevelFunctionFromInside() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:20:29 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. pkg/kube/krt/index.go

    // limitations under the License.
    
    package krt
    
    import (
    	"sync"
    
    	"istio.io/istio/pkg/ptr"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // Index maintains a simple index over an informer
    type Index[I any, K comparable] struct {
    	mu      sync.RWMutex
    	objects map[K]sets.Set[Key[I]]
    	c       Collection[I]
    	extract func(o I) []K
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 04:53:45 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/containingDeclarationProvider/FirIdeDependentAnalysisSourceModuleContainingDeclarationProviderByReferenceTestGenerated.java

      }
    
      @Test
      @TestMetadata("simple.kt")
      public void testSimple() {
        runTest("analysis/analysis-api/testData/components/containingDeclarationProvider/containingDeclarationByReference/simple.kt");
      }
    
      @Test
      @TestMetadata("topLevelFunctionFromInside.kt")
      public void testTopLevelFunctionFromInside() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:20:29 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top