Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 110 for DoesNotExist (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apimachinery/pkg/selection/operator.go

    limitations under the License.
    */
    
    package selection
    
    // Operator represents a key/field's relationship to value(s).
    // See labels.Requirement and fields.Requirement for more details.
    type Operator string
    
    const (
    	DoesNotExist Operator = "!"
    	Equals       Operator = "="
    	DoubleEquals Operator = "=="
    	In           Operator = "in"
    	NotEquals    Operator = "!="
    	NotIn        Operator = "notin"
    	Exists       Operator = "exists"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 1K bytes
    - Viewed (0)
  5. test/fixedbugs/bug313.go

    // Issue 1284
    
    package bug313
    
    /*
    6g bug313.dir/[ab].go
    
    Before:
    bug313.dir/b.go:7: internal compiler error: fault
    
    Now:
    bug313.dir/a.go:10: undefined: fmt.DoesNotExist
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 350 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/work_gowork.txt

    env GOWORK=stop.work
    ! go list a # require absolute path
    ! stderr panic
    env GOWORK=doesnotexist
    ! go list a
    ! stderr panic
    
    env GOWORK=$GOPATH/src/stop.work
    go list -n a
    go build -n a
    go test -n a
    
    -- stop.work --
    go 1.18
    
    use ./a
    -- a/a.go --
    package a
    -- a/a_test.go --
    package a
    -- a/go.mod --
    module a
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 16 15:58:47 UTC 2022
    - 314 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_tags.txt

    package m
    
    import _ "example.com/version"
    
    -- tools.go --
    // +build tools
    
    package tools
    
    import _ "rsc.io/quote"
    
    -- ignore.go --
    // +build ignore
    
    package ignore
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:18:36 UTC 2021
    - 566 bytes
    - Viewed (0)
  8. tests/integration/iop-ambient-test-defaults.yaml

          accessLogFile: /dev/stdout
          # Just used to exclude for testing
          discoverySelectors:
          - matchExpressions:
            - key: istio.io/test-exclude-namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 952 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work.txt

    ! go work init doesnotexist
    stderr 'go: directory doesnotexist does not exist'
    go env GOWORK
    ! stdout .
    
    go work init ./a ./b
    cmpenv go.work go.work.want
    go env GOWORK
    stdout '^'$WORK'(\\|/)gopath(\\|/)src(\\|/)go.work$'
    
    ! go run  example.com/b
    stderr 'a(\\|/)a.go:4:8: no required module provides package rsc.io/quote; to add it:\n\tcd '$WORK(\\|/)gopath(\\|/)src(\\|/)a'\n\tgo get rsc.io/quote'
    cd a
    go get rsc.io/quote
    cat go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/cover_pattern.txt

    package p
    
    import (
    	"testing"
    	"time"
    )
    
    func Test1(t *testing.T) {
    	time.Sleep(200 * time.Millisecond)
    }
    -- sleepybad/p.go --
    package p
    
    import ^
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 683 bytes
    - Viewed (0)
Back to top