Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 918 for IsSkip (0.29 sec)

  1. src/net/unixsock_test.go

    import (
    	"bytes"
    	"internal/testenv"
    	"os"
    	"reflect"
    	"runtime"
    	"syscall"
    	"testing"
    	"time"
    )
    
    func TestReadUnixgramWithUnnamedSocket(t *testing.T) {
    	if !testableNetwork("unixgram") {
    		t.Skip("unixgram test")
    	}
    	switch runtime.GOOS {
    	case "js", "wasip1":
    		t.Skipf("skipping: syscall.Socket not implemented on %s", runtime.GOOS)
    	}
    	if runtime.GOOS == "openbsd" {
    		testenv.SkipFlaky(t, 15157)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_sql_databases/test_sql_databases_middleware_py39.py

                                "required": False,
                                "schema": {
                                    "title": "Skip",
                                    "type": "integer",
                                    "default": 0,
                                },
                                "name": "skip",
                                "in": "query",
                            },
                            {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:07:10 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_sql_databases/test_sql_databases_py310.py

                                "required": False,
                                "schema": {
                                    "title": "Skip",
                                    "type": "integer",
                                    "default": 0,
                                },
                                "name": "skip",
                                "in": "query",
                            },
                            {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:07:10 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/stdlib_test.go

    		<-fut.done
    	}
    	return fut.pkg, fut.err
    }
    
    // firstComment returns the contents of the first non-empty comment in
    // the given file, "skip", or the empty string. No matter the present
    // comments, if any of them contains a build tag, the result is always
    // "skip". Only comments within the first 4K of the file are considered.
    // TODO(gri) should only read until we see "package" token.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. hack/make-rules/test-e2e-node.sh

      ginkgoflags="${ginkgoflags} -nodes=${parallelism} "
    fi
    
    if [[ ${focus} != "" ]]; then
      ginkgoflags="${ginkgoflags} -focus=\"${focus}\" "
    fi
    
    if [[ ${skip} != "" ]]; then
      ginkgoflags="${ginkgoflags} -skip=\"${skip}\" "
    fi
    
    if [[ ${run_until_failure} == "true" ]]; then
      ginkgoflags="${ginkgoflags} --until-it-fails=true "
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. cmd/batch-replicate_gen.go

    						return
    					}
    				default:
    					err = dc.Skip()
    					if err != nil {
    						err = msgp.WrapError(err, "Creds")
    						return
    					}
    				}
    			}
    		case "Snowball":
    			err = z.Snowball.DecodeMsg(dc)
    			if err != nil {
    				err = msgp.WrapError(err, "Snowball")
    				return
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Nov 22 18:51:46 UTC 2023
    - 40.6K bytes
    - Viewed (0)
  7. src/runtime/gc_test.go

    	"runtime"
    	"runtime/debug"
    	"slices"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"time"
    	"unsafe"
    )
    
    func TestGcSys(t *testing.T) {
    	t.Skip("skipping known-flaky test; golang.org/issue/37331")
    	if os.Getenv("GOGC") == "off" {
    		t.Skip("skipping test; GOGC=off in environment")
    	}
    	got := runTestProg(t, "testprog", "GCSys")
    	want := "OK\n"
    	if got != want {
    		t.Fatalf("expected %q, but got %q", want, got)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/preflight/checks_test.go

    		})
    	}
    }
    
    func TestInitIPCheck(t *testing.T) {
    	// skip this test, if OS in not Linux, since it will ONLY pass on Linux.
    	if runtime.GOOS != "linux" {
    		t.Skip("unsupported OS")
    	}
    	// should be a privileged user for the `init` command, otherwise just skip it.
    	isPrivileged := IsPrivilegedUserCheck{}
    	if _, err := isPrivileged.Check(); err != nil {
    		t.Skip("not a privileged user")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  9. src/cmd/internal/archive/archive.go

    	}
    	n, err := io.ReadFull(r.b, b)
    	r.offset += int64(n)
    	if err != nil {
    		return r.error(err)
    	}
    	return nil
    }
    
    // skip skips n bytes in the input.
    func (r *objReader) skip(n int64) {
    	if n < 0 {
    		r.error(fmt.Errorf("debug/goobj: internal error: misuse of skip"))
    	}
    	if n < int64(len(r.tmp)) {
    		// Since the data is so small, a just reading from the buffered
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_sql_databases/test_sql_databases_py39.py

                                "required": False,
                                "schema": {
                                    "title": "Skip",
                                    "type": "integer",
                                    "default": 0,
                                },
                                "name": "skip",
                                "in": "query",
                            },
                            {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:07:10 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top