Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,905 for pathsOf (1.69 sec)

  1. hack/gen-swagger-doc/gen-swagger-docs.sh

    sed -i -e 's|<<\(.*\)\.\(.*\)>>|link:../definitions#_\L\1_\2\E[\1.\2]|g' ./paths.adoc
    
    # fix the link to <<any>>
    sed -i -e 's|<<any>>|link:#_any[any]|g' ./definitions.adoc
    sed -i -e 's|<<any>>|link:../definitions#_any[any]|g' ./paths.adoc
    
    # change the title of paths.adoc from "paths" to "operations"
    sed -i 's|== Paths|== Operations|g' ./paths.adoc
    
    # $$ has special meaning in asciidoc, we need to escape it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 19 12:58:58 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  2. docs_src/generate_clients/tutorial004.js

    async function modifyOpenAPIFile(filePath) {
      try {
        const data = await fs.promises.readFile(filePath)
        const openapiContent = JSON.parse(data)
    
        const paths = openapiContent.paths
        for (const pathKey of Object.keys(paths)) {
          const pathData = paths[pathKey]
          for (const method of Object.keys(pathData)) {
            const operation = pathData[method]
            if (operation.tags && operation.tags.length > 0) {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 14 11:40:05 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_invalid_path_plus.txt

    # https://golang.org/issue/44776
    # The '+' character should be disallowed in module paths, but allowed in package
    # paths within valid modules.
    
    # 'go list' accepts package paths with pluses.
    cp go.mod.orig go.mod
    go get example.net/cmd
    go list example.net/cmd/x++
    
    # 'go list -m' rejects module paths with pluses.
    ! go list -versions -m 'example.net/bad++'
    stderr '^go: malformed module path "example.net/bad\+\+": invalid char ''\+''$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 821 bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/PathTest.groovy

        }
    
        def "sorts paths depth-first case-insensitive"() {
            expect:
            paths(['a', 'b', 'A', 'abc']).sort() == paths(['A', 'a', 'abc', 'b'])
            paths([':a', ':b', ':b:a', ':B:a', ':', ':B', ':a:a']).sort() == paths([':', ':a', ':a:a', ':B', ':B:a', ':b', ':b:a'])
            paths(['b', 'b:a', 'a', 'a:a']).sort() == paths(['a', 'a:a', 'b', 'b:a'])
            paths([':', ':a', 'a']).sort() == paths(['a', ':', ':a'])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 12:54:37 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. src/os/os_windows_test.go

    type reparseData struct {
    	substituteName namePosition
    	printName      namePosition
    	pathBuf        []uint16
    }
    
    type namePosition struct {
    	offset uint16
    	length uint16
    }
    
    func (rd *reparseData) addUTF16s(s []uint16) (offset uint16) {
    	off := len(rd.pathBuf) * 2
    	rd.pathBuf = append(rd.pathBuf, s...)
    	return uint16(off)
    }
    
    func (rd *reparseData) addString(s string) (offset, length uint16) {
    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. src/main/java/org/codelibs/fess/util/ResourceUtil.java

            if (Files.exists(Paths.get(srcWebInfBase))) {
                return Paths.get(srcWebInfBase, names);
            }
            final String targetWebInfBase = "target/fess/" + root + base;
            if (Files.exists(Paths.get(targetWebInfBase))) {
                return Paths.get(targetWebInfBase, names);
            }
            return Paths.get(webinfBase, names);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_go_file.txt

    # argument doesn't have .go suffix and has no version
    ! go get test
    ! stderr 'arguments must be package or module paths'
    ! stderr 'exists as a file, but ''go get'' requires package arguments'
    
    # argument has .go suffix and has version
    ! go get test.go@v1.0.0
    ! stderr 'arguments must be package or module paths'
    ! stderr 'exists as a file, but ''go get'' requires package arguments'
    
    # argument has .go suffix, is a file and exists
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:08 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultIgnoredConfigurationInputsTest.kt

        private
        fun createFromPaths(paths: List<String>, isCaseSensitive: Boolean = true): DefaultIgnoredConfigurationInputs {
            return DefaultIgnoredConfigurationInputs(paths.joinToString(";"), isCaseSensitive, rootDir)
        }
    
        @Test
        fun `if created with an empty or null paths list, does not recognize an empty string`() {
            val instance = createFromPaths(emptyList())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/file/delete/DefaultDeleteSpec.java

        private Object[] paths;
        private boolean followSymlinks;
    
        public DefaultDeleteSpec() {
            paths = new Object[0];
            followSymlinks = false;
        }
    
        @Override
        public Object[] getPaths() {
            return paths;
        }
    
        @Override
        public DefaultDeleteSpec delete(Object... files) {
            paths = files;
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  10. src/path/filepath/symlink_windows.go

    // It should accept the following formats:
    //   - UNC paths                              (e.g \\server\share\foo\bar)
    //   - absolute paths                         (e.g C:\foo\bar)
    //   - relative paths begin with drive letter (e.g C:foo\bar, C:..\foo\bar, C:.., C:.)
    //   - relative paths begin with '\'          (e.g \foo\bar)
    //   - relative paths begin without '\'       (e.g foo\bar, ..\foo\bar, .., .)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 07:42:17 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top