Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 65 for errstr (0.11 sec)

  1. src/syscall/asm_freebsd_arm.s

    	MOVW trap+0(FP), R7 // syscall number
    	MOVW a1+4(FP), R0 // a1
    	MOVW a2+8(FP), R1 // a2
    	MOVW a3+12(FP), R2 // a3
    	SWI $0 // syscall
    	MOVW $0, R2
    	BCS errorr
    	MOVW R0, r1+16(FP) // r1
    	MOVW R1, r2+20(FP) // r2
    	MOVW R2, err+24(FP) // errno
    	RET
    errorr:
    	MOVW $-1, R3
    	MOVW R3, r1+16(FP) // r1
    	MOVW R2, r2+20(FP) // r2
    	MOVW R0, err+24(FP) // errno
    	RET
    
    TEXT	·RawSyscall6(SB),NOSPLIT,$0-40
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 23 16:52:33 UTC 2015
    - 3K bytes
    - Viewed (0)
  2. internal/config/lambda/event/targetlist.go

    	}
    
    	return nil
    }
    
    // Lookup - checks whether target by target ID exists is valid or not.
    func (list *TargetList) Lookup(arnStr string) (Target, error) {
    	list.RLock()
    	defer list.RUnlock()
    
    	arn, err := ParseARN(arnStr)
    	if err != nil {
    		return nil, err
    	}
    
    	id, found := list.targets[arn.TargetID]
    	if !found {
    		return nil, &ErrARNNotFound{}
    	}
    	return id, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 07 16:12:41 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. src/syscall/syscall_js.go

    }
    
    const PathMax = 256
    
    // An Errno is an unsigned number describing an error condition.
    // It implements the error interface. The zero Errno is by convention
    // a non-error, so code to convert from Errno to error should use:
    //
    //	err = nil
    //	if errno != 0 {
    //		err = errno
    //	}
    //
    // Errno values can be tested against error values using [errors.Is].
    // For example:
    //
    //	_, _, err := syscall.Syscall(...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/error-message-with-source-info.pbtxt

    # Checks that source debug information is used in the output error message.
    # CHECK: error: 'tf.Add' op operands don't have broadcast-compatible shapes
    # CHECK: math_ops.add(x, y, name='x_y_sum')
    # CHECK: build_graph(out_dir)
    node: {
      name: "x"
      op: "Placeholder"
      attr: {
        key: "shape"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:00:09 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/plugins/form-validator/lang/it.js

    i campi richiesti",badTime:"L'ora scelta non è valida",badEmail:"Questo indirizzo email non è valido",badTelephone:"Il numero di telefono imputato non è valido",badSecurityAnswer:"La risposta alla domanda di sicurezza è errata",badDate:"La data scelta non è valida",lengthBadStart:"La sua risposta non può essere più lunga di ",lengthBadEnd:" caratteri",lengthTooLongStart:"La lunghezza della risposta deve essere minore di ",lengthTooShortStart:"La lunghezza della risposta...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  6. tools/bug-report/pkg/content/content.go

    		if err != nil {
    			errs = multierror.Append(errs, err)
    			continue
    		}
    		ret[url] = out
    	}
    	if errs.ErrorOrNil() != nil {
    		return nil, errs
    	}
    	return ret, nil
    }
    
    func GetZtunnelInfo(p *Params) (map[string]string, error) {
    	if p.Namespace == "" || p.Pod == "" {
    		return nil, fmt.Errorf("getZtunnelInfo requires namespace and pod")
    	}
    	errs := istiomultierror.New()
    	ret := make(map[string]string)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 18:47:53 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  7. releasenotes/notes/dr-ca-cert-analyzer-errorr-line.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
      - |
        **Improved** destination rule ca analyzer to show exact error line when using `istioctl analyze`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 03:05:58 UTC 2021
    - 255 bytes
    - Viewed (0)
  8. src/net/http/cookiejar/punycode_test.go

    	{"a-", "a--"},
    	{"a-b", "a-b-"},
    	{"books", "books-"},
    	{"bücher", "bcher-kva"},
    	{"Hello世界", "Hello-ck1hg65u"},
    	{"ü", "tda"},
    	{"üý", "tdac"},
    
    	// The test cases below come from RFC 3492 section 7.1 with Errata 3026.
    	{
    		// (A) Arabic (Egyptian).
    		"\u0644\u064A\u0647\u0645\u0627\u0628\u062A\u0643\u0644" +
    			"\u0645\u0648\u0634\u0639\u0631\u0628\u064A\u061F",
    		"egbpdaj6bu4bxfgehfvwxn",
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 4.6K bytes
    - Viewed (0)
  9. src/syscall/tables_wasip1.go

    	EXDEV:           "Cross-device link",
    	ENOTCAPABLE:     "Capabilities insufficient",
    }
    
    // Do the interface allocations only once for common
    // Errno values.
    var (
    	errEAGAIN error = EAGAIN
    	errEINVAL error = EINVAL
    	errENOENT error = ENOENT
    )
    
    // errnoErr returns common boxed Errno values, to prevent
    // allocations at runtime.
    //
    // We set both noinline and nosplit to reduce code size, this function has many
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 20:58:35 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/error-message-with-source-info.pbtxt.fake_py.debug

    Bixia Zheng <******@****.***> 1583166655 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 02 16:34:34 UTC 2020
    - 83 bytes
    - Viewed (0)
Back to top