Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,028 for ulong (0.09 sec)

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

    	SYS_ACCESS               = 33  // { int|sys||access(const char *path, int flags); }
    	SYS_CHFLAGS              = 34  // { int|sys||chflags(const char *path, u_long flags); }
    	SYS_FCHFLAGS             = 35  // { int|sys||fchflags(int fd, u_long flags); }
    	SYS_SYNC                 = 36  // { void|sys||sync(void); }
    	SYS_KILL                 = 37  // { int|sys||kill(pid_t pid, int signum); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go

    	SYS_ACCESS               = 33  // { int|sys||access(const char *path, int flags); }
    	SYS_CHFLAGS              = 34  // { int|sys||chflags(const char *path, u_long flags); }
    	SYS_FCHFLAGS             = 35  // { int|sys||fchflags(int fd, u_long flags); }
    	SYS_SYNC                 = 36  // { void|sys||sync(void); }
    	SYS_KILL                 = 37  // { int|sys||kill(pid_t pid, int signum); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  3. src/syscall/zsysnum_netbsd_386.go

    	SYS_ACCESS               = 33  // { int|sys||access(const char *path, int flags); }
    	SYS_CHFLAGS              = 34  // { int|sys||chflags(const char *path, u_long flags); }
    	SYS_FCHFLAGS             = 35  // { int|sys||fchflags(int fd, u_long flags); }
    	SYS_SYNC                 = 36  // { void|sys||sync(void); }
    	SYS_KILL                 = 37  // { int|sys||kill(pid_t pid, int signum); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  4. internal/arn/arn.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package arn
    
    import (
    	"errors"
    	"fmt"
    	"regexp"
    	"strings"
    )
    
    // ARN structure:
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 08:31:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. cmd/xl-storage_windows_test.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"bytes"
    	"context"
    	"fmt"
    	"testing"
    )
    
    // Test if various paths work as expected when converted to UNC form
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Nov 29 06:35:16 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go

    	SYS_SETEGID        = 182 // { int sys_setegid(gid_t egid); }
    	SYS_SETEUID        = 183 // { int sys_seteuid(uid_t euid); }
    	SYS_PATHCONF       = 191 // { long sys_pathconf(const char *path, int name); }
    	SYS_FPATHCONF      = 192 // { long sys_fpathconf(int fd, int name); }
    	SYS_SWAPCTL        = 193 // { int sys_swapctl(int cmd, const void *arg, int misc); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_mips64.go

    	SYS_SETEGID        = 182 // { int sys_setegid(gid_t egid); }
    	SYS_SETEUID        = 183 // { int sys_seteuid(uid_t euid); }
    	SYS_PATHCONF       = 191 // { long sys_pathconf(const char *path, int name); }
    	SYS_FPATHCONF      = 192 // { long sys_fpathconf(int fd, int name); }
    	SYS_SWAPCTL        = 193 // { int sys_swapctl(int cmd, const void *arg, int misc); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/progress/ProgressLogger.java

        /**
         * Logs the completion of the operation, with no final status
         */
        void completed();
    
        /**
         * Logs the completion of the operation, with a final status. This is generally logged along with the description.
         *
         * @param status The final status message. Can be null or empty.
         * @param failed Did the task fail?
         */
        void completed(String status, boolean failed);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. cmd/xl-storage-errors.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"errors"
    	"os"
    	"runtime"
    	"syscall"
    )
    
    // No space left on device error
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_ppc64.go

    	SYS_SETEGID        = 182 // { int sys_setegid(gid_t egid); }
    	SYS_SETEUID        = 183 // { int sys_seteuid(uid_t euid); }
    	SYS_PATHCONF       = 191 // { long sys_pathconf(const char *path, int name); }
    	SYS_FPATHCONF      = 192 // { long sys_fpathconf(int fd, int name); }
    	SYS_SWAPCTL        = 193 // { int sys_swapctl(int cmd, const void *arg, int misc); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
Back to top