Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 136 for Ftruncate (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/export_tf_dialect_op.cc

          attr->contains("DstT") &&
          attr->at("SrcT").type() == attr->at("DstT").type() &&
          attr->contains("Truncate") && !attr->at("Truncate").b()) {
        node_def->set_op("Identity");
        attr->insert({{"T", attr->at("SrcT")}});
        attr->erase("SrcT");
        attr->erase("DstT");
        attr->erase("Truncate");
      }
    }
    
    }  // namespace
    
    Status GetAttrValuesFromOperation(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. pkg/dns/client/dns_test.go

    			host:      "ipv4.localhost.",
    			queryAAAA: true,
    		},
    		{
    			name: "udp: large request",
    			host: "giant.",
    			// Upstream UDP server returns big response, we cannot serve it. Compliant server would truncate it.
    			expectResolutionFailure: dns.RcodeServerFailure,
    		},
    		{
    			name:     "tcp: large request",
    			host:     "giant.",
    			expected: giantResponse,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. src/os/file_unix.go

    	return ret, err
    }
    
    // Truncate changes the size of the named file.
    // If the file is a symbolic link, it changes the size of the link's target.
    // If there is an error, it will be of type *PathError.
    func Truncate(name string, size int64) error {
    	e := ignoringEINTR(func() error {
    		return syscall.Truncate(name, size)
    	})
    	if e != nil {
    		return &PathError{Op: "truncate", Path: name, Err: e}
    	}
    	return nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. src/os/file.go

    // If there is an error, it will be of type *PathError.
    func Open(name string) (*File, error) {
    	return OpenFile(name, O_RDONLY, 0)
    }
    
    // Create creates or truncates the named file. If the file already exists,
    // it is truncated. If the file does not exist, it is created with mode 0666
    // (before umask). If successful, methods on the returned File can
    // be used for I/O; the associated file descriptor has mode O_RDWR.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.cc

                                                llvm::support::unaligned>(data_ptr);
        ret.push_back(mlir::APInt(sizeof(T) * 8, val));
      }
      return ret;
    }
    
    // If the values in the buffer can be clamped to a bitwidth, truncate
    // and return the new clamped integer width.
    void truncateLimitedIntegerAPInt(llvm::SmallVector<mlir::APInt>& values) {
      mlir::APInt min = values[0];
      mlir::APInt max = values[0];
      for (mlir::APInt& val : values) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-kubeapiserver.sh

          params+=" --audit-log-maxage=0"
          params+=" --audit-log-maxbackup=0"
          # Lumberjack doesn't offer any way to disable size-based rotation. It also
          # has an in-memory counter that doesn't notice if you truncate the file.
          # 2000000000 (in MiB) is a large number that fits in 31 bits. If the log
          # grows at 10MiB/s (~30K QPS), it will rotate after ~6 years if apiserver
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. src/os/file_windows.go

    	runtime.KeepAlive(f)
    	return ret, err
    }
    
    // Truncate changes the size of the named file.
    // If the file is a symbolic link, it changes the size of the link's target.
    func Truncate(name string, size int64) error {
    	f, e := OpenFile(name, O_WRONLY, 0666)
    	if e != nil {
    		return e
    	}
    	defer f.Close()
    	e1 := f.Truncate(size)
    	if e1 != nil {
    		return e1
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. cmd/api-response.go

    	KeyMarker string
    
    	// When response is truncated (the IsTruncated element value in the response
    	// is true), you can use the key name in this field as marker in the subsequent
    	// request to get next set of objects. Server lists objects in alphabetical
    	// order Note: This element is returned only if you have delimiter request parameter
    	// specified. If response does not include the NextMaker and it is truncated,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_xla.mlir

    // CHECK: %[[fcast:.*]] = "tf.Cast"(%[[scast]]) <{Truncate = false}> : (tensor<*xi8>) -> tensor<*xf32>
    // CHECK: %[[avgpool_f32:.*]] = "tf.AvgPool"(%[[fcast]])
    // CHECK-SAME: (tensor<*xf32>) -> tensor<*xf32>
    // CHECK: %[[round:.*]] = "tf.Round"(%[[avgpool_f32]])
    // CHECK: %[[icast:.*]] = "tf.Cast"(%[[round]]) <{Truncate = false}> : (tensor<*xf32>) -> tensor<*xi8>
    // CHECK: %[[reshape:.*]] = "tf.Reshape"(%[[icast]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:32:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/fetch.go

    			// file to be empty again for the next attempt.
    			if _, err := f.Seek(0, io.SeekStart); err != nil {
    				unrecoverableErr = err
    				return err
    			}
    			if err := f.Truncate(0); err != nil {
    				unrecoverableErr = err
    				return err
    			}
    		}
    		return err
    	})
    	if err != nil {
    		return err
    	}
    
    	// Double-check that the paths within the zip file are well-formed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top