Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 421 for b_init (0.36 sec)

  1. .teamcity/src/main/kotlin/configurations/CheckTeamCityKotlinDSL.kt

    import model.CIBuildModel
    import model.Stage
    
    class CheckTeamCityKotlinDSL(
        model: CIBuildModel,
        stage: Stage,
    ) : OsAwareBaseGradleBuildType(
            os = Os.LINUX,
            stage = stage,
            init = {
                id("${model.projectId}_CheckTeamCityKotlinDSL")
                name = "CheckTeamCityKotlinDSL"
                description = "Check Kotlin DSL in .teamcity/"
    
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Jul 31 01:53:09 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/promotion/PublishGradleDistributionFullBuild.kt

        gitUserEmail: String = "******@****.***",
        extraParameters: String = "",
    ) : BasePublishGradleDistribution(promotedBranch, prepTask, triggerName, gitUserName, gitUserEmail, extraParameters) {
        init {
            steps {
                if (prepTask != null) {
                    buildStep(extraParameters, gitUserName, gitUserEmail, triggerName, prepTask, "uploadAll")
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

            SecretKeySpec dataKey = new SecretKeySpec(dataHmac, KerberosConstants.RC4_ALGORITHM);
    
            cipher = Cipher.getInstance(KerberosConstants.RC4_ALGORITHM);
            cipher.init(Cipher.DECRYPT_MODE, dataKey);
    
            int plainDataLength = data.length - KerberosConstants.CHECKSUM_SIZE;
            byte[] plainData = cipher.doFinal(data, KerberosConstants.CHECKSUM_SIZE, plainDataLength);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  4. cmd/site-replication-utils.go

    	s := siteResyncMetrics{
    		resyncStatus:  make(map[string]SiteResyncStatus),
    		peerResyncMap: make(map[string]resyncState),
    	}
    	go s.save(ctx)
    	go s.init(ctx)
    	return &s
    }
    
    // init site resync metrics
    func (sm *siteResyncMetrics) init(ctx context.Context) {
    	r := rand.New(rand.NewSource(time.Now().UnixNano()))
    	// Run the site resync metrics load in a loop
    	for {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  5. src/cmd/api/boring_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build boringcrypto
    
    package main
    
    import (
    	"fmt"
    	"os"
    )
    
    func init() {
    	fmt.Printf("SKIP with boringcrypto enabled\n")
    	os.Exit(0)
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Aug 16 16:02:26 UTC 2023
    - 300 bytes
    - Viewed (0)
  6. internal/lru/lru.go

    }
    
    // Init initializes or clears list l.
    func (l *LruList[K, V]) Init() *LruList[K, V] {
    	l.root.next = &l.root
    	l.root.prev = &l.root
    	l.len = 0
    	return l
    }
    
    // NewList returns an initialized list.
    func NewList[K comparable, V any]() *LruList[K, V] { return new(LruList[K, V]).Init() }
    
    // Length returns the number of elements of list l.
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Fri Apr 25 08:22:26 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/promotion/MergeReleaseIntoMaster.kt

    import common.gradleWrapper
    import jetbrains.buildServer.configs.kotlin.AbsoluteId
    import jetbrains.buildServer.configs.kotlin.triggers.finishBuildTrigger
    
    object MergeReleaseIntoMaster : BasePromotionBuildType() {
        init {
            id("Promotion_MergeReleaseIntoMaster")
            name = "Merge Release into Master"
            description = "Merge Release into Master"
    
            val vcsBranch = VersionedSettingsBranch.fromDslContext()
    
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Jun 10 10:38:00 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/promotion/StartReleaseCycleTest.kt

    import common.gradleWrapper
    import jetbrains.buildServer.configs.kotlin.triggers.schedule
    import jetbrains.buildServer.configs.kotlin.triggers.vcs
    
    object StartReleaseCycleTest : BasePromotionBuildType(cleanCheckout = false) {
        init {
            id("Promotion_AllBranchesStartReleaseCycleTest")
            name = "Start Release Cycle Test"
            description = "Test for Start Release Cycle pipeline"
    
            steps {
                gradleWrapper {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/CompactHashSet.java

      CompactHashSet() {
        init(CompactHashing.DEFAULT_SIZE);
      }
    
      /**
       * Constructs a new instance of {@code CompactHashSet} with the specified capacity.
       *
       * @param expectedSize the initial capacity of this {@code CompactHashSet}.
       */
      CompactHashSet(int expectedSize) {
        init(expectedSize);
      }
    
      /** Pseudoconstructor for serialization support. */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/configurations/CheckLinks.kt

    import common.buildScanTagParam
    import model.CIBuildModel
    import model.Stage
    
    class CheckLinks(
        model: CIBuildModel,
        stage: Stage,
    ) : OsAwareBaseGradleBuildType(os = Os.LINUX, stage = stage, failStage = false, init = {
            id("${model.projectId}_CheckLinks")
            name = "CheckLinks"
            description = "Check links in documentations"
    
            applyDefaults(
                model,
                this,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Aug 26 11:35:04 UTC 2025
    - 799 bytes
    - Viewed (0)
Back to top