- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 688 for pluginC (0.4 sec)
-
tests/callbacks_test.go
createCallback.After("*").Register("plugin_1_fn2", c2) if ok, msg := assertCallbacks(createCallback, []string{"c1", "c2"}); !ok { t.Errorf("callbacks tests failed, got %v", msg) } // plugin 2 createCallback.Before("*").Register("plugin_2_fn1", c3) if ok, msg := assertCallbacks(createCallback, []string{"c3", "c1", "c2"}); !ok { t.Errorf("callbacks tests failed, got %v", msg) }
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Tue Mar 26 03:33:36 UTC 2024 - 7.2K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.20.md
### External credential provider for client-go The client-go credential plugins can now be passed in the current cluster information via the `KUBERNETES_EXEC_INFO` environment variable. Learn more about this on [client-go credential plugins documentation](https://docs.k8s.io/reference/access-authn-authz/authentication/#client-go-credential-plugins/). ### CronJob controller v2 is available through feature gate
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Wed Jan 19 21:05:45 UTC 2022 - 409K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/plugin/InstallBody.java
* 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 org.codelibs.fess.app.web.api.admin.plugin; import org.lastaflute.web.validation.Required; import jakarta.validation.constraints.Size; public class InstallBody { @Required @Size(max = 100) public String name; @Required
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 918 bytes - Viewed (0) -
native-image-tests/build.gradle.kts
import org.apache.tools.ant.taskdefs.condition.Os plugins { id("com.palantir.graal") kotlin("jvm") } dependencies { implementation(libs.junit.jupiter.api) implementation(libs.junit.jupiter.engine) implementation(libs.junit.platform.console) implementation(libs.squareup.okio.fakefilesystem) implementation(projects.okhttp) implementation(projects.okhttpBrotli) implementation(projects.okhttpDnsoverhttps)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 06 05:31:00 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/DefaultSettingsBuilderFactory.java
* is only meant as a utility for developers that want to employ the settings builder outside of the Maven build system, * Maven plugins should always acquire settings builder instances via dependency injection. Developers might want to * subclass this factory to provide custom implementations for some of the components used by the settings builder. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.6K bytes - Viewed (0) -
okhttp-android/build.gradle.kts
@file:SuppressLint("OldTargetApi") import android.annotation.SuppressLint import com.vanniktech.maven.publish.JavadocJar plugins { id("com.android.library") kotlin("android") id("org.jetbrains.dokka") id("com.vanniktech.maven.publish.base") id("binary-compatibility-validator") } android { compileSdk = 34 namespace = "okhttp.android" defaultConfig { minSdk = 21
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 01 11:07:32 UTC 2024 - 2K bytes - Viewed (0) -
compat/pom.xml
<version>4.0.0-beta-6-SNAPSHOT</version> </parent> <artifactId>maven-compat-modules</artifactId> <packaging>pom</packaging> <name>Maven Compatibility Modules</name> <modules> <module>maven-plugin-api</module> <module>maven-builder-support</module> <module>maven-model</module> <module>maven-model-builder</module> <module>maven-settings</module> <module>maven-settings-builder</module>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/DuplicateParameterException.java
* KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.maven.plugin.descriptor; /** * DuplicateParameterException */ public class DuplicateParameterException extends InvalidPluginDescriptorException { public DuplicateParameterException(String message) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1K bytes - Viewed (0) -
regression-test/build.gradle.kts
plugins { id("com.android.library") kotlin("android") } android { compileSdk = 34 namespace = "okhttp.android.regression" defaultConfig { minSdk = 21 targetSdk = 34 // Make sure to use the AndroidJUnitRunner (or a sub-class) in order to hook in the JUnit 5 Test Builder testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunnerArguments += mapOf(
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Dec 23 14:46:51 UTC 2023 - 1.6K bytes - Viewed (0) -
.github/workflows/maven.yml
java-version: 17 distribution: 'temurin' cache: 'maven' - name: Set up Maven run: mvn --errors --batch-mode --show-version org.apache.maven.plugins:maven-wrapper-plugin:3.3.2:wrapper "-Dmaven=3.9.7" - name: Build with Maven run: ./mvnw verify -e -B -V -DdistributionFileName=apache-maven - name: Upload built Maven uses: actions/upload-artifact@v4
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Jun 03 17:58:28 UTC 2024 - 5K bytes - Viewed (0)