- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of about 10,000 for file (0.24 sec)
-
src/main/webapp/js/admin/plugins/form-validator/file.js
nction:function(b,f,g,h){if(c){var i=!0,j=f.get(0).files||[],k="",l=d(f);return j.length&&(a.each(j,function(b,c){return i=!1,k=c.type||c.name.substring(c.name.lastIndexOf(".")+1),a.each(l,function(a,b){if(i=k.indexOf(b)>-1)return!1}),i}),i||(a.formUtils.warn("Trying to upload a file with mime type "+k+" which is not allowed"),e(this,"wrongFileType",l.join(", "),h))),i}return a.formUtils.warn("FileReader not supported by browser, will check file extension"),a.formUtils.validators.validate_extens...
JavaScript - Registered: 2023-11-27 08:04 - Last Modified: 2018-01-01 05:12 - 4.6K bytes - Viewed (0) -
tensorflow/c/experimental/filesystem/plugins/posix/copy_file.h
limitations under the License. ==============================================================================*/ #ifndef TENSORFLOW_C_EXPERIMENTAL_FILESYSTEM_PLUGINS_POSIX_COPY_FILE_H_ #define TENSORFLOW_C_EXPERIMENTAL_FILESYSTEM_PLUGINS_POSIX_COPY_FILE_H_ #include <sys/stat.h> namespace tf_posix_filesystem { // Transfers up to `size` bytes from `dst_fd` to `src_fd`. //
C - Registered: 2023-11-28 12:39 - Last Modified: 2019-11-22 21:23 - 1.2K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.file_config/file_config.json
Shinsuke Sugaya <******@****.***> 1638450896 +0900
Json - Registered: 2023-11-27 08:04 - Last Modified: 2021-12-02 13:14 - 1.3K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.file_authentication/file_authentication.json
Shinsuke Sugaya <******@****.***> 1638450896 +0900
Json - Registered: 2023-11-27 08:04 - Last Modified: 2021-12-02 13:14 - 644 bytes - Viewed (0) -
internal/ioutil/read_file.go
OsOpen = os.Open // OsOpenFile allows overriding default function. OsOpenFile = os.OpenFile ) // ReadFileWithFileInfo reads the named file and returns the contents. // A successful call returns err == nil, not err == EOF. // Because ReadFile reads the whole file, it does not treat an EOF from Read // as an error to be reported. func ReadFileWithFileInfo(name string) ([]byte, fs.FileInfo, error) {
Go - Registered: 2023-11-26 19:28 - Last Modified: 2023-05-01 16:47 - 2.9K bytes - Viewed (0) -
internal/ioutil/append-file_windows.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package ioutil import ( "io" "os" "github.com/minio/minio/internal/lock" ) // AppendFile - appends the file "src" to the file "dst" func AppendFile(dst string, src string, osync bool) error { appendFile, err := lock.Open(dst, os.O_WRONLY|os.O_APPEND|os.O_CREATE, 0o666) if err != nil { return err } defer appendFile.Close()
Go - Registered: 2023-11-26 19:28 - Last Modified: 2022-01-02 17:15 - 1.2K bytes - Viewed (0) -
src/archive/tar/testdata/ustar-file-reg.tar
Joe Tsai <******@****.***> 1443691829 -0700
TAR Archive - Registered: 2023-11-28 11:13 - Last Modified: 2015-11-06 04:31 - 1.5K bytes - Viewed (0) -
internal/ioutil/append-file_nix.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package ioutil import ( "io" "os" ) // AppendFile - appends the file "src" to the file "dst" func AppendFile(dst string, src string, osync bool) error { flags := os.O_WRONLY | os.O_APPEND | os.O_CREATE if osync { flags |= os.O_SYNC } appendFile, err := os.OpenFile(dst, flags, 0o666)
Go - Registered: 2023-11-26 19:28 - Last Modified: 2022-01-02 17:15 - 1.3K bytes - Viewed (0) -
tensorflow/c/experimental/filesystem/plugins/posix/copy_file_linux.cc
/* Copyright 2019 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS,
C++ - Registered: 2023-11-28 12:39 - Last Modified: 2019-11-22 21:23 - 1.5K bytes - Viewed (0) -
tensorflow/c/experimental/ops/gen/cpp/renderers/cpp_file_renderer.h
limitations under the License. ==============================================================================*/ #ifndef TENSORFLOW_C_EXPERIMENTAL_OPS_GEN_CPP_RENDERERS_CPP_FILE_RENDERER_H_ #define TENSORFLOW_C_EXPERIMENTAL_OPS_GEN_CPP_RENDERERS_CPP_FILE_RENDERER_H_ #include <vector> #include "tensorflow/c/experimental/ops/gen/cpp/renderers/guard_renderer.h" #include "tensorflow/c/experimental/ops/gen/cpp/renderers/include_renderer.h"
C - Registered: 2023-10-24 12:39 - Last Modified: 2021-06-21 18:51 - 1.8K bytes - Viewed (0)