- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,261 for basics (0.06 sec)
-
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt
import gradlebuild.basics.BuildParams.BUILD_COMMIT_ID import gradlebuild.basics.BuildParams.BUILD_FINAL_RELEASE import gradlebuild.basics.BuildParams.BUILD_ID import gradlebuild.basics.BuildParams.BUILD_IGNORE_INCOMING_BUILD_RECEIPT import gradlebuild.basics.BuildParams.BUILD_MILESTONE_NUMBER import gradlebuild.basics.BuildParams.BUILD_PROMOTION_COMMIT_ID import gradlebuild.basics.BuildParams.BUILD_RC_NUMBER
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 09 08:19:42 UTC 2024 - 16.9K bytes - Viewed (0) -
build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt
* distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package gradlebuild.samples import gradlebuild.basics.toLowerCase import gradlebuild.basics.toUpperCase import org.gradle.api.file.Directory
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 22 11:11:17 UTC 2024 - 13.5K bytes - Viewed (0) -
.teamcity/subprojects.json
"path": "subprojects/diagnostics", "unitTests": true, "functionalTests": true, "crossVersionTests": false }, { "name": "distributions-basics", "path": "platforms/core-runtime/distributions-basics", "unitTests": false, "functionalTests": false, "crossVersionTests": false }, { "name": "distributions-core",
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 23 22:33:41 UTC 2024 - 34.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java
@Override public R parse(ParserRequest parserRequest) throws ParserException, IOException { requireNonNull(parserRequest); LocalContext context = new LocalContext(parserRequest); // the basics context.cwd = requireNonNull(getCwd(context)); context.installationDirectory = requireNonNull(getInstallationDirectory(context)); context.userHomeDirectory = requireNonNull(getUserHomeDirectory(context));
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.4K bytes - Viewed (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt
import com.github.javaparser.symbolsolver.resolution.typesolvers.JavaParserTypeSolver import com.github.javaparser.symbolsolver.resolution.typesolvers.ReflectionTypeSolver import gradlebuild.basics.util.KotlinSourceParser import org.gradle.workers.WorkAction import org.jetbrains.kotlin.psi.KtCallableDeclaration import org.jetbrains.kotlin.psi.KtFile import org.jetbrains.kotlin.psi.KtNamedDeclaration
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:28 UTC 2024 - 12.8K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/KotlinSourceQueries.kt
* distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package gradlebuild.binarycompatibility.sources import gradlebuild.basics.decapitalize import gradlebuild.binarycompatibility.isSynthetic
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Jul 04 08:05:22 UTC 2024 - 11.2K bytes - Viewed (0) -
docs/en/docs/deployment/https.md
But it is way more complex than that. /// tip If you are in a hurry or don't care, continue with the next sections for step by step instructions to set everything up with different techniques. /// To **learn the basics of HTTPS**, from a consumer perspective, check <a href="https://howhttps.works/" class="external-link" target="_blank">https://howhttps.works/</a>.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 12K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java
* 0 +----------+-------+--------------→ storedPermits * 0 thresholdPermits maxPermits * </pre> * * Before going into the details of this particular function, let's keep in mind the basics: * * <ol> * <li>The state of the RateLimiter (storedPermits) is a vertical line in this figure. * <li>When the RateLimiter is not used, this goes right (up to maxPermits)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Apr 04 09:45:04 UTC 2023 - 19.3K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/http2/HpackTest.kt
bytesIn.writeByte(0x05) // Literal value (len = 5) bytesIn.writeUtf8("Basic") bytesIn.writeByte(0x7e) bytesIn.writeByte(0x06) // Literal value (len = 6) bytesIn.writeUtf8("Basic2") hpackReader!!.readHeaders() assertThat(hpackReader!!.getAndResetHeaderList()).containsExactly( Header("custom-foo", "Basic"), Header("custom-foo", "Basic2"), ) } /**
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 38.2K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/HeadersChallengesTest.kt
.add("WWW-Authenticate", "Basic realm=myotherrealm") .build() assertThat(headers.parseChallenges("WWW-Authenticate")).containsExactly( Challenge("Basic", mapOf("realm" to "myrealm")), Challenge("Basic", mapOf("realm" to "myotherrealm")), ) }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 16.6K bytes - Viewed (0)