Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 79 for STRICT (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultConfigurationResolver.java

            graphVisitors.add(failureCollector);
    
            FailOnVersionConflictGraphVisitor versionConflictVisitor = null;
            if (resolutionStrategy.getConflictResolution() == ConflictResolution.strict) {
                versionConflictVisitor = new FailOnVersionConflictGraphVisitor();
                graphVisitors.add(versionConflictVisitor);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. src/go/types/instantiate.go

    	checkComparability := func() bool {
    		if !Ti.IsComparable() {
    			return true
    		}
    		// If T is comparable, V must be comparable.
    		// If V is strictly comparable, we're done.
    		if comparable(V, false /* strict comparability */, nil, nil) {
    			return true
    		}
    		// For constraint satisfaction, use dynamic (spec) comparability
    		// so that ordinary, non-type parameter interfaces implement comparable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. cmd/erasure-healing.go

    	disks = disks[:expectedDisks]
    
    	// How to resolve partial results.
    	resolver := metadataResolutionParams{
    		dirQuorum: 1,
    		objQuorum: 1,
    		bucket:    bucket,
    		strict:    false, // Allow less strict matching.
    	}
    
    	path := baseDirFromPrefix(prefix)
    	filterPrefix := strings.Trim(strings.TrimPrefix(prefix, path), slashSeparator)
    	if path == prefix {
    		filterPrefix = ""
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/instantiate.go

    	checkComparability := func() bool {
    		if !Ti.IsComparable() {
    			return true
    		}
    		// If T is comparable, V must be comparable.
    		// If V is strictly comparable, we're done.
    		if comparable(V, false /* strict comparability */, nil, nil) {
    			return true
    		}
    		// For constraint satisfaction, use dynamic (spec) comparability
    		// so that ordinary, non-type parameter interfaces implement comparable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_tls.go

    	}
    }
    
    // buildUpstreamTLSSettings fills key cert fields for all TLSSettings when the mode is `ISTIO_MUTUAL`.
    // If the (input) TLS setting is nil (i.e not set), *and* the service mTLS mode is STRICT, it also
    // creates and populates the config as if they are set as ISTIO_MUTUAL.
    func (cb *ClusterBuilder) buildUpstreamTLSSettings(
    	tls *networking.ClientTLSSettings,
    	serviceAccounts []string,
    	sni string,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    [[fine_tuning_dependency_locking_behaviour_with_lock_mode]]
    === Fine tuning dependency locking behaviour with lock mode
    
    While the default lock mode behaves as described above, two other modes are available:
    
    Strict mode::
    In this mode, in addition to the validations above, dependency locking will fail if a configuration marked as _locked_ does not have lock state associated with it.
    
    Lenient mode::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

    SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST
    PROFITS), 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 OR DISTRIBUTION OF THE PROGRAM OR THE
    EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE
    POSSIBILITY OF SUCH DAMAGES.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. src/go/build/read.go

    			if err == nil {
    				info.embeds = append(info.embeds, embs...)
    			}
    		}
    	}
    
    	return nil
    }
    
    // isValidImport checks if the import is a valid import using the more strict
    // checks allowed by the implementation restriction in https://go.dev/ref/spec#Import_declarations.
    // It was ported from the function of the same name that was removed from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/net/http/cookiejar/jar.go

    	e.Quoted = c.Quoted
    	e.Secure = c.Secure
    	e.HttpOnly = c.HttpOnly
    
    	switch c.SameSite {
    	case http.SameSiteDefaultMode:
    		e.SameSite = "SameSite"
    	case http.SameSiteStrictMode:
    		e.SameSite = "SameSite=Strict"
    	case http.SameSiteLaxMode:
    		e.SameSite = "SameSite=Lax"
    	}
    
    	return e, false, nil
    }
    
    var (
    	errIllegalDomain   = errors.New("cookiejar: illegal cookie domain attribute")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. pkg/kubelet/config/config.go

    type podStorage struct {
    	podLock sync.RWMutex
    	// map of source name to pod uid to pod reference
    	pods map[string]map[types.UID]*v1.Pod
    	mode PodConfigNotificationMode
    
    	// ensures that updates are delivered in strict order
    	// on the updates channel
    	updateLock sync.Mutex
    	updates    chan<- kubetypes.PodUpdate
    
    	// contains the set of all sources that have sent at least one SET
    	sourcesSeenLock sync.RWMutex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top