Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,367 for prefixof (0.31 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinPlatformComponent.kt

     *
     * Platform component interfaces and their default implementations are always prefixed with the word `Kotlin`, in contrast to
     * [KaEngineService]s which are prefixed with `Ka`. It is recommended to keep this naming convention in platform implementations. For
     * example, the Standalone API uses a `KotlinStandalone` prefix for its own platform component implementations.
     */
    public interface KotlinPlatformComponent
    
    /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/runtimeshaded/ImplementationDependencyRelocator.java

        }
    
        public ImplementationDependencyRelocator(RuntimeShadedJarType type) {
            prefixes = readPrefixes(type);
        }
    
        @Override
        public String map(String name) {
            String value = name;
    
            String prefix = "";
    
            Matcher m = classPattern.matcher(name);
            if (m.matches()) {
                prefix = m.group(1) + "L";
                name = m.group(2);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                    if (newType != fileType) {
                        val prefix = "the file system entry '${displayNameOf(file)}'"
                        return when {
                            newType == FileType.Missing -> return "$prefix has been removed"
                            fileType == FileType.Missing -> return "$prefix has been created"
                            else -> "$prefix has changed"
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. pkg/util/iptree/iptree.go

    		bitPosition = n.prefix.Bits()
    	}
    
    	if n != nil && n.public && n.prefix == prefix {
    		last = n
    	}
    
    	if last != nil {
    		return last.prefix, last.val, true
    	}
    	var zeroT T
    	return netip.Prefix{}, zeroT, false
    }
    
    // ShortestPrefixMatch returns the shortest prefix match, the stored value and true if exist.
    // For example, considering the following prefixes 192.168.20.16/28 and 192.168.0.0/16,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  5. src/go/doc/synopsis.go

    // the result is the empty string.
    func (p *Package) Synopsis(text string) string {
    	text = firstSentence(text)
    	lower := strings.ToLower(text)
    	for _, prefix := range IllegalPrefixes {
    		if strings.HasPrefix(lower, prefix) {
    			return ""
    		}
    	}
    	pr := p.Printer()
    	pr.TextWidth = -1
    	d := p.Parser().Parse(text)
    	if len(d.Content) == 0 {
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KaEngineService.kt

     *
     * As a marker interface, [KaEngineService] clearly separates an engine service from [KotlinPlatformComponent]s which need to be implemented
     * by a platform. Furthermore, engine services are always prefixed with `Ka`, in contrast to platform components which are prefixed with
     * `Kotlin`.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/util.go

    */
    
    package cacher
    
    import (
    	"strings"
    )
    
    // hasPathPrefix returns true if the string matches pathPrefix exactly, or if is prefixed with pathPrefix at a path segment boundary
    func hasPathPrefix(s, pathPrefix string) bool {
    	// Short circuit if s doesn't contain the prefix at all
    	if !strings.HasPrefix(s, pathPrefix) {
    		return false
    	}
    
    	pathPrefixLength := len(pathPrefix)
    
    	if len(s) == pathPrefixLength {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/PrefixedObjectValueSource.java

         * @param prefix the prefix.
         * @param root the root of the graph.
         */
        public PrefixedObjectValueSource(String prefix, Object root) {
            super(new PrefixedValueSourceWrapper(new ObjectBasedValueSource(root), prefix));
        }
    
        /**
         * Wrap the specified root object, allowing the specified list of expression
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    	// Must be absent/empty if TCPTransport.URL is prefixed with http://
    	// If absent while TCPTransport.URL is prefixed with https://, default to system trust roots.
    	// +optional
    	CABundle string
    
    	// clientKey is the file location of the client key to authenticate with the konnectivity server
    	// Must be absent/empty if TCPTransport.URL is prefixed with http://
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/cryptobyte/string.go

    // for appending values and also for appending length-prefixed submessages –
    // without having to worry about calculating the length prefix ahead of time.
    //
    // See the documentation and examples for the Builder and String types to get
    // started.
    package cryptobyte // import "golang.org/x/crypto/cryptobyte"
    
    // String represents a string of bytes. It provides methods for parsing
    // fixed-length and length-prefixed values from it.
    type String []byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top