Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,658 for perror (0.13 sec)

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

    // cgo -godefs -objdir=/tmp/amd64/cgo -- -Wall -Werror -static -I/tmp/amd64/include -m64 linux/types.go | go run mkpost.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build amd64 && linux
    
    package unix
    
    const (
    	SizeofPtr  = 0x8
    	SizeofLong = 0x8
    )
    
    type (
    	_C_long int64
    )
    
    type Timespec struct {
    	Sec  int64
    	Nsec int64
    }
    
    type Timeval struct {
    	Sec  int64
    	Usec int64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

            then:
            // 2 warnings + 1 special error
            // The compiler will report a single error, implying that the warnings were treated as errors
            verifyAll(receivedProblem(0)) {
                assertProblem(it, "ERROR", false)
                fqid == 'compilation:java:java-compilation-error'
                details == 'warnings found and -Werror specified'
                solutions.empty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. pkg/log/config_test.go

    		log.Println("golang-2")
    		grpclog.Error("grpc-error-2")
    		grpclog.Warning("grpc-warn-2")
    		grpclog.Info("grpc-info-2")
    		zap.L().Error("zap-error-2")
    		zap.L().Warn("zap-warn-2")
    		zap.L().Info("zap-info-2")
    		zap.L().Debug("zap-debug-2")
    	})
    
    	patterns := []string{
    		timePattern + "\tinfo\tlog/config_test.go:.*\tgolang",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResultTest.groovy

            result.error.empty
        }
    
        def "normalizes line ending in output"() {
            def output = "\n\r\nabc\r\n\n"
            def error = "\r\n\nerror\n\r\n"
            def result = OutputScrapingExecutionResult.from(output, error)
    
            expect:
            result.output == "\n\nabc\n\n"
            result.normalizedOutput == "\n\nabc\n\n"
            result.error == "\n\nerror\n\n"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. pkg/volume/iscsi/iscsi_util.go

    func (util *ISCSIUtil) AttachDisk(b iscsiDiskMounter) (string, error) {
    	var devicePath string
    	devicePaths := map[string]string{}
    	var iscsiTransport string
    	var lastErr error
    
    	out, err := execWithLog(b, "iscsiadm", "-m", "iface", "-I", b.InitIface, "-o", "show")
    	if err != nil {
    		klog.Errorf("iscsi: could not read iface %s error: %s", b.InitIface, out)
    		return "", err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 22 12:53:01 UTC 2022
    - 34.1K bytes
    - Viewed (0)
  6. src/net/udpsock_test.go

    	defer c.Close()
    
    	c.SetDeadline(time.Now())
    	b := make([]byte, 1)
    	n, addr, err := c.ReadFromUDP(b)
    	if !errors.Is(err, os.ErrDeadlineExceeded) {
    		t.Errorf("ReadFromUDP got err %v want os.ErrDeadlineExceeded", err)
    	}
    	if n != 0 {
    		t.Errorf("ReadFromUDP got n %d want 0", n)
    	}
    	if addr != nil {
    		t.Errorf("ReadFromUDP got addr %+#v want nil", addr)
    	}
    }
    
    func TestAllocs(t *testing.T) {
    	switch runtime.GOOS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    echo
    echo "//go:build ${GOARCH} && ${GOOS}"
    echo
    go tool cgo -godefs -- "$@" _const.go >_error.out
    cat _error.out | grep -vf _error.grep | grep -vf _signal.grep
    echo
    echo '// Errors'
    echo 'const ('
    cat _error.out | grep -f _error.grep | sed 's/=\(.*\)/= syscall.Errno(\1)/'
    echo ')'
    
    echo
    echo '// Signals'
    echo 'const ('
    cat _error.out | grep -f _signal.grep | sed 's/=\(.*\)/= syscall.Signal(\1)/'
    echo ')'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  8. pkg/volume/fc/fc.go

    	err := c.manager.DetachBlockFCDisk(*c, mapPath, devicePath)
    	if err != nil {
    		return fmt.Errorf("fc: failed to detach disk: %s\nError: %v", mapPath, err)
    	}
    	klog.V(4).Infof("fc: %s is unmounted, deleting the directory", mapPath)
    	if err = os.RemoveAll(mapPath); err != nil {
    		return fmt.Errorf("fc: failed to delete the directory: %s\nError: %v", mapPath, err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. pkg/volume/iscsi/iscsi.go

    	err := c.manager.DetachBlockISCSIDisk(*c, mapPath)
    	if err != nil {
    		return fmt.Errorf("iscsi: failed to detach disk: %s\nError: %v", mapPath, err)
    	}
    	klog.V(4).Infof("iscsi: %q is unmounted, deleting the directory", mapPath)
    	err = os.RemoveAll(mapPath)
    	if err != nil {
    		return fmt.Errorf("iscsi: failed to delete the directory: %s\nError: %v", mapPath, err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. security/pkg/pki/ca/ca.go

    	signingCert, signingKey, _, _ := ca.keyCertBundle.GetAll()
    	if signingCert == nil {
    		return nil, caerror.NewError(caerror.CANotReady, fmt.Errorf("Istio CA is not ready")) // nolint
    	}
    
    	csr, err := util.ParsePemEncodedCSR(csrPEM)
    	if err != nil {
    		return nil, caerror.NewError(caerror.CSRError, err)
    	}
    
    	if err := csr.CheckSignature(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
Back to top