- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 4,329 for init (0.06 sec)
-
internal/once/init.go
// initialized when the provided function returns nil. // Init represents the structure. type Init struct { done uint32 m sync.Mutex } // Do is similar to sync.Once.Do - makes one successful // call to the function. ie, it invokes the function // if it is not successful yet. func (l *Init) Do(f func() error) error { if atomic.LoadUint32(&l.done) == 0 { return l.do(f) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue May 09 04:20:31 UTC 2023 - 2.1K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/goals/Init.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.1K bytes - Viewed (0) -
internal/init/init.go
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Nov 04 23:44:38 UTC 2022 - 874 bytes - Viewed (0) -
bin/init.sh
# limitations under the License. # Init script downloads or updates envoy and the go dependencies. Called from Makefile, which sets # the needed environment variables. set -o errexit set -o nounset set -o pipefail if [[ "${TARGET_OUT_LINUX:-}" == "" ]]; then echo "Environment variables not set. Make sure you run through the makefile (\`make init\`) rather than directly." exit 1 fi
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jan 25 19:11:31 UTC 2024 - 6.1K bytes - Viewed (0) -
.github/workflows/codeql-analysis.init.gradle
Sterling Greene <******@****.***> 1602308214 -0400
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Sat Oct 10 05:36:54 UTC 2020 - 745 bytes - Viewed (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild.update-init-template-versions.gradle.kts
import gradlebuild.buildutils.tasks.UpdateInitPluginTemplateVersionFile tasks { register<UpdateInitPluginTemplateVersionFile>("updateInitPluginTemplateVersionFile") { group = "Build init" libraryVersionFile = layout.projectDirectory.file( "src/main/resources/org/gradle/buildinit/tasks/templates/library-versions.properties" ) }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jan 20 15:24:40 UTC 2023 - 378 bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java
private static final int MAX_LOG_PREFIX_SIZE = 8; // "[ERROR] " private static final int PROJECT_STATUS_SUFFIX_SIZE = 20; // "SUCCESS [ 0.000 s]" private static final int MIN_TERMINAL_WIDTH = 60; private static final int DEFAULT_TERMINAL_WIDTH = 80; private static final int MAX_TERMINAL_WIDTH = 130; private static final int MAX_PADDED_BUILD_TIME_DURATION_LENGTH = 9;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.2K bytes - Viewed (0) -
.github/workflows/codeql-analysis.yml
- name: Compile with Gradle with Build Scan if: ${{ matrix.language == 'java' && github.repository_owner == 'gradle' }} run: ./gradlew --init-script .github/workflows/codeql-analysis.init.gradle -DcacheNode=us -S testClasses -Dhttp.keepAlive=false env: # Set the DEVELOCITY_ACCESS_KEY so that Gradle Build Scans are generated
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Oct 11 18:32:33 UTC 2024 - 4K bytes - Viewed (0) -
mockwebserver/api/mockwebserver3.api
public fun <init> ()V public abstract fun dispatch (Lmockwebserver3/RecordedRequest;)Lmockwebserver3/MockResponse; public fun peek ()Lmockwebserver3/MockResponse; public fun shutdown ()V } public final class mockwebserver3/MockResponse { public static final field Companion Lmockwebserver3/MockResponse$Companion; public fun <init> ()V public fun <init> (I)V public fun <init> (ILokhttp3/Headers;)V
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Jan 03 21:59:45 UTC 2023 - 12.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishRelease.kt
promotedBranch: String, init: PublishRelease.() -> Unit = {} ) : PublishGradleDistributionFullBuild( promotedBranch = promotedBranch, prepTask = prepTask, promoteTask = promoteTask, triggerName = "ReadyforRelease", gitUserEmail = "%gitUserEmail%", gitUserName = "%gitUserName%", extraParameters = "-PconfirmationCode=%confirmationCode%" ) { init { params { text(
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Dec 05 00:08:14 UTC 2023 - 3.5K bytes - Viewed (0)