Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,900 for directory1 (0.19 sec)

  1. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/ApacheDirectoryListingParserTest.groovy

            def html = """
            <a href="directory1">directory1</a>
            <a href="directory2">directory2</a>
            <a href="directory3">directory3</a>
            <a href="directory4"/>"""
            expect:
            def uris = parser.parse(baseUrl, new ByteArrayInputStream(html.bytes), CONTENT_TYPE)
            assertNotNull(uris)
            uris.collect { it.toString() } == ["directory1", "directory2", "directory3", "directory4"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. cmd/server_test.go

    	c.Assert(err, nil)
    
    	// execute the HTTP request to create bucket.
    	response, err := s.client.Do(request)
    	c.Assert(err, nil)
    	c.Assert(response.StatusCode, 200)
    
    	objectName := "directory1/directory2/object"
    	// construct HTTP request to initiate a NewMultipart upload.
    	request, err = newTestSignedRequest(http.MethodPost, getNewMultipartURL(s.endPoint, bucketName, objectName),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.Directory.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 445 bytes
    - Viewed (0)
  4. src/io/fs/walk.go

    // the error from [fs.Stat].
    //
    // Second, if a directory's ReadDir method (see [ReadDirFile]) fails, WalkDir calls the
    // function with path set to the directory's path, d set to an
    // [DirEntry] describing the directory, and err set to the error from
    // ReadDir. In this second case, the function is called twice with the
    // path of the directory: the first call is before the directory read is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 08:50:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/README

    // license that can be found in the LICENSE file.
    
    This command generates Go code (in the parent directory) for all
    the architecture-specific opcodes, blocks, and rewrites. See the
    "Hacking on SSA" section in the parent directory's README.md for
    more information.
    
    To regenerate everything, run "go generate" on the ssa package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 462 bytes
    - Viewed (0)
  6. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/Deleter.java

        /**
         * Makes sure that the given target is an empty directory.
         *
         * If target is...
         *
         * <ul>
         *     <li>a directory, then its contents are removed recursively,</li>
         *     <li>a file or a symlink, then it is deleted and a directory is created in its place,</li>
         *     <li>non-existent, then a directory is created in its place.</li>
         * </ul>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. src/os/tempfile.go

    }
    
    // MkdirTemp creates a new temporary directory in the directory dir
    // and returns the pathname of the new directory.
    // The new directory's name is generated by adding a random string to the end of pattern.
    // If pattern includes a "*", the random string replaces the last "*" instead.
    // The directory is created with mode 0o700 (before umask).
    // If dir is the empty string, MkdirTemp uses the default directory for temporary files, as returned by TempDir.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 18:04:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/exported_model.proto

      string init_node_name = 2;
    
      // Path to the directory where checkpoint files are saved. This directoy is
      // not expected to be persistent (usually a temporary directory). When
      // fetching the restore op (see `restore_node_name`), this value is provided
      // to the "file_prefix" tensor to identify the checkpoint directory.
      string checkpoint_dir = 5;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 06:12:59 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. src/os/removeall_at.go

    	})
    	if err == nil || IsNotExist(err) {
    		return nil
    	}
    
    	// EISDIR means that we have a directory, and we need to
    	// remove its contents.
    	// EPERM or EACCES means that we don't have write permission on
    	// the parent directory, but this entry might still be a directory
    	// whose contents need to be removed.
    	// Otherwise just return the error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. .github/workflows/people.yml

            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v4
          # Ref: https://github.com/actions/runner/issues/2033
          - name: Fix git safe.directory in container
            run: mkdir -p /home/runner/work/_temp/_github_home && printf "[safe]\n\tdirectory = /github/workspace" > /home/runner/work/_temp/_github_home/.gitconfig
          # Allow debugging with tmate
          - name: Setup tmate session
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 07:19:41 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top