Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,696 for IsSkip (0.34 sec)

  1. src/cmd/go/testdata/script/list_pkgconfig_error.txt

    [!cgo] skip 'test verifies cgo pkg-config errors'
    [!exec:pkg-config] skip 'test requires pkg-config tool'
    
    ! go list -export .
    stderr '^# example\n# \[pkg-config .*\]\n(.*\n)*Package .* not found'
    
    -- go.mod --
    module example
    go 1.20
    -- example.go --
    package example
    
    // #cgo pkg-config: libnot-a-valid-cgo-library
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:23:49 UTC 2023
    - 345 bytes
    - Viewed (0)
  2. internal/dsync/lock-args_gen_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(left) > 0 {
    		t.Errorf("%d bytes left over after UnmarshalMsg(): %q", len(left), left)
    	}
    
    	left, err = msgp.Skip(bts)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(left) > 0 {
    		t.Errorf("%d bytes left over after Skip(): %q", len(left), left)
    	}
    }
    
    func BenchmarkMarshalMsgLockArgs(b *testing.B) {
    	v := LockArgs{}
    	b.ReportAllocs()
    	b.ResetTimer()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. platforms/software/antlr/src/integTest/groovy/org/gradle/api/plugins/antlr/Antlr4PluginIntegrationTest.groovy

                }
                r  : 'hello' ID ;
                ID : [a-z]+ ;
                WS : [ \\t\\r\\n]+ -> skip ;
            """
    
            file("grammar-builder/src/main/antlr/Another.g4") << """grammar Another;
                r  : 'hello' ID ;
                ID : [a-z]+ ;
                WS : [ \\t\\r\\n]+ -> skip ;
            """
        }
    
        private badGrammar() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/get_404_meta.txt

    # golang.org/issue/13037: 'go get' was not parsing <meta> tags in 404 served over HTTPS.
    
    [!net:bazil.org] skip
    [!git] skip
    
    env GONOSUMDB=bazil.org,github.com,golang.org
    env GO111MODULE=on
    env GOPROXY=direct
    go get bazil.org/fuse/fs/fstestutil
    
    
    -- go.mod --
    module m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 278 bytes
    - Viewed (0)
  5. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/ParallelSourceDependencyIntegrationTest.groovy

                    version = '1.2'
                }
            """
            repo.commit('initial')
            repo.createLightWeightTag('1.2')
        }
    
        @ToBeFixedForConfigurationCache(skip = ToBeFixedForConfigurationCache.Skip.FAILS_TO_CLEANUP)
        def "can populate into same dir in parallel"() {
            given:
            createDirs("A", "B", "C", "D")
            settingsFile << """
                include 'A', 'B', 'C', 'D'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/version_cshared.txt

    [short] skip
    [!cgo] skip '-buildmode=c-shared requires external linking'
    [!buildmode:c-shared] stop
    
    env GO111MODULE=on
    
    go get rsc.io/fortune
    go build -buildmode=c-shared -o external.so rsc.io/fortune
    go version external.so
    stdout '^external.so: .+'
    go version -m external.so
    stdout '^\tpath\trsc.io/fortune'
    stdout '^\tmod\trsc.io/fortune\tv1.0.0'
    
    -- go.mod --
    module m
    
    -- empty.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 14:52:04 UTC 2024
    - 416 bytes
    - Viewed (0)
  7. src/runtime/crash_cgo_test.go

    	case "windows", "plan9", "android", "ios", "openbsd": // no getcontext
    		t.Skipf("skipping test on %s", runtime.GOOS)
    	}
    	got := runTestProg(t, "testprogcgo", "StackSwitchCallback")
    	skip := "SKIP\n"
    	if got == skip {
    		t.Skip("skipping on musl/bionic libc")
    	}
    	want := "OK\n"
    	if got != want {
    		t.Errorf("expected %q, got %v", want, got)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 22.2K bytes
    - Viewed (1)
  8. docs/en/docs/tutorial/query-params.md

    In the example above they have default values of `skip=0` and `limit=10`.
    
    So, going to the URL:
    
    ```
    http://127.0.0.1:8000/items/
    ```
    
    would be the same as going to:
    
    ```
    http://127.0.0.1:8000/items/?skip=0&limit=10
    ```
    
    But if you go to, for example:
    
    ```
    http://127.0.0.1:8000/items/?skip=20
    ```
    
    The parameter values in your function will be:
    
    * `skip=20`: because you set it in the URL
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Oct 20 09:08:42 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. internal/config/cache/remote_gen_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(left) > 0 {
    		t.Errorf("%d bytes left over after UnmarshalMsg(): %q", len(left), left)
    	}
    
    	left, err = msgp.Skip(bts)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(left) > 0 {
    		t.Errorf("%d bytes left over after Skip(): %q", len(left), left)
    	}
    }
    
    func BenchmarkMarshalMsgCondCheck(b *testing.B) {
    	v := CondCheck{}
    	b.ReportAllocs()
    	b.ResetTimer()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Nov 22 21:46:17 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    func (rst *rustState) writeByte(c byte) {
    	if rst.skip {
    		return
    	}
    	if rst.max > 0 && rst.buf.Len() > rst.max {
    		rst.skip = true
    		return
    	}
    	rst.last = c
    	rst.buf.WriteByte(c)
    }
    
    // writeString writes a string to the buffer.
    func (rst *rustState) writeString(s string) {
    	if rst.skip {
    		return
    	}
    	if rst.max > 0 && rst.buf.Len() > rst.max {
    		rst.skip = true
    		return
    	}
    	if len(s) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
Back to top