Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for STRICT (0.09 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeStateTest.groovy

    import spock.lang.Specification
    
    class NodeStateTest extends Specification {
    
        int idIdx = 0
        NodeState root = nextNode()
    
        def "uses empty strict version constraints object if no strict versions are defined"() {
            Set<ModuleIdentifier> constraintsSet = []
    
            when:
            root.maybeCollectStrictVersions(constraintsSet, edge(root, false).dependencyState)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/sidecar_simulation_test.go

    			calls:  calls,
    		})
    	})
    
    	t.Run("Strict", func(t *testing.T) {
    		calls := []simulation.Expect{}
    		for _, c := range cases {
    			calls = append(calls, simulation.Expect{
    				Name:   c.Name,
    				Call:   c.Call,
    				Result: c.Strict,
    			})
    		}
    		runSimulationTest(t, nil, xds.FakeOptions{}, simulationTest{
    			config: svc + mtlsMode("STRICT"),
    			calls:  calls,
    		})
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/peer_authentication_simulation_test.go

       matchLabels:
         app: foo
     mtls:
       mode: STRICT
     portLevelMtls:
       9000:
         mode: DISABLE
    ---`
    	paDisableWithStrictOnPort9000 := `
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
     name: default
    spec:
     selector:
       matchLabels:
         app: foo
     mtls:
       mode: DISABLE
     portLevelMtls:
       9000:
         mode: STRICT
    ---`
    	paDisableWithPermissiveOnPort9000 := `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. 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)
  5. gradle.properties

    systemProp.org.gradle.internal.ide.scan=true
    # If you're experimenting with changes and don't want to update the verification file right away, please change the mode to "lenient" (not "off")
    org.gradle.dependency.verification=strict
    # TD related properties
    gradle.internal.testdistribution.writeTraceFile=true
    develocity.internal.testdistribution.writeTraceFile=true
    gradle.internal.testdistribution.queryResponseTimeout=PT20S
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 16:35:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. cmd/metacache-entries.go

    func (e metaCacheEntry) hasPrefix(s string) bool {
    	return strings.HasPrefix(e.name, s)
    }
    
    // matches returns if the entries have the same versions.
    // If strict is false we allow signatures to mismatch.
    func (e *metaCacheEntry) matches(other *metaCacheEntry, strict bool) (prefer *metaCacheEntry, matches bool) {
    	if e == nil && other == nil {
    		return nil, true
    	}
    	if e == nil {
    		return other, false
    	}
    	if other == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_builder_test.go

    				// But should see for passthrough or unnamed ports
    				81:   false,
    				1000: false,
    			},
    		},
    		{
    			name:   "strict",
    			config: strictMode,
    			http: map[int]bool{
    				// Should not see HTTP inspector if we declare ports
    				80: true,
    				82: true,
    				// This is 'auto', but for STRICT we always get requests over TLS so HTTP inspector is not in play
    				81: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. cmd/handler-api.go

    		// but this shouldn't last long.
    		t.requestsPool = make(chan struct{}, apiRequestsMaxPerNode)
    	}
    	t.requestsDeadline = cfg.RequestsDeadline
    	listQuorum := cfg.ListQuorum
    	if listQuorum == "" {
    		listQuorum = "strict"
    	}
    	t.listQuorum = listQuorum
    	if globalReplicationPool != nil &&
    		(cfg.ReplicationPriority != t.replicationPriority || cfg.ReplicationMaxWorkers != t.replicationMaxWorkers) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 08:13:12 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go

    		// Maps with duplicate keys are well-formed but invalid according to the CBOR spec
    		// and never acceptable. Unlike the JSON serializer, inputs containing duplicate map
    		// keys are rejected outright and not surfaced as a strict decoding error.
    		DupMapKey: cbor.DupMapKeyEnforcedAPF,
    
    		// For JSON parity, decoding an RFC3339 string into time.Time needs to be accepted
    		// with or without tagging. If a tag number is present, it must be valid.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:03:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/policies.go

    		if len(krt.Fetch(ctx, PeerAuths)) == 0 {
    			return nil
    		}
    		meshCfg := krt.FetchOne(ctx, MeshConfig.AsCollection())
    		// If there are any PeerAuthentications in our cache, send our static STRICT policy
    		return &model.WorkloadAuthorization{
    			LabelSelector: model.LabelSelector{},
    			Authorization: &security.Authorization{
    				Name:      staticStrictPolicyName,
    				Namespace: meshCfg.GetRootNamespace(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top