Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for 19098 (0.04 sec)

  1. src/cmd/go/internal/lockedfile/internal/filelock/filelock_windows.go

    	readLock  lockType = 0
    	writeLock lockType = windows.LOCKFILE_EXCLUSIVE_LOCK
    )
    
    const (
    	reserved = 0
    	allBytes = ^uint32(0)
    )
    
    func lock(f File, lt lockType) error {
    	// Per https://golang.org/issue/19098, “Programs currently expect the Fd
    	// method to return a handle that uses ordinary synchronous I/O.”
    	// However, LockFileEx still requires an OVERLAPPED structure,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 17 02:24:35 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. releasenotes/notes/49098.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    issues:
    - 49098
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 00:04:40 UTC 2024
    - 172 bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/common/ports/ports.go

    	HTTPS            = echo.Port{Name: "https", Protocol: protocol.HTTPS, ServicePort: 443, WorkloadPort: 18443, TLS: true}
    	TCPServer        = echo.Port{Name: "tcp-server", Protocol: protocol.TCP, ServicePort: 9091, WorkloadPort: 16060, ServerFirst: true}
    	AutoTCP          = echo.Port{Name: "auto-tcp", Protocol: protocol.TCP, ServicePort: 9092, WorkloadPort: 19091}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 08 16:17:34 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. src/os/os_test.go

    func TestPipeThreads(t *testing.T) {
    	switch runtime.GOOS {
    	case "illumos", "solaris":
    		t.Skip("skipping on Solaris and illumos; issue 19111")
    	case "windows":
    		t.Skip("skipping on Windows; issue 19098")
    	case "plan9":
    		t.Skip("skipping on Plan 9; does not support runtime poller")
    	case "js":
    		t.Skip("skipping on js; no support for os.Pipe")
    	case "wasip1":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/cover_runs.txt

    go test -short -coverpkg=strings strings regexp
    ! stdout '[^0-9]0\.0%'
    stdout  'strings.*coverage:.*[1-9][0-9.]+%'
    stdout  'regexp.*coverage:.*[1-9][0-9.]+%'
    
    go test -short -cover strings math regexp
    ! stdout '[^0-9]0\.0%'
    stdout  'strings.*coverage:.*[1-9][0-9.]+%'
    stdout  'math.*coverage:.*[1-9][0-9.]+%'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 413 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cover_build_simple.txt

    go tool covdata percent -i=data/normal
    stdout  'coverage:.*[1-9][0-9.]+%'
    
    # Program makes a direct call to os.Exit(0).
    env GOCOVERDIR=data/goodexit
    exec ./example.exe goodexit
    ! stderr '^warning: GOCOVERDIR not set, no coverage data emitted'
    go tool covdata percent -i=data/goodexit
    stdout  'coverage:.*[1-9][0-9.]+%'
    
    # Program makes a direct call to os.Exit(1).
    env GOCOVERDIR=data/badexit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  7. cluster/addons/calico-policy-controller/typha-deployment.yaml

              readOnly: true
            livenessProbe:
              httpGet:
                path: /liveness
                port: 9098
                host: localhost
              periodSeconds: 30
              initialDelaySeconds: 30
            readinessProbe:
              httpGet:
                path: /readiness
                port: 9098
                host: localhost
              periodSeconds: 10
          volumes:
          - name: etc-calico
            hostPath:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 28 02:29:44 UTC 2021
    - 2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/time_test.go

    	T Time `json:"t"`
    }
    
    func TestTimeMarshalYAML(t *testing.T) {
    	cases := []struct {
    		input  Time
    		result string
    	}{
    		{Time{}, "t: null\n"},
    		{Date(1998, time.May, 5, 1, 5, 5, 50, time.FixedZone("test", -4*60*60)), "t: \"1998-05-05T05:05:05Z\"\n"},
    		{Date(1998, time.May, 5, 5, 5, 5, 0, time.UTC), "t: \"1998-05-05T05:05:05Z\"\n"},
    	}
    
    	for _, c := range cases {
    		input := TimeHolder{c.input}
    		result, err := yaml.Marshal(&input)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. test/fixedbugs/bug361.go

    // compile
    
    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // issue 1908
    // unreasonable width used to be internal fatal error
    
    package test
    
    func main() {
    	buf := [1<<30]byte{}
    	_ = buf[:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 305 bytes
    - Viewed (0)
  10. samples/grpc-echo/grpc-echo.yaml

        app: echo
      type: ClusterIP
      ports:
      - name: http
        port: 80
        targetPort: 18080
      - name: grpc
        port: 7070
        targetPort: 17070
      - name: tcp
        port: 9090
        targetPort: 19090
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: echo-v1
      namespace: echo-grpc
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: echo
          version: v1
      template:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top