Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 648 for Unshare (0.21 sec)

  1. clause/locking_test.go

    		},
    		{
    			[]clause.Interface{clause.Select{}, clause.From{}, clause.Locking{Strength: clause.LockingStrengthShare, Table: clause.Table{Name: clause.CurrentTable}}},
    			"SELECT * FROM `users` FOR SHARE OF `users`", nil,
    		},
    		{
    			[]clause.Interface{clause.Select{}, clause.From{}, clause.Locking{Strength: clause.LockingStrengthUpdate, Options: clause.LockingOptionsNoWait}},
    			"SELECT * FROM `users` FOR UPDATE NOWAIT", nil,
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:32:56 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/cmd/pprof/README

    Because it was developed for that broader context, it is overgeneralized
    when used here for the specific use case of profiling standard Go programs.
    However, we've left the abstractions intact in order to share updates
    between our vendored copy and Google's internal one.
    Please do not take the level of abstraction in this program as an example
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 19:51:01 UTC 2017
    - 905 bytes
    - Viewed (0)
  3. pkg/volume/volume.go

    	// underlying storage. For Volumes that share a filesystem with the host
    	// (e.g. emptydir, hostpath) this is the size of the underlying storage,
    	// and will not equal Used + Available as the fs is shared.
    	Capacity *resource.Quantity
    
    	// Available represents the storage space available (bytes) for the
    	// Volume. For Volumes that share a filesystem with the host (e.g.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbResourceLocatorInternal.java

        /**
         * @return whether to enforce the use of signing on connection to this resource
         */
        boolean shouldForceSigning ();
    
    
        /**
         * @param other
         * @return whether the paths share a common root
         * @throws CIFSException
         */
        boolean overlaps ( SmbResourceLocator other ) throws CIFSException;
    
    
        /**
         * Internal: for testing only
         * 
         * @param dr
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/java/jvm-multi-project-with-toolchains/README.adoc

    Using toolchains, it is very simple to set the required java version while Gradle handles the setting up the tasks (e.g. compile and test) accordingly.
    
    Concretely, we add a _convention plugin_ in `buildSrc` to share the setup between multiple subprojects:
    
    ====
    include::sample[dir="kotlin",files="buildSrc/src/main/kotlin/myproject.java-conventions.gradle.kts[tags=toolchain]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishCoordinatesIntegTest.groovy

                }
                withoutModuleMetadata {
                    expectFiles 'custom-api-2.jar'
                }
            }
        }
    
        def "warns when multiple publications share the same coordinates"() {
            given:
            settingsFile << "rootProject.name = 'duplicate-publications'"
            buildFile << """
                apply plugin: 'ivy-publish'
                apply plugin: 'java'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/rsc.io_quote_v3_v3.0.0.txt

    	// See http://www.oocities.org/nodotus/hbglass.html.
    	return "I can eat glass and it doesn't hurt me."
    }
    
    // Go returns a Go proverb.
    func GoV3() string {
    	return "Don't communicate by sharing memory, share memory by communicating."
    }
    
    // Opt returns an optimization truth.
    func OptV3() string {
    	// Wisdom from ken.
    	return "If a program is too slow, it must have a loop."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  8. src/packaging/deb/copyright

     See the License for the specific language governing permissions and
     limitations under the License.
     .
     On Debian systems, the complete text of the Apache version 2.0 license
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jan 07 06:27:26 UTC 2016
    - 749 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/dumper.go

    		if x, ok := x.Interface().(*Name); ok {
    			p.printf("%s @ %v", x.Value, x.Pos())
    			return
    		}
    
    		p.printf("*")
    		// Fields may share type expressions, and declarations
    		// may share the same group - use ptrmap to keep track
    		// of nodes that have been printed already.
    		if ptr, ok := x.Interface().(Node); ok {
    			if line, exists := p.ptrmap[ptr]; exists {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 08 17:32:14 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  10. src/mime/type.go

    //
    // The built-in table is small but on unix it is augmented by the local
    // system's MIME-info database or mime.types file(s) if available under one or
    // more of these names:
    //
    //	/usr/local/share/mime/globs2
    //	/usr/share/mime/globs2
    //	/etc/mime.types
    //	/etc/apache2/mime.types
    //	/etc/apache/mime.types
    //
    // On Windows, MIME types are extracted from the registry.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top