Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 125 for someFile (0.2 sec)

  1. pkg/kube/inject/testdata/inject/custom-template.iop.yaml

                {{- range $index, $container := .Spec.Containers }}
                - name: {{ $container.Name }}
                  env:
                  - name: SOME_ENV
                    value: "true"
                  - name: SOME_FILE
                    value: /var/lib/data/foo.json
                  volumeMounts:
                  - mountPath: /var/lib/data/foo.json
                    subPath: foo.json
                    name: some-injected-file
                {{- end}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 06 23:34:59 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  2. 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)
  3. src/os/types_windows.go

    		idxhi:          d.FileIndexHigh,
    		idxlo:          d.FileIndexLow,
    		ReparseTag:     reparseTag,
    		// fileStat.path is used by os.SameFile to decide if it needs
    		// to fetch vol, idxhi and idxlo. But these are already set,
    		// so set fileStat.path to "" to prevent os.SameFile doing it again.
    	}, nil
    }
    
    // newFileStatFromWin32FileAttributeData copies all required information
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/custom-template.yaml.injected

          creationTimestamp: null
          labels:
            app: hello
        spec:
          containers:
          - env:
            - name: SOME_ENV
              value: "true"
            - name: SOME_FILE
              value: /var/lib/data/foo.json
            image: fake.docker.io/google-samples/hello-go-gke:1.0
            name: hello
            readinessProbe:
              httpGet:
                port: 80
            resources: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 25 05:41:41 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  5. src/os/types_unix.go

    func (fs *fileStat) Mode() FileMode     { return fs.mode }
    func (fs *fileStat) ModTime() time.Time { return fs.modTime }
    func (fs *fileStat) Sys() any           { return &fs.sys }
    
    func sameFile(fs1, fs2 *fileStat) bool {
    	return fs1.sys.Dev == fs2.sys.Dev && fs1.sys.Ino == fs2.sys.Ino
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 776 bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/DefaultVisualStudioProjectTest.groovy

        }
    
        def "has consistent uuid for same file"() {
            when:
            def file = new File("foo")
            def sameFile = new File("foo")
            def differentFile = new File("bar")
    
            then:
            getUUID(file) == getUUID(sameFile)
            getUUID(file) != getUUID(differentFile)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/internal/FileReferenceFactoryTest.groovy

            TestFile file = rootDir.file("a/file.txt")
            def reference = factory.fromFile(file)
            def sameFile = factory.fromFile(file)
            def differentFile = factory.fromFile(rootDir)
    
            expect:
            reference Matchers.strictlyEqual(sameFile)
            reference != differentFile
        }
    
        private String relpath(File file) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. src/os/types_plan9.go

    func (fs *fileStat) Mode() FileMode     { return fs.mode }
    func (fs *fileStat) ModTime() time.Time { return fs.modTime }
    func (fs *fileStat) Sys() any           { return fs.sys }
    
    func sameFile(fs1, fs2 *fileStat) bool {
    	a := fs1.sys.(*syscall.Dir)
    	b := fs2.sys.(*syscall.Dir)
    	return a.Qid.Path == b.Qid.Path && a.Type == b.Type && a.Dev == b.Dev
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 03:57:40 UTC 2022
    - 797 bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inputs/custom-template.yaml.40.values.gen.yaml

       sidecar.istio.io/rewriteAppHTTPProbers: \"false\"\n    foo: bar\nspec:\n  containers:\n  {{- range $index, $container := .Spec.Containers }}\n  - name: {{ $container.Name }}\n    env:\n    - name: SOME_ENV\n      value: \"true\"\n    - name: SOME_FILE\n      value: /var/lib/data/foo.json\n    volumeMounts:\n    - mountPath: /var/lib/data/foo.json\n      subPath: foo.json\n      name: some-injected-file\n  {{- end}}\n  volumes:\n  - name: some-injected-file\n    downwardAPI:\n      items:\n   ...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. src/cmd/internal/src/xpos.go

    // For positions with different bases, ordering is by base index.
    func (p XPos) Before(q XPos) bool {
    	n, m := p.index, q.index
    	return n < m || n == m && p.lico < q.lico
    }
    
    // SameFile reports whether p and q are positions in the same file.
    func (p XPos) SameFile(q XPos) bool {
    	return p.index == q.index
    }
    
    // SameFileAndLine reports whether p and q are positions on the same line in the same file.
    func (p XPos) SameFileAndLine(q XPos) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top