Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 132 for encInt (0.16 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonToolchainInvalidCriteriaIntegrationTest.groovy

                "[ADOPTIUM, ADOPTOPENJDK, AMAZON, APPLE, AZUL, BELLSOFT, GRAAL_VM, HEWLETT_PACKARD, IBM, JETBRAINS, MICROSOFT, ORACLE, SAP, TENCENT, UNKNOWN]")
        }
    
        @NotYetImplemented
        def "Given unexpected toolchain implementation When execute any task Then fails with expected exception message"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprog/syscalls_linux.go

    	statusFile := fmt.Sprintf("/proc/self/task/%d/status", tid)
    	fd, err := syscall.Open(statusFile, syscall.O_RDONLY, 0)
    	if errno, ok := err.(syscall.Errno); ok {
    		if errno == syscall.ENOENT || errno == syscall.ESRCH {
    			return false, true, nil
    		}
    	}
    	if err != nil {
    		return false, false, err
    	}
    	status, err := io.ReadAll(os.NewFile(uintptr(fd), statusFile))
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:00:09 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. src/syscall/syscall_unix.go

    var (
    	errEAGAIN error = EAGAIN
    	errEINVAL error = EINVAL
    	errENOENT error = ENOENT
    )
    
    // errnoErr returns common boxed Errno values, to prevent
    // allocations at runtime.
    func errnoErr(e Errno) error {
    	switch e {
    	case 0:
    		return nil
    	case EAGAIN:
    		return errEAGAIN
    	case EINVAL:
    		return errEINVAL
    	case ENOENT:
    		return errENOENT
    	}
    	return e
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 16:19:26 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. cmd/kube-scheduler/app/options/configfile_test.go

    		expectedErr    error
    		expectedConfig *config.KubeSchedulerConfiguration
    	}{
    		{
    			name:           "Empty scheduler config file path",
    			path:           "",
    			expectedErr:    syscall.Errno(syscall.ENOENT),
    			expectedConfig: nil,
    		},
    		{
    			name:           "Correct scheduler config",
    			path:           correctConfigFile,
    			expectedErr:    nil,
    			expectedConfig: &config.KubeSchedulerConfiguration{},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 22 13:43:42 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. src/os/exec_plan9.go

    	_, e = f.Write([]byte(data))
    	return e
    }
    
    func (p *Process) signal(sig Signal) error {
    	switch p.pidStatus() {
    	case statusDone:
    		return ErrProcessDone
    	case statusReleased:
    		return syscall.ENOENT
    	}
    
    	if e := p.writeProcFile("note", sig.String()); e != nil {
    		return NewSyscallError("signal", e)
    	}
    	return nil
    }
    
    func (p *Process) kill() error {
    	return p.signal(Kill)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. src/runtime/os_illumos.go

    	var flag uint32 = _RCTL_FIRST
    	var capval uint64 = 0
    
    	for {
    		if getrctl(unsafe.Pointer(&name[0]), unsafe.Pointer(rblkprev), unsafe.Pointer(rblk), flag) != 0 {
    			// The end of the sequence is reported as an ENOENT
    			// failure, but determining the CPU cap is not critical
    			// here.  We'll treat any failure as if it were the end
    			// of sequence.
    			break
    		}
    
    		lflags := rctlblk_get_local_flags(unsafe.Pointer(rblk))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 18:06:12 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  7. cmd/xl-storage-errors.go

    func isSysErrPathNotFound(err error) bool {
    	if runtime.GOOS != globalWindowsOSName {
    		var pathErr *os.PathError
    		if errors.As(err, &pathErr) {
    			return pathErr.Err == syscall.ENOENT
    		}
    		return false
    	}
    	var pathErr *os.PathError
    	if errors.As(err, &pathErr) {
    		var errno syscall.Errno
    		if errors.As(pathErr.Err, &errno) {
    			// ERROR_PATH_NOT_FOUND
    			return errno == 0x03
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. src/time/tzdata/tzdata.go

    			z[idx+30:idx+30+namelen] != name {
    			return "", errors.New("corrupt embedded tzdata")
    		}
    		xlen = get2s(z[idx+28:])
    		idx += 30 + namelen + xlen
    		return z[idx : idx+size], nil
    	}
    
    	return "", syscall.ENOENT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 22:30:53 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. src/runtime/defs_aix.go

    #include <sys/thread.h>
    #include <sys/resource.h>
    
    #include <unistd.h>
    #include <fcntl.h>
    #include <pthread.h>
    #include <semaphore.h>
    */
    import "C"
    
    const (
    	_EPERM     = C.EPERM
    	_ENOENT    = C.ENOENT
    	_EINTR     = C.EINTR
    	_EAGAIN    = C.EAGAIN
    	_ENOMEM    = C.ENOMEM
    	_EACCES    = C.EACCES
    	_EFAULT    = C.EFAULT
    	_EINVAL    = C.EINVAL
    	_ETIMEDOUT = C.ETIMEDOUT
    
    	_PROT_NONE  = C.PROT_NONE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 20 21:27:51 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem.cc

      // If target is a directory return TF_FAILED_PRECONDITION.
      // Target might be missing, so don't error in that case.
      struct stat st;
      if (stat(dst, &st) != 0) {
        if (errno != ENOENT) {
          TF_SetStatusFromIOError(status, errno, dst);
          return;
        }
      } else if (S_ISDIR(st.st_mode)) {
        TF_SetStatus(status, TF_FAILED_PRECONDITION, "target path is a directory");
        return;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 20:08:23 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top