Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 122 for doesnotexit (0.15 sec)

  1. 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)
  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/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)
  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. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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