Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 186 for errstr (0.09 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. src/math/rand/regress_test.go

    					val = fmt.Sprintf("%T(%v)", out, out)
    				}
    				fmt.Printf("\t%s, // %s(%s)\n", val, m.Name, argstr)
    			} else {
    				want := regressGolden[p]
    				if m.Name == "Int" {
    					want = int64(int(uint(want.(int64)) << 1 >> 1))
    				}
    				if !reflect.DeepEqual(out, want) {
    					t.Errorf("r.%s(%s) = %v, want %v", m.Name, argstr, out, want)
    				}
    			}
    			p++
    		}
    	}
    	if *printgolden {
    		fmt.Printf("}\n")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  3. 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)
  4. src/syscall/fs_js.go

    func checkPath(path string) error {
    	if path == "" {
    		return EINVAL
    	}
    	for i := 0; i < len(path); i++ {
    		if path[i] == '\x00' {
    			return EINVAL
    		}
    	}
    	return nil
    }
    
    func recoverErr(errPtr *error) {
    	if err := recover(); err != nil {
    		jsErr, ok := err.(js.Error)
    		if !ok {
    			panic(err)
    		}
    		*errPtr = mapJSError(jsErr.Value)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 11 18:19:17 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  5. 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)
  6. src/syscall/zerrors_windows.go

    	ESRCH - APPLICATION_ERROR:           "no such process",
    	ESRMNT - APPLICATION_ERROR:          "srmount error",
    	ESTALE - APPLICATION_ERROR:          "stale NFS file handle",
    	ESTRPIPE - APPLICATION_ERROR:        "streams pipe error",
    	ETIME - APPLICATION_ERROR:           "timer expired",
    	ETIMEDOUT - APPLICATION_ERROR:       "connection timed out",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 10K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/plugins/form-validator/lang/it.js

    i campi richiesti",badTime:"L'ora scelta non &egrave; valida",badEmail:"Questo indirizzo email non &egrave; valido",badTelephone:"Il numero di telefono imputato non &egrave; valido",badSecurityAnswer:"La risposta alla domanda di sicurezza &egrave; errata",badDate:"La data scelta non &egrave; 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)
  8. 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)
  9. src/cmd/go/internal/modget/get.go

    func (r *resolver) matchInModule(ctx context.Context, pattern string, m module.Version) (packages []string, err error) {
    	return r.matchInModuleCache.Do(matchInModuleKey{pattern, m}, func() ([]string, error) {
    		match := modload.MatchInModule(ctx, pattern, m, imports.AnyTags())
    		if len(match.Errs) > 0 {
    			return match.Pkgs, match.Errs[0]
    		}
    		return match.Pkgs, nil
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. 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)
Back to top