Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 100 for somefile (0.14 sec)

  1. src/main/java/jcifs/smb/SmbFile.java

     * resources are files and directories however an <code>SmbFile</code>
     * may also refer to servers and workgroups. If the resource is a file or
     * directory the methods of <code>SmbFile</code> follow the behavior of
     * the well known {@link java.io.File} class. One fundamental difference
     * is the usage of a URL scheme [1] to specify the target file or
     * directory. SmbFile URLs have the following syntax:
     *
     * <blockquote>
     * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  2. src/os/types.go

    // SameFile reports whether fi1 and fi2 describe the same file.
    // For example, on Unix this means that the device and inode fields
    // of the two underlying structures are identical; on other systems
    // the decision may be based on the path names.
    // SameFile only applies to results returned by this package's [Stat].
    // It returns false in other cases.
    func SameFile(fi1, fi2 FileInfo) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. src/os/stat_test.go

    		t.Error(err)
    		return
    	}
    	params.statCheck(t, path, sfi2)
    
    	if !os.SameFile(sfi, sfi2) {
    		t.Errorf("stat of open %q file and stat of %q should be the same", path, path)
    	}
    
    	if params.isLink {
    		if os.SameFile(sfi2, lsfi) {
    			t.Errorf("stat of opened %q file and lstat of %q should not be the same", path, path)
    		}
    	} else {
    		if !os.SameFile(sfi2, lsfi) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:38:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/addons/dns/dns.go

    	canMigrateCorefile := true
    
    	if corefile == "" || migration.Default("", corefile) {
    		// If the Corefile is empty or default, the latest default Corefile will be applied
    		if err := apiclient.CreateOrUpdateConfigMap(client, coreDNSConfigMap); err != nil {
    			return err
    		}
    	} else if corefileMigrationRequired {
    		// If migration is required, try and migrate the Corefile
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. src/os/os_windows_test.go

    		t.Errorf("SameFile(%v, %v) = true; want false", f1, f2)
    	}
    
    	// Check that os.SameFile works with a mix of os.ReadDir and os.Stat files.
    	f1s, err := os.Stat(pathA)
    	if err != nil {
    		t.Fatal(err)
    	}
    	f2s, err := os.Stat(pathB)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !os.SameFile(f1, f1s) {
    		t.Errorf("SameFile(%v, %v) = false; want true", f1, f1s)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

            when: "adding a library to the model"
            tomlFile << """
    bar = {group="org.gradle.test", name="bar", version="1.0"}
    """
            run 'verifyExtension'
            then: "extension is regenerated"
            operations.hasOperation("Executing generation of dependency accessors for libs")
    
            when: "updating a version in the model"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/dir.go

    }
    
    func (d Dir) DebugDir() string {
    	return d.debug
    }
    
    func (d Dir) ModeFile() string {
    	return d.modefile
    }
    
    // SetMode updates the telemetry mode with the given mode.
    // Acceptable values for mode are "on", "off", or "local".
    //
    // SetMode always writes the mode file, and explicitly records the date at
    // which the modefile was updated. This means that calling SetMode with "on"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/os/dir_windows.go

    func (d *dirInfo) init(h syscall.Handle) {
    	d.h = h
    	d.class = windows.FileFullDirectoryRestartInfo
    	// The previous settings are enough to read the directory entries.
    	// The following code is only needed to support os.SameFile.
    
    	// It is safe to query d.vol once and reuse the value.
    	// Hard links are not allowed to reference files in other volumes.
    	// Junctions and symbolic links can reference files and directories in other volumes,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

            File pomFile = new File("src/test/resources/projects/modelsource/module01/pom.xml");
            MavenSession mavenSession = createMavenSession(pomFile);
            ProjectBuildingRequest configuration = new DefaultProjectBuildingRequest();
            configuration.setRepositorySession(mavenSession.getRepositorySession());
            ModelSource modelSource = new FileModelSource(pomFile);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/addons/dns/dns_test.go

    			if !strings.EqualFold(migratedConfigMap.Data["Corefile"], tc.expectedCorefileData) {
    				t.Fatalf("expected to get %v, but got %v", tc.expectedCorefileData, migratedConfigMap.Data["Corefile"])
    			}
    		})
    	}
    }
    
    func createClientAndCoreDNSManifest(t *testing.T, corefile, coreDNSVersion string) *clientsetfake.Clientset {
    	client := clientsetfake.NewSimpleClientset()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top