Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for emptystring (0.95 sec)

  1. src/text/template/exec_test.go

    	{"if 1.5i", "{{if 1.5i}}NON-ZERO{{else}}ZERO{{end}}", "NON-ZERO", tVal, true},
    	{"if 0.0i", "{{if .ComplexZero}}NON-ZERO{{else}}ZERO{{end}}", "ZERO", tVal, true},
    	{"if emptystring", "{{if ``}}NON-EMPTY{{else}}EMPTY{{end}}", "EMPTY", tVal, true},
    	{"if string", "{{if `notempty`}}NON-EMPTY{{else}}EMPTY{{end}}", "NON-EMPTY", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. src/net/ip.go

    	s := make([]byte, len(b)*2)
    	for i, tn := range b {
    		s[i*2], s[i*2+1] = hexDigit[tn>>4], hexDigit[tn&0xf]
    	}
    	return string(s)
    }
    
    // ipEmptyString is like ip.String except that it returns
    // an empty string when ip is unset.
    func ipEmptyString(ip IP) string {
    	if len(ip) == 0 {
    		return ""
    	}
    	return ip.String()
    }
    
    // MarshalText implements the [encoding.TextMarshaler] interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
Back to top