Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 844 for STRICT (0.08 sec)

  1. subprojects/core-api/src/main/java/org/gradle/plugin/use/PluginDependenciesSpec.java

     * At this time there is no observable practical difference between the two approaches with regard to the end result.
     * </p>
     * <h3>Strict Syntax</h3>
     * <p>
     * When used in a build script, the <code>plugins {}</code> block only allows a strict subset of the full build script programming language.
     * Only the API of this type can be used, and values must be literal (e.g. constant strings, not variables).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 16 17:46:02 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/DefaultVisitedArtifactResultsTest.groovy

    import org.gradle.api.internal.artifacts.transform.ArtifactVariantSelector
    import spock.lang.Specification
    
    class DefaultVisitedArtifactResultsTest extends Specification {
        def "strict selection includes selected variant of each node"() {
            def artifacts1 = Stub(ArtifactSet)
            def artifacts2 = Stub(ArtifactSet)
            def variant1Artifacts = Stub(ResolvedArtifactSet)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:08:51 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/config/strict/strict_test.go

    	kubeadmapiv1 "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm/v1beta3"
    	"k8s.io/kubernetes/cmd/kubeadm/app/componentconfigs"
    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/config/strict"
    )
    
    func TestVerifyUnmarshalStrict(t *testing.T) {
    	const (
    		pathTestData = "testdata/"
    	)
    
    	var schemes = []*runtime.Scheme{kubeadmscheme.Scheme, componentconfigs.Scheme}
    	var testFiles = []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 17:37:41 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  4. src/syscall/mksysnum_openbsd.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 OpenBSD from master list
    # (for example, /usr/src/sys/kern/syscalls.master).
    
    use strict;
    
    my $command = "mksysnum_openbsd.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 Oct 29 08:08:26 UTC 2020
    - 872 bytes
    - Viewed (0)
  5. pkg/proxy/util/nfacct/nfacct_linux.go

    	default:
    		return fmt.Errorf("%s: %s", ErrUnexpected.Error(), err.Error())
    	}
    }
    
    // decode function processes a byte stream, requiring the 'strict' parameter to be true in production and
    // false only for testing purposes. If in strict mode and any of the relevant attributes (name, packets, or bytes)
    // have not been processed, an error is returned indicating a failure to decode the byte stream.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/plugins/form-validator/jsconf.js

     */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 867 bytes
    - Viewed (0)
  7. tests/integration/ambient/testdata/automtls-partial-sidecar-dr-mutual.yaml

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: "default"
      annotations:
        test-suite: "automtls-partial-dr-mutual"
    spec:
      mtls:
        mode: STRICT
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: "multiversion-route"
      annotations:
        test-suite: "automtls-partial-dr-mutual"
    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)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/MutableVersionConstraint.java

         * Specifies the branch to select versions from.
         *
         * @param branch The branch, possibly null.
         * @since 4.6
         */
        void setBranch(@Nullable String branch);
    
        /**
         * Sets the version as strict.
         * <p>
         * Any version not matched by this version notation will be excluded. This is the strongest version declaration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 30 23:02:48 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  9. tests/integration/security/ca_custom_root/trust_domain_alias_secure_naming_test.go

    	"istio.io/istio/pkg/test/framework/components/echo/match"
    )
    
    const (
    	POLICY = `
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: "mtls"
    spec:
      mtls:
        mode: STRICT
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: "server-naked"
    spec:
      host: "*.local"
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
    `
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ConflictResolution.java

     * limitations under the License.
     */
    package org.gradle.api.internal.artifacts.configurations;
    
    /**
     * The conflict resolution
     */
    public enum ConflictResolution {
        strict,
        latest,
        preferProjectModules
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 794 bytes
    - Viewed (0)
Back to top