Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 136 for Ftruncate (0.17 sec)

  1. src/syscall/zsyscall_openbsd_386.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Ftruncate(fd int, length int64) (err error) {
    	_, _, e1 := syscall(abi.FuncPCABI0(libc_ftruncate_trampoline), uintptr(fd), uintptr(length), uintptr(length>>32))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_ftruncate_trampoline()
    
    //go:cgo_import_dynamic libc_ftruncate ftruncate "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_openbsd_riscv64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Ftruncate(fd int, length int64) (err error) {
    	_, _, e1 := syscall(abi.FuncPCABI0(libc_ftruncate_trampoline), uintptr(fd), uintptr(length), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_ftruncate_trampoline()
    
    //go:cgo_import_dynamic libc_ftruncate ftruncate "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  3. cmd/metacache-server-pool.go

    		return entries, listErr
    	}
    	entries.reuse = true
    	truncated := entries.len() > o.Limit || err == nil
    	entries.truncate(o.Limit)
    	if !o.Transient && truncated {
    		if o.ID == "" {
    			entries.listID = mustGetUUID()
    		} else {
    			entries.listID = o.ID
    		}
    	}
    	if !truncated {
    		return entries, io.EOF
    	}
    	return entries, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:23 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. cmd/object-api-datatypes.go

    type ListObjectVersionsInfo struct {
    	// Indicates whether the returned list objects response is truncated. A
    	// value of true indicates that the list was truncated. The list can be truncated
    	// if the number of objects exceeds the limit allowed or specified
    	// by max keys.
    	IsTruncated bool
    
    	// When response is truncated (the IsTruncated element value in the response is true),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. pkg/controller/endpoint/endpoints_controller.go

    	// stored in an Endpoints resource. In a future release, this controller
    	// may truncate endpoints exceeding this length.
    	maxCapacity = 1000
    
    	// truncated is a possible value for `endpoints.kubernetes.io/over-capacity` annotation on an
    	// endpoint resource and indicates that the number of endpoints have been truncated to
    	// maxCapacity
    	truncated = "truncated"
    )
    
    // NewEndpointController returns a new *Controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/utils/utils.h

      return transposed_type;
    }
    
    // Returns shape of a ranked tensor.
    // Precondition: output_val's is ranked tensor.
    // Returns a truncated shape when `truncate` is set to true.
    inline DenseElementsAttr GetShape(Value output_val, bool truncate = false) {
      auto output_shape = output_val.getType().dyn_cast<ShapedType>().getShape();
    
      SmallVector<int32_t> shape;
      shape.reserve(output_shape.size());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. src/fmt/format.go

    	f.pad(buf[i:])
    	f.zero = oldZero
    }
    
    // truncateString truncates the string s to the specified precision, if present.
    func (f *fmt) truncateString(s string) string {
    	if f.precPresent {
    		n := f.prec
    		for i := range s {
    			n--
    			if n < 0 {
    				return s[:i]
    			}
    		}
    	}
    	return s
    }
    
    // truncate truncates the byte slice b as a string of the specified precision, if present.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/cache/cache.go

    	// we make a best-effort attempt to truncate the file f
    	// before returning, to avoid leaving bad bytes in the file.
    
    	// Copy file to f, but also into h to double-check hash.
    	if _, err := file.Seek(0, 0); err != nil {
    		f.Truncate(0)
    		return err
    	}
    	h := sha256.New()
    	w := io.MultiWriter(f, h)
    	if _, err := io.CopyN(w, file, size-1); err != nil {
    		f.Truncate(0)
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. src/time/example_test.go

    	}
    
    	for _, t := range trunc {
    		fmt.Printf("d.Truncate(%6s) = %s\n", t, d.Truncate(t).String())
    	}
    	// Output:
    	// d.Truncate(   1ns) = 1h15m30.918273645s
    	// d.Truncate(   1µs) = 1h15m30.918273s
    	// d.Truncate(   1ms) = 1h15m30.918s
    	// d.Truncate(    1s) = 1h15m30s
    	// d.Truncate(    2s) = 1h15m30s
    	// d.Truncate(  1m0s) = 1h15m0s
    	// d.Truncate( 10m0s) = 1h10m0s
    	// d.Truncate(1h0m0s) = 1h0m0s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  10. src/net/http/fs.go

    		return condNone
    	}
    	t, err := ParseTime(ius)
    	if err != nil {
    		return condNone
    	}
    
    	// The Last-Modified header truncates sub-second precision so
    	// the modtime needs to be truncated too.
    	modtime = modtime.Truncate(time.Second)
    	if ret := modtime.Compare(t); ret <= 0 {
    		return condTrue
    	}
    	return condFalse
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top