Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 415 for STRICT (0.23 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/io/DefaultModelReader.java

                InputSource source = getSource(options);
                boolean strict = isStrict(options);
                MavenStaxReader mr = new MavenStaxReader();
                mr.setAddLocationInformation(source != null);
                Model model = new Model(mr.read(parser, strict, source != null ? source.toApiSource() : null));
                return model;
            } catch (XMLStreamException e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/verification/DependencyVerificationMode.java

     * limitations under the License.
     */
    package org.gradle.api.artifacts.verification;
    
    /**
     * The different dependency verification modes. By default, Gradle
     * will use the strict mode, which means that it will verify dependencies
     * and fail <i>as soon as possible</i>, to avoid as much compromising of
     * the builds as possible.
     *
     * There are, however, two additional modes which can be used: the lenient
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 15 19:10:41 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  3. pkg/ctrlz/assets/static/js/misc.js

    "use strict"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 13 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyLocking-lockModeSelection/kotlin/build.gradle.kts

    plugins {
        java
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::lock-mode[]
    dependencyLocking {
        lockMode = LockMode.STRICT
    }
    // end::lock-mode[]
    
    configurations.compileClasspath {
        resolutionStrategy.activateDependencyLocking()
    }
    
    dependencies {
        implementation("org.springframework:spring-beans:[5.0,6.0)")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 323 bytes
    - Viewed (0)
  5. tests/integration/ambient/testdata/beta-mtls-automtls.yaml

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: "default"
      annotations:
        test-suite: "beta-mtls-automtls"
    spec:
      mtls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 247 bytes
    - Viewed (0)
  6. cmd/metacache-bucket_test.go

    			ID:           mustGetUUID(),
    			Bucket:       "",
    			BaseDir:      pathNames[i%paths],
    			Prefix:       "",
    			FilterPrefix: "",
    			Marker:       "",
    			Limit:        0,
    			AskDisks:     "strict",
    			Recursive:    false,
    			Separator:    slashSeparator,
    			Create:       true,
    		})
    	}
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		bm.findCache(listPathOptions{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 25 23:29:45 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/kotlin/dsl/KotlinDslScriptsModel.java

     * exceptions will be returned in the built model.
     * Optionally, it can also be set in a strict mode by providing the system property value <code>-Dorg.gradle.kotlin.dsl.provider.mode=strict-classpath</code>.
     * See {@link KotlinDslModelsParameters#STRICT_CLASSPATH_MODE_SYSTEM_PROPERTY_DECLARATION}.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 13:05:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. pkg/test/datasets/validation/dataset/security-v1-PeerAuthentication.yaml

    kind: PeerAuthentication
    metadata:
      name: valid-peer-authentication
    spec:
      selector:
        matchLabels:
          app: httpbin
          version: v1
      mtls:
        mode: PERMISSIVE
      portLevelMtls:
        8080:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 01 14:30:12 UTC 2024
    - 249 bytes
    - Viewed (0)
  9. pkg/kubelet/kubeletconfig/util/codec/codec.go

    		if lenientErr != nil {
    			// Lenient decoding failed with the current version, return the
    			// original strict error.
    			return nil, fmt.Errorf("failed lenient decoding: %v", err)
    		}
    		// Continue with the v1beta1 object that was decoded leniently, but emit a warning.
    		klog.InfoS("Using lenient decoding as strict decoding failed", "err", err)
    	}
    
    	internalKC, ok := obj.(*kubeletconfig.KubeletConfiguration)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 21:48:29 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         */
        List<Capability> getRequestedCapabilities();
    
        /**
         * Endorse version constraints with {@link VersionConstraint#getStrictVersion()} strict versions} from the target module.
         *
         * Endorsing strict versions of another module/platform means that all strict versions will be interpreted during dependency
         * resolution as if they were defined by the endorsing module itself.
         *
         * @since 6.0
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top