Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for emptystring (0.15 sec)

  1. src/net/udpsock.go

    }
    
    // Network returns the address's network name, "udp".
    func (a *UDPAddr) Network() string { return "udp" }
    
    func (a *UDPAddr) String() string {
    	if a == nil {
    		return "<nil>"
    	}
    	ip := ipEmptyString(a.IP)
    	if a.Zone != "" {
    		return JoinHostPort(ip+"%"+a.Zone, itoa.Itoa(a.Port))
    	}
    	return JoinHostPort(ip, itoa.Itoa(a.Port))
    }
    
    func (a *UDPAddr) isWildcard() bool {
    	if a == nil || a.IP == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 16:58:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. src/net/tcpsock.go

    }
    
    // Network returns the address's network name, "tcp".
    func (a *TCPAddr) Network() string { return "tcp" }
    
    func (a *TCPAddr) String() string {
    	if a == nil {
    		return "<nil>"
    	}
    	ip := ipEmptyString(a.IP)
    	if a.Zone != "" {
    		return JoinHostPort(ip+"%"+a.Zone, itoa.Itoa(a.Port))
    	}
    	return JoinHostPort(ip, itoa.Itoa(a.Port))
    }
    
    func (a *TCPAddr) isWildcard() bool {
    	if a == nil || a.IP == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.emptyDoubles.min() == 1.0": "min called on empty list",
    				"self.emptyDoubles.max() == 3.0": "max called on empty list",
    				"self.emptyStrings.min() == 'a'": "min called on empty list",
    				"self.emptyStrings.max() == 'c'": "max called on empty list",
    
    				// only allow sum on numeric types and duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

            private static final Type RETURN_CONVENTION_METHOD_TYPE = Type.getMethodType(RETURN_CONVENTION);
    
            private static final String[] EMPTY_STRINGS = new String[0];
            private static final Type[] EMPTY_TYPES = new Type[0];
    
            private final Class<?> type;
            private final boolean managed;
            private final Type generatedType;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            try {
                final List<String> popularWordList =
                        popularWordHelper.getWordList(SearchRequestType.JSON, seed, tags, null, fields, StringUtil.EMPTY_STRINGS);
                buf.append("\"record_count\":").append(popularWordList.size()).append(',');
                buf.append("\"data\":[");
                boolean first1 = true;
                for (final String word : popularWordList) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  6. operator/pkg/translate/translate.go

    func defaultTranslationFunc(m *Translation, root map[string]any, valuesPath string, value any) error {
    	var path []string
    
    	if util.IsEmptyString(value) {
    		scope.Debugf("Skip empty string value for path %s", m.OutPath)
    		return nil
    	}
    	if valuesPath == "" {
    		scope.Debugf("Not mapping to values, resources path is %s", m.OutPath)
    		return nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            if (requestLangs != null && requestLangs.length != 0) {
                return normalizeQueryLanguages(requestLangs);
            }
    
            if (locales == null) {
                return StringUtil.EMPTY_STRINGS;
            }
    
            return normalizeQueryLanguages(Collections.list(locales).stream().map(locale -> {
                final String language = locale.getLanguage();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/static/trace_viewer_full.html

    var keyOf=attr('key');var nodeOf=attr('node');var ROOT_PATH={};function...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top