Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 105 of 105 for Trailing (0.26 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    //go:build zos && s390x
    
    // Many of the following syscalls are not available on all versions of z/OS.
    // Some missing calls have legacy implementations/simulations but others
    // will be missing completely. To achieve consistent failing behaviour on
    // legacy systems, we first test the function pointer via a safeloading
    // mechanism to see if the function exists on a given system. Then execution
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    	// same spot in sym.P), number of external _host_ relocations needed (i.e.
    	// ELF/Mach-O/etc. relocations, not Go relocations, this must match ELF.Reloc1,
    	// etc.), and a boolean indicating success/failure (a failing value indicates
    	// a fatal error).
    	Archreloc func(*Target, *loader.Loader, *ArchSyms, loader.Reloc, loader.Sym,
    		int64) (relocatedOffset int64, nExtReloc int, ok bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    		// requests at once, they can all pick the same conn
    		// and violate the server's max concurrent streams.
    		// Instead, match the HTTP/1 behavior for now and dial
    		// again to get a new TCP connection, rather than failing
    		// this request.
    		return true
    	}
    	if err == errMissingHost {
    		// User error.
    		return false
    	}
    	if !pc.isReused() {
    		// This was a fresh connection. There's no reason the server
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/api_test.go

    		case !gotParent && wantParent:
    			t.Errorf("%v: no parent found", ident)
    		}
    	}
    }
    
    // TestFailedImport tests that we don't get follow-on errors
    // elsewhere in a package due to failing to import a package.
    func TestFailedImport(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	const src = `
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  5. src/go/types/api_test.go

    		case !gotParent && wantParent:
    			t.Errorf("%v: no parent found", ident)
    		}
    	}
    }
    
    // TestFailedImport tests that we don't get follow-on errors
    // elsewhere in a package due to failing to import a package.
    func TestFailedImport(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	const src = `
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top