Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 96 for DoesNotExist (0.37 sec)

  1. istioctl/pkg/checkinject/testdata/check-inject/rev-16-injector.yaml

        matchPolicy: Equivalent
        name: rev.object.sidecar-injector.istio.io
        namespaceSelector:
          matchExpressions:
            - key: istio.io/rev
              operator: DoesNotExist
            - key: istio-injection
              operator: DoesNotExist
        objectSelector:
          matchExpressions:
            - key: sidecar.istio.io/inject
              operator: NotIn
              values:
                - "false"
            - key: istio.io/rev
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/default_installation_failed.yaml

      name: rev.namespace.sidecar-injector.istio.io
      namespaceSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: In
          values:
          - default
        - key: istio-injection
          operator: DoesNotExist
      objectSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: NotIn
          values:
          - canary
      reinvocationPolicy: Never
      rules:
      - apiGroups:
        - ""
        apiVersions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_run_pkg_version.txt

    cd m
    cp go.mod go.mod.orig
    ! go list -m all
    stderr '^go: example.com/cmd@v1.1.0-doesnotexist: reading http.*/mod/example\.com/cmd/@v/v1.1.0-doesnotexist.info: 404 Not Found\n\tserver response: 404 page not found$'
    stderr '^go: example.com/cmd@v1.1.0-doesnotexist: missing go.sum entry for go.mod file; to add it:\n\tgo mod download example.com/cmd$'
    go run example.com/cmd/a@v1.0.0
    stdout '^a@v1.0.0$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGConsoleLoggingIntegrationTest.groovy

            fails "test"
    
            then:
            outputContains("org.gradle.api.GradleException: Could not add a test listener with class 'com.listeners.DoesNotExist'")
            outputContains("java.lang.ClassNotFoundException: com.listeners.DoesNotExist")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/duplicate_mwc.yaml

      name: rev.namespace.sidecar-injector.istio.io
      namespaceSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: In
          values:
          - default
        - key: istio-injection
          operator: DoesNotExist
      objectSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: NotIn
          values:
          - canary
      reinvocationPolicy: Never
      rules:
      - apiGroups:
        - ""
        apiVersions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. releasenotes/notes/gateway-allowedroutes-fix.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 48044
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 218 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/build_cgo_error.txt

    [short] skip
    [!cgo] skip
    
    ! go build .
    stderr '# foo\nfoo.c:'
    ! stderr 'EXTRA string'
    
    -- go.mod --
    module foo
    
    go 1.20
    -- foo.go --
    package foo
    
    import "C"
    -- foo.c --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 20:32:06 UTC 2022
    - 194 bytes
    - Viewed (0)
  8. manifests/charts/default/templates/validatingwebhook.yaml

              - "*"
        failurePolicy: Ignore
        sideEffects: None
        admissionReviewVersions: ["v1beta1", "v1"]
        objectSelector:
          matchExpressions:
            - key: istio.io/rev
              operator: DoesNotExist
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/projectmodule/ProjectDependencyResolverTest.groovy

            0 * _
        }
    
        def "adds failure to resolution result if project does not exist"() {
            def result = Mock(BuildableComponentResolveResult)
            def componentIdentifier = newProjectId(":doesnotexist")
            def overrideMetaData = Mock(ComponentOverrideMetadata)
    
            when:
            registry.getComponent(_) >> null
            and:
            resolver.resolve(componentIdentifier, overrideMetaData, result)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_sum_readonly.txt

    
    # When a sum is needed to load a .mod file for a package outside the build list,
    # we get a generic missing import error.
    ! go list example.com/doesnotexist
    stderr '^no required module provides package example.com/doesnotexist; to add it:\n\tgo get example.com/doesnotexist$'
    
    # When a sum is needed to load a .zip file, we get a more specific error.
    # The .zip file is not downloaded.
    ! go list rsc.io/quote
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 05 15:42:09 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top