Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 737 for qualifies (0.57 sec)

  1. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/binary/BaseBinarySpecTest.groovy

            binary.projectScopedName == "sampleBinary"
            binary.displayName == "SampleBinary 'sampleBinary'"
            binary.namingScheme.description == "sample binary 'sampleBinary'"
        }
    
        def "qualifies project scoped named and display name using owners name"() {
            def component = BaseComponentFixtures.createNode(SampleComponent, MySampleComponent, new DefaultComponentSpecIdentifier("path", "sample"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappingTables.kt

      }
    
      return IdnaMappingTableData(
        sections = sectionIndexBuffer.readUtf8(),
        ranges = rangesBuffer.readUtf8(),
        mappings = mappingsBuffer.toString(),
      )
    }
    
    /**
     * If [mapping] qualifies to be encoded as [MappedRange.InlineDelta] return new instance, otherwise null.
     * An [MappedRange.InlineDelta] must be a mapping from a single code-point to a single code-point with a difference
     * that can be represented in 2^18-1.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. docs/bucket/replication/DESIGN.md

    For active-active replication, automatic failover occurs on `GET/HEAD` operations if object or object version requested qualifies for replication and is missing on one site, but present on the other. This allows the applications to take full advantage of two-way replication even before the two sites get fully synced.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/fmt.go

    }
    
    // NameString generates a user-readable, mostly unique string
    // description of t. NameString always returns the same description
    // for identical types, even across compilation units.
    //
    // NameString qualifies identifiers by package name, so it has
    // collisions when different packages share the same names and
    // identifiers. It also does not distinguish function-scope defined
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top