Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 485 for filename (0.37 sec)

  1. pkg/volume/volume_linux_test.go

    			setupFunc: func(path string) error {
    				filename := filepath.Join(path, "file.txt")
    				file, err := os.OpenFile(filename, os.O_RDWR|os.O_CREATE, 0755)
    				if err != nil {
    					return err
    				}
    				file.Close()
    				return nil
    			},
    			assertFunc: func(path string) error {
    				filename := filepath.Join(path, "file.txt")
    				if !verifyFileOwner(filename, currentUid, currentGid) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. src/go/scanner/scanner_test.go

    	pos := fset.Position(p)
    	// Check cleaned filenames so that we don't have to worry about
    	// different os.PathSeparator values.
    	if pos.Filename != expected.Filename && filepath.Clean(pos.Filename) != filepath.Clean(expected.Filename) {
    		t.Errorf("bad filename for %q: got %s, expected %s", lit, pos.Filename, expected.Filename)
    	}
    	if pos.Offset != expected.Offset {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  3. operator/cmd/mesh/uninstall.go

    	cmd.PersistentFlags().StringVarP(&args.revision, "revision", "r", "", revisionFlagHelpStr)
    	cmd.PersistentFlags().StringVarP(&args.filename, "filename", "f", "",
    		"The filename of the IstioOperator CR.")
    	cmd.PersistentFlags().StringVarP(&args.manifestsPath, "manifests", "d", "", ManifestsFlagHelpStr)
    	cmd.PersistentFlags().StringArrayVarP(&args.set, "set", "s", nil, setFlagHelpStr)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/patches/patches_test.go

    			fileName:        "foo.yaml",
    			expectedWarning: true,
    		},
    		{
    			name:            "invalid: unknown extension",
    			fileName:        "etcd.foo",
    			expectedWarning: true,
    		},
    		{
    			name:            "invalid: missing extension",
    			fileName:        "etcd",
    			expectedWarning: true,
    		},
    		{
    			name:          "invalid: unknown patch type",
    			fileName:      "etcd+foo.json",
    			expectedError: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 14:24:11 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.cc

      int count;
      {
        mutex_lock lock(instance.counts_mutex);
        count = instance.counts[name]++;
      }
    
      std::string filename = name;
      if (count > 0) {
        filename = llvm::formatv("{0}_{1}", filename, count).str();
      }
      filename = llvm::Twine(filename).concat(".mlir").str();
      return filename;
    }
    
    // Simple raw_ostream that prints to stderr.
    struct LogInfoRawStream : public llvm::raw_ostream {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 03:03:46 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerifierBuilder.java

            addTrustedArtifact(group, name, version, fileName, regex, null);
        }
    
        public void addTrustedArtifact(@Nullable String group, @Nullable String name, @Nullable String version, @Nullable String fileName, boolean regex, @Nullable String reason) {
            validateUserInput(group, name, version, fileName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem.cc

    typedef struct PosixFile {
      const char* filename;
      int fd;
    } PosixFile;
    
    static void Cleanup(TF_RandomAccessFile* file) {
      auto posix_file = static_cast<PosixFile*>(file->plugin_file);
      close(posix_file->fd);
      // This would be safe to free using `free` directly as it is only opaque.
      // However, it is better to be consistent everywhere.
      plugin_memory_free(const_cast<char*>(posix_file->filename));
      delete posix_file;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 20:08:23 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/design/admin_design.jsp

                                <div class="card-body">
                                    <div class="form-group row">
                                        <la:errors property="fileName"/>
                                        <la:select styleId="fileName" property="fileName" styleClass="form-control">
                                            <c:forEach var="item" varStatus="s" items="${fileNameItems}">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 11.1K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/pcln.go

    //	   offsetToFilename[1]
    //	   ..
    //
    //	runtime.filetab
    //	   filename[0]
    //	   filename[1]
    //
    // Looking up a filename then becomes:
    //  0. Given a func, and filename index [K]
    //  1. Get Func.CUIndex:       M := func.cuOffset
    //  2. Find filename offset:   fileOffset := runtime.cutab[M+K]
    //  3. Get the filename:       getcstring(runtime.filetab[fileOffset])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  10. src/go/internal/gcimporter/gcimporter_test.go

    	os.Exit(m.Run())
    }
    
    // compile runs the compiler on filename, with dirname as the working directory,
    // and writes the output file to outdirname.
    // compile gives the resulting package a packagepath of testdata/<filebasename>.
    func compile(t *testing.T, dirname, filename, outdirname string, packageFiles map[string]string, pkgImports ...string) string {
    	// filename must end with ".go"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top