Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,514 for perror (0.14 sec)

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

    	{66, "EREMOTE", "object is remote"},
    	{67, "ENOLINK", "link has been severed"},
    	{68, "EADV", "advertise error"},
    	{69, "ESRMNT", "srmount error"},
    	{70, "ECOMM", "communication error on send"},
    	{71, "EPROTO", "protocol error"},
    	{72, "EMULTIHOP", "multihop attempted"},
    	{73, "EDOTDOT", "RFS specific error"},
    	{74, "EBADMSG", "bad message"},
    	{75, "EOVERFLOW", "value too large for defined data type"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go

    	{80, "ENONET", "machine is not on the network"},
    	{81, "ERREMOTE", "unknown error 81"},
    	{82, "ENOLINK", "link has been severed"},
    	{83, "EADV", "advertise error"},
    	{84, "ESRMNT", "srmount error"},
    	{85, "ECOMM", "communication error on send"},
    	{86, "EPROTO", "protocol error"},
    	{87, "EMULTIHOP", "multihop attempted"},
    	{88, "EDOTDOT", "RFS specific error"},
    	{89, "EREMCHG", "remote address changed"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  3. src/net/dial_test.go

    				t.Logf("%s %v->%s: got %v; want %v", tt.network, tt.laddr, tt.raddr, err, tt.error)
    				t.Logf("(spurious EADDRINUSE ignored on freebsd: see https://golang.org/issue/34264)")
    			} else {
    				t.Errorf("%s %v->%s: got %v; want %v", tt.network, tt.laddr, tt.raddr, err, tt.error)
    			}
    		}
    		if err != nil {
    			if perr := parseDialError(err); perr != nil {
    				t.Error(perr)
    			}
    			continue
    		}
    		c.Close()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go

    	{66, "EREMOTE", "object is remote"},
    	{67, "ENOLINK", "link has been severed"},
    	{68, "EADV", "advertise error"},
    	{69, "ESRMNT", "srmount error"},
    	{70, "ECOMM", "communication error on send"},
    	{71, "EPROTO", "protocol error"},
    	{72, "EMULTIHOP", "multihop attempted"},
    	{73, "EDOTDOT", "RFS specific error"},
    	{74, "EBADMSG", "bad message"},
    	{75, "EOVERFLOW", "value too large for defined data type"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go

    	{66, "EREMOTE", "object is remote"},
    	{67, "ENOLINK", "link has been severed"},
    	{68, "EADV", "advertise error"},
    	{69, "ESRMNT", "srmount error"},
    	{70, "ECOMM", "communication error on send"},
    	{71, "EPROTO", "protocol error"},
    	{72, "EMULTIHOP", "multihop attempted"},
    	{73, "EDOTDOT", "RFS specific error"},
    	{74, "EBADMSG", "bad message"},
    	{75, "EOVERFLOW", "value too large for defined data type"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go

    	{66, "EREMOTE", "object is remote"},
    	{67, "ENOLINK", "link has been severed"},
    	{68, "EADV", "advertise error"},
    	{69, "ESRMNT", "srmount error"},
    	{70, "ECOMM", "communication error on send"},
    	{71, "EPROTO", "protocol error"},
    	{72, "EMULTIHOP", "multihop attempted"},
    	{73, "EDOTDOT", "RFS specific error"},
    	{74, "EBADMSG", "bad message"},
    	{75, "EOVERFLOW", "value too large for defined data type"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResult.java

                return new OutputScrapingExecutionFailure(output, error, true);
            }
            return new OutputScrapingExecutionResult(LogContent.of(output), LogContent.of(error), true);
        }
    
        /**
         * @param output The build stdout content.
         * @param error The build stderr content. Must have normalized line endings.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. src/net/net_windows_test.go

    	if err != nil {
    		if len(out) != 0 {
    			return nil, fmt.Errorf("%s failed: %v: %q", args[0], err, string(removeUTF8BOM(out)))
    		}
    		var err2 error
    		out, err2 = os.ReadFile(f.Name())
    		if err2 != nil {
    			return nil, err2
    		}
    		if len(out) != 0 {
    			return nil, fmt.Errorf("%s failed: %v: %q", args[0], err, string(removeUTF8BOM(out)))
    		}
    		return nil, fmt.Errorf("%s failed: %v", args[0], err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

        }
    
        SearchResult<GccMetadata> output(String output, String error, GccCompilerType compilerType = GCC, List<File> path = []) {
            runsCompiler(output, error)
            def provider = new GccMetadataProvider(execActionFactory, compilerType)
            provider.getCompilerMetaData(path) { it.executable(new File("g++")) }
        }
    
        void runsCompiler(String output, String error) {
            def action = Mock(ExecAction)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. src/encoding/xml/xml_test.go

    		if test.err == "" {
    			if err != io.EOF {
    				t.Errorf("parse %s: have %q error, expected none", test.src, err)
    			}
    			continue
    		}
    		// Inv: err != nil
    		if err == io.EOF {
    			t.Errorf("parse %s: unexpected EOF", test.src)
    			continue
    		}
    		if !strings.Contains(err.Error(), test.err) {
    			t.Errorf("parse %s: can't find %q error substring\nerror: %q", test.src, test.err, err)
    			continue
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top