Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 815 for fslock (0.13 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/ClassExtensionDoc.groovy

        List<BlockDoc> getExtensionBlocks() {
            List<BlockDoc> blocks = []
            mixinClasses.each { mixin ->
                mixin.classBlocks.each { block ->
                    blocks << block.forClass(targetClass)
                }
            }
            extraBlocks.each { block->
                blocks << block.forClass(targetClass)
            }
            return blocks.sort { it.name }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  2. src/crypto/des/const.go

    	31, 63, 23, 55, 15, 47, 7, 39,
    }
    
    // Used to expand an input block of 32 bits, producing an output block of 48
    // bits.
    var expansionFunction = [48]byte{
    	0, 31, 30, 29, 28, 27, 28, 27,
    	26, 25, 24, 23, 24, 23, 22, 21,
    	20, 19, 20, 19, 18, 17, 16, 15,
    	16, 15, 14, 13, 12, 11, 12, 11,
    	10, 9, 8, 7, 8, 7, 6, 5,
    	4, 3, 4, 3, 2, 1, 0, 31,
    }
    
    // Yields a 32-bit output from a 32-bit input
    var permutationFunction = [32]byte{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 12:31:18 UTC 2017
    - 4.5K bytes
    - Viewed (0)
  3. src/testing/cover.go

    	Line1 uint32 // Line number for block end.
    	Col1  uint16 // Column number for block end.
    	Stmts uint16 // Number of statements included in this block.
    }
    
    var cover Cover
    
    // Cover records information about test coverage checking.
    // NOTE: This struct is internal to the testing infrastructure and may change.
    // It is not covered (yet) by the Go 1 compatibility guidelines.
    type Cover struct {
    	Mode            string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:37:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. src/cmd/doc/testdata/pkg.go

    const ExportedConstant = 1
    
    // Comment about internal constant.
    const internalConstant = 2
    
    // Comment about block of constants.
    const (
    	// Comment before ConstOne.
    	ConstOne   = 1
    	ConstTwo   = 2 // Comment on line with ConstTwo.
    	constThree = 3 // Comment on line with constThree.
    )
    
    // Const block where first entry is unexported.
    const (
    	constFour = iota
    	ConstFive
    	ConstSix
    )
    
    // Variables
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/testing/v1beta1/kms_plugin_mock.go

    }
    
    // EnterFailedState places the plugin into failed state.
    func (s *Base64Plugin) EnterFailedState() {
    	s.mu.Lock()
    	defer s.mu.Unlock()
    	s.inFailedState = true
    }
    
    // ExitFailedState removes the plugin from the failed state.
    func (s *Base64Plugin) ExitFailedState() {
    	s.mu.Lock()
    	defer s.mu.Unlock()
    	s.inFailedState = false
    }
    
    // Version returns the version of the kms-plugin.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 29 05:36:41 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. pkg/util/async/bounded_frequency_runner_test.go

    }
    
    func (ft *fakeTimer) Now() time.Time {
    	ft.lock.Lock()
    	defer ft.lock.Unlock()
    
    	return ft.now
    }
    
    func (ft *fakeTimer) Remaining() time.Duration {
    	ft.lock.Lock()
    	defer ft.lock.Unlock()
    
    	return ft.timeout.Sub(ft.now)
    }
    
    func (ft *fakeTimer) Since(t time.Time) time.Duration {
    	ft.lock.Lock()
    	defer ft.lock.Unlock()
    
    	return ft.now.Sub(t)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    	cqc.cts.lock.Lock()
    	defer cqc.cts.lock.Unlock()
    	qs := cqc.cqs
    	if qs == nil {
    		qs = &ctlrTestQueueSet{cts: cqc.cts, qc: cqc.qc, dc: dc}
    		cqc.cts.queues[cqc.qc.Name] = qs
    	} else {
    		qs.qc, qs.dc = cqc.qc, dc
    	}
    	return qs
    }
    
    func (cqs *ctlrTestQueueSet) IsIdle() bool {
    	cqs.cts.lock.Lock()
    	defer cqs.cts.lock.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  8. src/crypto/sha1/sha1block_amd64.go

    //go:noescape
    func blockAMD64(dig *digest, p []byte)
    
    var useAVX2 = cpu.X86.HasAVX2 && cpu.X86.HasBMI1 && cpu.X86.HasBMI2
    
    func block(dig *digest, p []byte) {
    	if useAVX2 && len(p) >= 256 {
    		// blockAVX2 calculates sha1 for 2 block per iteration
    		// it also interleaves precalculation for next block.
    		// So it may read up-to 192 bytes past end of p
    		// We may add checks inside blockAVX2, but this will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 926 bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinSettingsScriptIntegrationTest.kt

        @Test
        fun `pluginManagement block cannot appear twice in settings scripts`() {
    
            withSettings(
                """
                pluginManagement {}
                pluginManagement {}
                """
            )
    
            assertThat(
                buildAndFail("help").error,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/configurationcache/ConfigurationCacheBuildOperations.kt

            override fun call(context: BuildOperationContext): T =
                block().let { (opResult, returnValue) ->
                    context.setResult(opResult)
                    returnValue
                }
        })
    
    
    internal
    fun BuildOperationRunner.withStoreOperation(@Suppress("UNUSED_PARAMETER") cacheKey: String, block: () -> StoreResult) =
        run(object : RunnableBuildOperation {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:09:37 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top