Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 944 for excludes (0.2 sec)

  1. regression-test/build.gradle.kts

      }
    
      kotlinOptions {
        jvmTarget = JavaVersion.VERSION_11.toString()
      }
    
      // issue merging due to conflict with httpclient and something else
      packagingOptions.resources.excludes += setOf(
        "META-INF/DEPENDENCIES"
      )
    }
    
    
    dependencies {
      val okhttpLegacyVersion = "3.12.12"
    
      implementation(libs.kotlin.reflect)
      implementation(libs.playservices.safetynet)
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Dec 23 14:46:51 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  2. android-test/build.gradle.kts

      implementation(projects.okhttp)
      implementation(projects.okhttpAndroid)
    
      androidTestImplementation(projects.okhttpTestingSupport) {
        exclude("org.openjsse", "openjsse")
        exclude("org.conscrypt", "conscrypt-openjdk-uber")
        exclude("software.amazon.cryptools", "AmazonCorrettoCryptoProvider")
      }
      androidTestImplementation(libs.assertk)
      androidTestImplementation(libs.bouncycastle.bcprov)
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Jan 14 10:20:09 GMT 2024
    - 3K bytes
    - Viewed (0)
  3. build-logic/jvm/src/main/kotlin/gradlebuild.api-parameter-names-index.gradle.kts

    }
    
    val main = sourceSets.main.get()
    val parameterNamesIndex by tasks.registering(ParameterNamesIndex::class) {
        sources.from(
            main.allJava.matching {
                include(PublicApi.includes)
                exclude(PublicApi.excludes)
            }
        )
        classpath.from(main.compileClasspath)
        classpath.from(tasks.named<JavaCompile>("compileJava"))
        classpath.from(tasks.named<GroovyCompile>("compileGroovy"))
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Fri Jan 20 15:24:40 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenModelMerger.java

            if (!src.isEmpty()) {
                List<String> tgt = target.getFilters();
                Set<String> excludes = new LinkedHashSet<>(tgt);
                List<String> merged = new ArrayList<>(tgt.size() + src.size());
                merged.addAll(tgt);
                for (String s : src) {
                    if (!excludes.contains(s)) {
                        merged.add(s);
                    }
                }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 22.8K bytes
    - Viewed (0)
  5. maven-core/pom.xml

                  <exclude>org.apache.maven.repository.LocalArtifactRepository</exclude>
                  <exclude>org.apache.maven.repository.LocalRepositoryNotAccessibleException</exclude>
                  <exclude>org.apache.maven.repository.RepositorySystem</exclude>
                  <exclude>org.apache.maven.settings.DefaultMavenSettingsBuilder</exclude>
                  <exclude>org.apache.maven.settings.MavenSettingsBuilder</exclude>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 15.4K bytes
    - Viewed (0)
  6. api/maven-api-plugin/pom.xml

          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
              <excludes>
                <exclude>**/package-info.java</exclude>
              </excludes>
            </configuration>
          </plugin>
        </plugins>
      </build>
    
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  7. manifests/charts/istio-operator/files/profile-ambient.yaml

        PILOT_ENABLE_HBONE: "true"
        CA_TRUSTED_NODE_ACCOUNTS: "istio-system/ztunnel,kube-system/ztunnel"
        PILOT_ENABLE_AMBIENT_CONTROLLERS: "true"
    cni:
      logLevel: info
      ambient:
        enabled: true
    
      # Default excludes istio-system; its actually fine to redirect there since we opt-out istiod, ztunnel, and istio-cni
      excludeNamespaces:
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Feb 28 17:29:38 GMT 2024
    - 758 bytes
    - Viewed (0)
  8. dbflute_fess/dfprop/conditionBeanMap.dfprop

    #         ; !InScope = map:{ $$ALL$$ = list:{ type:LONGVARCHAR } }
    #     }
    #     # This means that Number excludes all version-no's NotEqual.
    #     ; Number = map:{
    #         ; !NotEqual = map:{ $$ALL$$ = list:{ $$VersionNo$$ } }
    #     }
    #     # This means that Date does not includes NotEqual at all tables.  
    #     ; Date = map:{
    #         ; NotEqual = map:{}
    #     }
    # }
    #
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 4K bytes
    - Viewed (0)
  9. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/PublicKotlinDslApi.kt

     * limitations under the License.
     */
    package gradlebuild.basics
    
    
    object PublicKotlinDslApi {
    
        val includes = listOf(
            "org/gradle/kotlin/dsl/*",
            "org/gradle/kotlin/dsl/precompile/*",
        )
    
        val excludes = listOf(
            // Kotlin inlined functions classes
            "**/*${'$'}inlined${'$'}*"
        )
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 903 bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom

            <version>RELEASE</version>
            <configuration>
              <excludes>
                <exclude implementation="java.lang.String">org/codehaus/plexus/util/FileBasedTestCase.java</exclude>
                <exclude implementation="java.lang.String">**/Test*.java</exclude>
              </excludes>
            </configuration>
          </plugin>
        </plugins>
      </build>
      <repositories>
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 6.7K bytes
    - Viewed (0)
Back to top