Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 296 for dstname (0.29 sec)

  1. pkg/proxy/ipvs/netlink.go

    	EnsureAddressBind(address, devName string) (exist bool, err error)
    	// UnbindAddress unbind address from the interface
    	UnbindAddress(address, devName string) error
    	// EnsureDummyDevice checks if dummy device is exist and, if not, create one.  If the dummy device is already exist, return true.
    	EnsureDummyDevice(devName string) (exist bool, err error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 27 19:02:20 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/Sample.java

            String dirName = sampleName.endsWith("/") ? sampleName.substring(0, sampleName.length() - 1) : sampleName;
            for (String dslLanguageCodeName : GradleDsl.languageCodeNames()) {
                String dslPathFragment = '/' + dslLanguageCodeName;
                if (dirName.endsWith(dslPathFragment)) {
                    dirName = dirName.substring(0, dirName.lastIndexOf(dslPathFragment));
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/internal/saved_model_api.cc

    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/status.h"
    
    extern "C" {
    
    TF_SavedModel* TF_LoadSavedModel(const char* dirname, TFE_Context* ctx,
                                     TF_Status* status) {
      std::string saved_model_dir(dirname);
      std::unique_ptr<tensorflow::SavedModelAPI> result;
    
      if (tensorflow::unwrap(ctx)->UsesTFRT()) {
        status->status = tensorflow::errors::Unimplemented(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 04 00:45:47 UTC 2020
    - 4.7K bytes
    - Viewed (0)
  4. pkg/kubelet/config/file_test.go

    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    )
    
    func TestExtractFromBadDataFile(t *testing.T) {
    	dirName, err := mkTempDir("file-test")
    	if err != nil {
    		t.Fatalf("unable to create temp dir: %v", err)
    	}
    	defer removeAll(dirName, t)
    
    	fileName := filepath.Join(dirName, "test_pod_config")
    	err = os.WriteFile(fileName, []byte{1, 2, 3}, 0555)
    	if err != nil {
    		t.Fatalf("unable to write test file %#v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/define_op_template.py

      else:
        assert FLAGS.output.endswith('.mlir')
        generated_code = tfr_gen_from_module(sys.modules[__name__], '_composite_')
    
      dirname = os.path.dirname(FLAGS.output)
      if not os.path.exists(dirname):
        os.makedirs(dirname)
      with open(FLAGS.output, 'w') as f:
        f.write(generated_code)
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.h

    // TF_DUMP_GRAPH_PREFIX environment variable if `dirname` is empty and
    // suffixing `name` with ".mlir".
    Status CreateFileForDumping(llvm::StringRef name,
                                std::unique_ptr<llvm::raw_ostream>* os,
                                std::string* filepath,
                                llvm::StringRef dirname = "");
    
    // Dumps MLIR operation to a file and returns the file name used.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/examples/customization/ops_defs.py

      else:
        assert FLAGS.output.endswith('.mlir')
        generated_code = tfr_gen_from_module(sys.modules[__name__], '_override_')
    
      dirname = os.path.dirname(FLAGS.output)
      if not os.path.exists(dirname):
        os.makedirs(dirname)
      with open(FLAGS.output, 'w') as f:
        f.write(generated_code)
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.idl

    		uint32_t count;
    		[size_is(count)] DfsInfo3 *s;
    	} DfsEnumArray3;
    
    	typedef struct {
    		[string] wchar_t *dfs_name;
    	} DfsInfo200;
    
    	typedef struct {
    		uint32_t count;
    		[size_is(count)] DfsInfo200 *s;
    	} DfsEnumArray200;
    
    	typedef struct {
    		uint32_t flags;
    		[string] wchar_t *dfs_name;
    	} DfsInfo300;
    
    	typedef struct {
    		uint32_t count;
    		[size_is(count)] DfsInfo300 *s;
    	} DfsEnumArray300;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  9. tensorflow/c/env.cc

      std::vector<::tensorflow::string>* list;
      size_t position;
    };
    
    void TF_CreateDir(const char* dirname, TF_Status* status) {
      TF_SetStatus(status, TF_OK, "");
      ::tensorflow::Set_TF_Status_from_Status(
          status, ::tensorflow::Env::Default()->CreateDir(dirname));
    }
    
    void TF_DeleteDir(const char* dirname, TF_Status* status) {
      TF_SetStatus(status, TF_OK, "");
      ::tensorflow::Set_TF_Status_from_Status(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 7K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/public/saved_model_api.h

    TF_CAPI_EXPORT extern TF_SavedModel* TF_LoadSavedModel(const char* dirname,
                                                           TFE_Context* ctx,
                                                           TF_Status* status);
    
    // Load a SavedModel from `dirname`.
    //
    // Params:
    //  dirname - A directory filepath that the SavedModel is at.
    //  ctx - A TFE_Context containing optional load/TF runtime options.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 04 00:45:47 UTC 2020
    - 5K bytes
    - Viewed (0)
Back to top