Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 311 for qualifies (0.2 sec)

  1. src/go/types/typestring.go

    //
    // Using a nil Qualifier is equivalent to using (*[Package]).Path: the
    // object is qualified by the import path, e.g., "encoding/json.Marshal".
    type Qualifier func(*Package) string
    
    // RelativeTo returns a [Qualifier] that fully qualifies members of
    // all packages other than pkg.
    func RelativeTo(pkg *Package) Qualifier {
    	if pkg == nil {
    		return nil
    	}
    	return func(other *Package) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. cmd/bucket-replication-utils.go

    }
    
    // ReplicateAny returns true if at least one target qualifies for replication
    func (d ReplicateDecision) ReplicateAny() bool {
    	for _, t := range d.targetsMap {
    		if t.Replicate {
    			return true
    		}
    	}
    	return false
    }
    
    // Synchronous returns true if at least one target qualifies for synchronous replication
    func (d ReplicateDecision) Synchronous() bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/typestring.go

    //
    // Using a nil Qualifier is equivalent to using (*[Package]).Path: the
    // object is qualified by the import path, e.g., "encoding/json.Marshal".
    type Qualifier func(*Package) string
    
    // RelativeTo returns a [Qualifier] that fully qualifies members of
    // all packages other than pkg.
    func RelativeTo(pkg *Package) Qualifier {
    	if pkg == nil {
    		return nil
    	}
    	return func(other *Package) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/net/http/cookiejar/jar.go

    }
    
    // id returns the domain;path;name triple of e as an id.
    func (e *entry) id() string {
    	return fmt.Sprintf("%s;%s;%s", e.Domain, e.Path, e.Name)
    }
    
    // shouldSend determines whether e's cookie qualifies to be included in a
    // request to host/path. It is the caller's responsibility to check if the
    // cookie is expired.
    func (e *entry) shouldSend(https bool, host, path string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/language.go

    							t.ScriptID = _Latn
    						}
    						t.LangID = l
    						changed = true
    					}
    				case language.Macro:
    					if c&Macro != 0 {
    						// We deviate here from CLDR. The mapping "nb" -> "no"
    						// qualifies as a typical Macro language mapping.  However,
    						// for legacy reasons, CLDR maps "no", the macro language
    						// code for Norwegian, to the dominant variant "nb". This
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. hack/lib/golang.sh

          echo "${target#"vendor/"}"
          continue
        fi
    
        # If the target starts with "./", assume it is a local path which qualifies
        # as a Go target name.
        if [[ "${target}" =~ ^\./ ]]; then
          echo "${target}"
          continue
        fi
    
        # Otherwise assume it's a relative path (e.g. foo/bar or foo/bar/bar.test).
        # We probably SHOULDN'T accept this, but we did in the past and it would be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/cases/map.go

    		default:
    			switch v, _ := trie.lookup(c.src[c.pSrc:]); info(v).cccType() {
    			case cccZero:
    				c.unreadRune()
    				return true
    
    			// We don't need to test for IotaSubscript as the only rune that
    			// qualifies (U+0345) was already excluded in the switch statement
    			// above. See A.4.
    
    			case cccAbove:
    				return c.copy()
    			default:
    				// Some other modifier. We're still allowed to gobble Greek
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    	xhttp.AmzObjectLockMode,
    	xhttp.AmzObjectLockRetainUntilDate,
    	xhttp.AmzObjectLockLegalHold,
    	xhttp.AmzTagCount,
    	xhttp.AmzServerSideEncryption,
    }
    
    // returns true if any of the objects being deleted qualifies for replication.
    func hasReplicationRules(ctx context.Context, bucket string, objects []ObjectToDelete) bool {
    	c, err := getReplicationConfig(ctx, bucket)
    	if err != nil || c == nil {
    		replLogOnceIf(ctx, err, bucket)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. cmd/erasure-object.go

    				}
    				return objInfo, gerr
    			}
    
    			// Add protection and re-verify the ILM rules for qualification
    			// based on the latest objectInfo and see if the object still
    			// qualifies for deletion.
    			if gerr == nil {
    				var isErr bool
    				evt := evalActionFromLifecycle(ctx, *lc, rcfg, replcfg, goi)
    				switch evt.Action {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  10. api/maven-api-di/src/main/java/org/apache/maven/api/di/Qualifier.java

    import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
    import static java.lang.annotation.RetentionPolicy.RUNTIME;
    
    @Target(ANNOTATION_TYPE)
    @Retention(RUNTIME)
    @Documented
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top