- Sort Score
- Result 10 results
- Languages All
Results 301 - 310 of 593 for pluginC (0.14 sec)
-
CHANGELOG/CHANGELOG-1.6.md
temporary workaround. * The standard `bridge` plugin have been validated to interoperate with the new CRI + CNI code path. * If you are using plugins other than `bridge`, make sure you have updated custom plugins to the latest version that is compatible. * **CNI plugins now affect node readiness** * Kubelet will now block node readiness until a CNI configuration file is
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 304K bytes - Viewed (0) -
buildSrc/build.gradle.kts
* 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. */ plugins { `kotlin-dsl` } repositories { mavenCentral() } dependencies { implementation("biz.aQute.bnd:biz.aQute.bnd.gradle:6.4.0")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Oct 18 20:40:57 UTC 2023 - 746 bytes - Viewed (0) -
okhttp-coroutines/build.gradle.kts
import com.vanniktech.maven.publish.JavadocJar import com.vanniktech.maven.publish.KotlinJvm plugins { kotlin("jvm") id("org.jetbrains.dokka") id("com.vanniktech.maven.publish.base") id("binary-compatibility-validator") } project.applyOsgi( "Export-Package: okhttp3.coroutines", "Automatic-Module-Name: okhttp3.coroutines", "Bundle-SymbolicName: com.squareup.okhttp3.coroutines" ) dependencies { api(projects.okhttp)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 06 05:31:00 UTC 2024 - 936 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/plugin/DeleteForm.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.admin.plugin; import org.lastaflute.web.validation.Required; import jakarta.validation.constraints.Size; public class DeleteForm { @Required @Size(max = 100) public String name;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 901 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) -
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) -
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) -
.github/workflows/maven.yml
- uses: actions/cache@v4 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} restore-keys: | ${{ runner.os }}-maven- - name: Download Plugins with Maven run: mvn -B antrun:run --file pom.xml - name: Build with Maven run: mvn -B source:jar javadoc:jar package --file pom.xml - name: Run Fess run: bash src/test/resources/before_script.sh
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Feb 10 11:19:11 UTC 2024 - 1.1K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ListenableFuture.java
* `-android` "flavors.") * * (We could consider releasing a listenablefuture:1.0.1 someday. But we would want to look into how * that affects users, especially users of the Android Gradle Plugin, since the plugin developers * put in a special hack for us: https://issuetracker.google.com/issues/131431257) */ @DoNotMock("Use the methods in Futures (like immediateFuture) or SettableFuture") @ElementTypesAreNonnullByDefault
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jun 26 21:13:41 UTC 2023 - 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)