Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 844 for STRICT (0.18 sec)

  1. tests/integration/ambient/testdata/automtls-partial-sidecar-dr-disable.yaml

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: "default"
      annotations:
        test-suite: "automtls-partial-dr-disable"
    spec:
      mtls:
        mode: STRICT
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: "multiversion-route"
      annotations:
        test-suite: "automtls-partial-dr-disable"
    spec:
      hosts:
      - "multiversion"
      http:
      - name: "vistio-route"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. cmd/xl-storage-format-v2_test.go

    			for _, ver := range merged {
    				if ver.header.Type == invalidVersionType {
    					t.Errorf("Invalid result returned: %v", ver.header)
    				}
    			}
    		})
    		t.Run(fmt.Sprintf("strict-signature-q%d", i), func(t *testing.T) {
    			// Mutate signature, non strict
    			vMod := make([][]xlMetaV2ShallowVersion, 0, len(vers))
    			for i, ver := range vers {
    				newVers := make([]xlMetaV2ShallowVersion, 0, len(ver))
    				for _, v := range ver {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  3. build-logic/jvm/src/main/kotlin/gradlebuild/jvm/extension/StrictCompileExtension.kt

     * limitations under the License.
     */
    package gradlebuild.jvm.extension
    
    import org.gradle.api.tasks.TaskContainer
    import org.gradle.api.tasks.compile.JavaCompile
    import org.gradle.kotlin.dsl.*
    
    
    /**
     * Strict compilation options honored by [gradlebuild.Strict_compile_gradle].
     */
    abstract class StrictCompileExtension(val tasks: TaskContainer) {
    
        fun ignoreDeprecations() {
            tasks.withType<JavaCompile>().configureEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/BitString.kt

     * limitations under the License.
     */
    package okhttp3.tls.internal.der
    
    import okio.ByteString
    
    /**
     * Like a [ByteString], but whose bits are not necessarily a strict multiple of 8.
     */
    internal data class BitString(
      val byteString: ByteString,
      /** 0-7 unused bits in the last byte. */
      val unusedBitsCount: Int,
    ) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. build-logic/uber-plugins/src/main/kotlin/gradlebuild.instrumented-project.gradle.kts

     * limitations under the License.
     */
    
    import gradlebuild.modules.extension.ExternalModulesExtension
    
    plugins {
        id("java-library")
        id("gradlebuild.strict-compile")
    }
    
    val libs = project.the<ExternalModulesExtension>()
    
    dependencies {
        api(project(":internal-instrumentation-api"))
        implementation(project(":base-asm"))
        compileOnly(libs.asm)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 19:53:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/kotlin/dsl/KotlinDslModelsParameters.java

        public static final String CLASSPATH_MODE_SYSTEM_PROPERTY_VALUE = "classpath";
    
        public static final String STRICT_CLASSPATH_MODE_SYSTEM_PROPERTY_VALUE = "strict-classpath";
    
        public static final String CLASSPATH_MODE_SYSTEM_PROPERTY_DECLARATION = "-D" + PROVIDER_MODE_SYSTEM_PROPERTY_NAME + "=" + CLASSPATH_MODE_SYSTEM_PROPERTY_VALUE;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. licenses/github.com/magiconair/properties/LICENSE.md

    (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
    ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 12 20:05:04 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. tests/testdata/networking/envoyfilter-without-service/configs.yaml

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: default
      namespace: istio-config
    spec:
      mtls:
        mode: STRICT
    ---
    # Corresponding destination rule to configure client side to use mutual TLS when talking to
    # any service (host) in the mesh.
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 16:44:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/syscall/mksysnum_freebsd.pl

    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    #
    # Generate system call table for FreeBSD from master list
    # (for example, /usr/src/sys/kern/syscalls.master).
    
    use strict;
    
    my $command = "mksysnum_freebsd.pl " . join(' ', @ARGV);
    
    print <<EOF;
    // $command
    // Code generated by the command above; DO NOT EDIT.
    
    package syscall
    
    const (
    EOF
    
    while(<>){
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  10. src/syscall/mksysnum_dragonfly.pl

    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    #
    # Generate system call table for DragonFly from master list
    # (for example, /usr/src/sys/kern/syscalls.master).
    
    use strict;
    
    my $command = "mksysnum_dragonfly.pl " . join(' ', @ARGV);
    
    print <<EOF;
    // $command
    // Code generated by the command above; DO NOT EDIT.
    
    package syscall
    
    const (
    EOF
    
    while(<>){
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 866 bytes
    - Viewed (0)
Back to top