Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,731 for simple2 (0.31 sec)

  1. pilot/pkg/config/kube/gateway/testdata/reference-policy-service.yaml

        namespace: istio-system
      hostnames: ["simple.domain.example"]
      rules:
      - backendRefs:
        - name: my-svc
          namespace: service
          port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: backend-not-allowed
      namespace: istio-system
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
      hostnames: ["simple2.domain.example"]
      rules:
      - backendRefs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/reference-policy-service.yaml.golden

      creationTimestamp: null
      name: backend-not-allowed-0-istio-autogenerated-k8s-gateway
      namespace: istio-system
    spec:
      gateways:
      - istio-system/gateway-istio-autogenerated-k8s-gateway-simple
      hosts:
      - simple2.domain.example
      http:
      - name: istio-system.backend-not-allowed.0
        route:
        - destination:
            host: my-svc.service.svc.domain.suffix
            port:
              number: 80
          weight: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope_test.go

    		expect      string
    	}{
    		{map[string][]byte{"simple": []byte(strings.Repeat("a", 33*1024))}, maxSizeErrMsg},
    		{map[string][]byte{"simple": []byte(strings.Repeat("a", 32*1024))}, maxSizeErrMsg},
    		{map[string][]byte{"simple": []byte(strings.Repeat("a", 64*1024))}, maxSizeErrMsg},
    		{map[string][]byte{"simple": []byte(strings.Repeat("a", 31*1024)), "simple2": []byte(strings.Repeat("a", 1024))}, maxSizeErrMsg},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:50:20 UTC 2023
    - 47.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForDependency/tests/exclude-transitive-for-dependency.sample.conf

        flags: --quiet
        expected-output-file: sample1.out
    },{
        executable: gradle
        args: -Psample2 compileJava printArtifacts
        flags: --quiet
        expected-output-file: sample2.out
    },{
         executable: gradle
         args: -Psample3 compileJava printArtifacts
         flags: --quiet
         expected-output-file: sample3.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 409 bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/compilation/simple.txt

    public final class SimpleKt {
        // source: 'simple.kt'
        public final static method main(): void
        public synthetic static method main(p0: java.lang.String[]): void
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 21 15:34:34 UTC 2023
    - 173 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ExclusiveVariantsIntegrationTest.groovy

            outputContains("org.gradle:sample:1.0 (default capability)")
        }
    
        def "attribute combinations can be repeated if capabilities differ without a warning"() {
            given:
            settingsFile << "rootProject.name = 'sample'"
            buildFile << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:34:52 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. src/runtime/metrics/sample.go

    import (
    	_ "runtime" // depends on the runtime via a linkname'd function
    	"unsafe"
    )
    
    // Sample captures a single metric sample.
    type Sample struct {
    	// Name is the name of the metric sampled.
    	//
    	// It must correspond to a name in one of the metric descriptions
    	// returned by All.
    	Name string
    
    	// Value is the value of the metric sample.
    	Value Value
    }
    
    // Implemented in the runtime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/containingDeclarationProvider/containingModuleByFile/simple.txt

    File: simple.kt
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 16:00:27 UTC 2024
    - 61 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForDependency/kotlin/build.gradle.kts

    repositories {
        mavenCentral()
    }
    
    if (project.hasProperty("sample1")) {
    // tag::exclude-transitive-dependencies-1[]
    dependencies {
        implementation("commons-beanutils:commons-beanutils:1.9.4") {
            exclude(group = "commons-collections", module = "commons-collections")
        }
    }
    // end::exclude-transitive-dependencies-1[]
    } else if (project.hasProperty("sample2")) {
    // tag::exclude-transitive-dependencies-2[]
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForDependency/groovy/build.gradle

    repositories {
        mavenCentral()
    }
    
    if (project.hasProperty('sample1')) {
    // tag::exclude-transitive-dependencies-1[]
    dependencies {
        implementation('commons-beanutils:commons-beanutils:1.9.4') {
            exclude group: 'commons-collections', module: 'commons-collections'
        }
    }
    // end::exclude-transitive-dependencies-1[]
    } else if (project.hasProperty('sample2')) {
    // tag::exclude-transitive-dependencies-2[]
        dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top