Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for Example (0.11 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCompositeBuildsIntegrationTest.groovy

            '''
            createDir('lib') {
                file('settings.gradle') << 'rootProject.name = "lib"'
                file('build.gradle') << '''
                    plugins { id 'java-library' }
                    group = 'com.example'
                    version = '1.0'
                '''
            }
            createDir('util') {
                file('settings.gradle') << 'rootProject.name = "util"'
                file('build.gradle') << '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. src/sync/rwmutex.go

    // - RUnlock -> Lock:  writerSem
    //
    // The methods below temporarily disable handling of race synchronization
    // events in order to provide the more precise model above to the race
    // detector.
    //
    // For example, atomic.AddInt32 in RLock should not appear to provide
    // acquire-release semantics, which would incorrectly synchronize racing
    // readers, thus potentially missing races.
    
    // RLock locks rw for reading.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. pkg/config/security/security.go

    	attrDestUser         = "destination.user"       // service account, e.g. "bookinfo-productpage".
    	attrConnSNI          = "connection.sni"         // server name indication, e.g. "www.example.com".
    	attrExperimental     = "experimental.envoy.filters."
    )
    
    var (
    	MatchOneTemplate = "{*}"
    	MatchAnyTemplate = "{**}"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. src/sync/pool.go

    // silently shared among and potentially reused by concurrent independent
    // clients of a package. Pool provides a way to amortize allocation overhead
    // across many clients.
    //
    // An example of good use of a Pool is in the fmt package, which maintains a
    // dynamically-sized store of temporary output buffers. The store scales under
    // load (when many goroutines are actively printing) and shrinks when
    // quiescent.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. doc/next/9-todo.md

    CL 585216 - an x/build CL mentions accepted proposal https://go.dev/issue/56001 because it fixed a bug causing downloads not to be produced for that new-to-Go-1.22 port; this isn't relevant to Go 1.23 release notes
    CL 481062 - added examples for accepted proposal https://go.dev/issue/56102; doesn't need a release note
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top