Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 229 for somefile (0.16 sec)

  1. src/os/executable_test.go

    		t.Fatalf("Child returned %q, want an absolute path", out)
    	}
    	if !sameFile(outs, ep) {
    		t.Fatalf("Child returned %q, not the same file as %q", out, ep)
    	}
    }
    
    func sameFile(fn1, fn2 string) bool {
    	fi1, err := os.Stat(fn1)
    	if err != nil {
    		return false
    	}
    	fi2, err := os.Stat(fn2)
    	if err != nil {
    		return false
    	}
    	return os.SameFile(fi1, fi2)
    }
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. 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)
  3. hack/testdata/CRD/multi-crd-list-deleted-field.yaml

    apiVersion: v1
    kind: List
    items:
    - kind: Foo
      apiVersion: company.com/v1
      metadata:
        name: test-list
        labels:
          pruneGroup: "true"
      someField: modifiedField
    - kind: Bar
      apiVersion: company.com/v1
      metadata:
        name: test-list
        labels:
          pruneGroup: "true"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 01 15:43:24 UTC 2017
    - 307 bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/MavenExecutionException.java

    public class MavenExecutionException extends Exception {
        private File pomFile;
    
        public MavenExecutionException(String message, File pomFile) {
            super(message);
            this.pomFile = pomFile;
        }
    
        public MavenExecutionException(String message, File pomFile, ProjectBuildingException cause) {
            super(message, cause);
            this.pomFile = pomFile;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/dist/util.go

    func errprintf(format string, args ...interface{}) {
    	fmt.Fprintf(os.Stderr, format, args...)
    }
    
    // xsamefile reports whether f1 and f2 are the same file (or dir).
    func xsamefile(f1, f2 string) bool {
    	fi1, err1 := os.Stat(f1)
    	fi2, err2 := os.Stat(f2)
    	if err1 != nil || err2 != nil {
    		return f1 == f2
    	}
    	return os.SameFile(fi1, fi2)
    }
    
    func xgetgoarm() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 17:50:29 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publisher/ValidatingMavenPublisherTest.groovy

            }
            def projectIdentity = makeProjectIdentity("group", "artifact", "version")
            def pomFile = createPomFile(projectIdentity)
            def publication = new MavenNormalizedPublication("pub-name", projectIdentity, "pom", pomFile, null, toSet([artifact1, pomFile]))
    
            when:
            publisher.publish(publication, repository)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/preflight.go

    // that are unsupported for migration.
    func checkUnsupportedPlugins(client clientset.Interface) error {
    	klog.V(1).Infoln("validating if there are any unsupported CoreDNS plugins in the Corefile")
    	_, corefile, currentInstalledCoreDNSversion, err := dns.GetCoreDNSInfo(client)
    	if err != nil {
    		return err
    	}
    
    	currentInstalledCoreDNSversion = strings.TrimLeft(currentInstalledCoreDNSversion, "v")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 25 13:53:28 UTC 2023
    - 4.1K 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