Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for IsBlank (0.24 sec)

  1. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

                    }
                }
    
                String r = realm;
                if (StringUtil.isBlank(realm)) {
                    r = AuthScope.ANY_REALM;
                }
    
                String s = scheme;
                if (StringUtil.isBlank(scheme) || Constants.NTLM.equals(scheme)) {
                    s = AuthScope.ANY_SCHEME;
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            } catch (final UnsupportedEncodingException e) {
                return path;
            }
        }
    
        public String normalizeConfigPath(final String path) {
    
            if (StringUtil.isBlank(path)) {
                return StringUtils.EMPTY;
            }
    
            final String p = path.trim();
            if (p.startsWith("#")) {
                return StringUtils.EMPTY;
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/assign.go

    	// the boolean result of i.(T) is now untyped so we make it the
    	// same type as the variable on the lhs.
    	if ok := n.Lhs[1]; !ir.IsBlank(ok) && ok.Type().IsBoolean() {
    		call.Type().Field(1).Type = ok.Type()
    	}
    	n.Rhs = []ir.Node{call}
    	n.SetOp(ir.OAS2FUNC)
    
    	// don't generate a = *var if a is _
    	if ir.IsBlank(a) {
    		return walkExpr(typecheck.Stmt(n), init)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

            // Don't allow paths that are:
            // - empty or blank
            // - the root path
            // - have empty or blank segments (eg `::a`, `a::b`, `a:  :b`, etc)
    
            if (name.isEmpty() || StringUtils.isBlank(name)) {
                throw problemsService.getInternalReporter().throwing(spec -> {
                    spec.id("empty-path", "Empty path", GradleCoreProblemGroup.taskSelection());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            String title = DocumentUtil.getValue(document, fessConfig.getIndexFieldTitle(), String.class);
            if (StringUtil.isBlank(title)) {
                title = DocumentUtil.getValue(document, fessConfig.getIndexFieldFilename(), String.class);
                if (StringUtil.isBlank(title)) {
                    title = DocumentUtil.getValue(document, fessConfig.getIndexFieldUrl(), String.class);
                }
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  6. src/runtime/alg.go

    		for i := uintptr(0); i < a.Len; i++ {
    			h = typehash(a.Elem, add(p, i*a.Elem.Size_), h)
    		}
    		return h
    	case abi.Struct:
    		s := (*structtype)(unsafe.Pointer(t))
    		for _, f := range s.Fields {
    			if f.Name.IsBlank() {
    				continue
    			}
    			h = typehash(f.Typ, add(p, f.Offset), h)
    		}
    		return h
    	default:
    		// Should never happen, as typehash should only be called
    		// with comparable types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

                    writeHeaders(response);
                    final String responseContentType = curlResponse.getHeaderValue("Content-Type");
                    if (StringUtil.isBlank(responseContentType)) {
                        response.setHeader("Content-Type", "application/json");
                    } else {
                        response.setHeader("Content-Type", responseContentType);
                    }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:28:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ir/func.go

    	}
    	gen := &globClosgen
    
    	// There may be multiple functions named "_". In those
    	// cases, we can't use their individual Closgens as it
    	// would lead to name clashes.
    	if outerfn != nil && !IsBlank(outerfn.Nname) {
    		pkg = outerfn.Sym().Pkg
    		outer = FuncName(outerfn)
    
    		switch why {
    		case OCLOSURE:
    			gen = &outerfn.funcLitGen
    		case ORANGE:
    			gen = &outerfn.rangeLitGen
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

         * with Java 6 on old Gradle versions because StringUtils require SQLException which
         * is absent from Java 6.
         */
        public static boolean isBlank(String str) {
            int strLen;
            if (str == null || (strLen = str.length()) == 0) {
                return true;
            }
            for (int i = 0; i < strLen; i++) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. src/internal/abi/type.go

    	v := 0
    	for i := 0; ; i++ {
    		x := *n.DataChecked(off+i, "read varint")
    		v += int(x&0x7f) << (7 * i)
    		if x&0x80 == 0 {
    			return i + 1, v
    		}
    	}
    }
    
    // IsBlank indicates whether n is "_".
    func (n Name) IsBlank() bool {
    	if n.Bytes == nil {
    		return false
    	}
    	_, l := n.ReadVarint(1)
    	return l == 1 && *n.Data(2) == '_'
    }
    
    // writeVarint writes n to buf in varint form. Returns the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top