Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 648 for Unshare (0.12 sec)

  1. platforms/documentation/docs/src/samples/readme-templates/multi-common-summary.adoc.template

    * Create a modular software project by combining multiple subprojects
    * Share build configuration logic between subprojects using convention plugins in `buildSrc`
    * Run similar named tasks in all subprojects
    * Run a task in a specific subproject
    * Build, bundle and run the application
    
    == Next steps
    
    When your project grows, you might be interested in more details how to configure JVM projects, structuring multi-project builds and dependency management:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 718 bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/tflite-op-request.md

    ```
    # Copy and paste here
    ```
    
    **Standalone code to reproduce the issue** 
    Provide a reproducible test case that is the bare minimum necessary to generate
    the problem. If possible, please share a link to Colab/Jupyter/any notebook.
    
    Also, please include a link to a GraphDef or the model if possible.
    
    **Any other info / logs**
    
    Include any logs or source code that would be helpful to diagnose the problem.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 15 03:35:58 UTC 2022
    - 879 bytes
    - Viewed (0)
  3. src/mime/type_unix.go

    }
    
    // See https://specifications.freedesktop.org/shared-mime-info-spec/shared-mime-info-spec-0.21.html
    // for the FreeDesktop Shared MIME-info Database specification.
    var mimeGlobs = []string{
    	"/usr/local/share/mime/globs2",
    	"/usr/share/mime/globs2",
    }
    
    // Common locations for mime.types files on unix.
    var typeFiles = []string{
    	"/etc/mime.types",
    	"/etc/apache2/mime.types",
    	"/etc/apache/mime.types",
    	"/etc/httpd/conf/mime.types",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. src/packaging/deb/lintian/fess

    # Not stripping external libraries
    fess binary: unstripped-binary-or-object
    # Ignore arch dependent warnings, we chose the right libs on start
    fess binary: arch-dependent-file-in-usr-share
    # Please check our changelog at https://github.com/codelibs/fess
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 439 bytes
    - Viewed (0)
  5. src/debug/dwarf/line_test.go

    	{`C:\`, `Windows`, `C:\Windows`},
    	{`C:\Windows\`, `C:System32`, `C:\Windows\System32`},
    	{`C:\Windows`, `a/b`, `C:\Windows\a/b`},
    	{`\\host\share\`, `foo`, `\\host\share\foo`},
    	{`\\host\share\`, `foo\bar`, `\\host\share\foo\bar`},
    	{`//host/share/`, `foo/bar`, `//host/share/foo/bar`},
    
    	// Note: the Go compiler currently emits DWARF line table paths
    	// with '/' instead of '\' (see issues #19784, #36495). These
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/testing/testReport/kotlin/buildSrc/src/main/kotlin/myproject.java-conventions.gradle.kts

    // tag::test-report[]
    plugins {
        id("java")
    }
    
    // Disable the test report for the individual test task
    tasks.named<Test>("test") {
        reports.html.required = false
    }
    
    // Share the test report data to be aggregated for the whole project
    configurations.create("binaryTestResultsElements") {
        isCanBeResolved = false
        isCanBeConsumed = true
        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 690 bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r32/BuildActionCrossVersionSpec.groovy

            // Ensure daemon is reused
            toolingApi.requireIsolatedDaemons()
    
            // Copy each of the action classes into its own classes directory and load into a single ClassLoader
            // Actions also share some static state, to verify that actions are loaded into the same ClassLoader in the daemon
            def classesDir1 = file("actions/1")
            copyClassTo(Action1, classesDir1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/SmbResource.java

         * the share permissions on the share exporting this file or directory.
         * If no DACL is present, null is returned. If the DACL is empty, an array with 0 elements is returned.
         * <p>
         * Note that this is different from calling <tt>getSecurity</tt> on a
         * share. There are actually two different ACLs for shares - the ACL on
         * the share and the ACL on the folder being shared.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 26K bytes
    - Viewed (0)
  9. src/path/filepath/path.go

    // returns the string ".".
    //
    // On Windows, Clean does not modify the volume name other than to replace
    // occurrences of "/" with `\`.
    // For example, Clean("//host/share/../x") returns `\\host\share\x`.
    //
    // See also Rob Pike, “Lexical File Names in Plan 9 or
    // Getting Dot-Dot Right,”
    // https://9p.io/sys/doc/lexnames.html
    func Clean(path string) string {
    	return filepathlite.Clean(path)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFile.java

        }
    
    
        /**
         * Retrieves the share associated with this SMB resource. In
         * the case of <code>smb://</code>, <code>smb://workgroup/</code>,
         * and <code>smb://server/</code> URLs which do not specify a share,
         * <code>null</code> will be returned.
         *
         * @return The share component or <code>null</code> if there is no share
         */
        public String getShare () {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
Back to top