Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 539 for libname (0.12 sec)

  1. src/os/read_test.go

    	}
    }
    
    func TestReadDir(t *testing.T) {
    	t.Parallel()
    
    	dirname := "rumpelstilzchen"
    	_, err := ReadDir(dirname)
    	if err == nil {
    		t.Fatalf("ReadDir %s: error expected, none found", dirname)
    	}
    
    	dirname = "."
    	list, err := ReadDir(dirname)
    	if err != nil {
    		t.Fatalf("ReadDir %s: %v", dirname, err)
    	}
    
    	foundFile := false
    	foundSubDir := false
    	for _, dir := range list {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 02:36:46 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsentity/BsJobLog.java

            this.endTime = value;
        }
    
        public String getJobName() {
            checkSpecifiedProperty("jobName");
            return convertEmptyToNull(jobName);
        }
    
        public void setJobName(String value) {
            registerModifiedProperty("jobName");
            this.jobName = value;
        }
    
        public String getJobStatus() {
            checkSpecifiedProperty("jobStatus");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. pkg/kubelet/config/file_linux_test.go

    	var testCases = getTestCases(hostname)
    
    	for _, testCase := range testCases {
    		func() {
    			dirName, err := mkTempDir("file-test")
    			if err != nil {
    				t.Fatalf("unable to create temp dir: %v", err)
    			}
    			defer os.RemoveAll(dirName)
    			file := testCase.writeToFile(dirName, "test_pod_manifest", t)
    
    			ch := make(chan interface{})
    			NewSourceFile(file, hostname, time.Millisecond, ch)
    			select {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 09:38:23 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  4. src/math/big/arith_decl.go

    // license that can be found in the LICENSE file.
    
    //go:build !math_big_pure_go
    
    package big
    
    import _ "unsafe" // for linkname
    
    // implemented in arith_$GOARCH.s
    
    // addVV should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/remyoudompheng/bigfft
    //
    // Do not remove or change the type signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:15:13 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top