Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for IsBlank (0.12 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. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/jvm/AbstractConsoleJvmTestLoggingFunctionalTest.groovy

                """
            }
    
            when:
            executer.withConsole(consoleType)
            succeeds(TEST_TASK_NAME)
    
            then:
            def taskOutput = getTaskOutput(result).readLines().findAll { !it.isBlank() } .join('\n')
            taskOutput.contains("""MyTest > testExpectation ${TestLogEvent.STANDARD_OUT.consoleMarker}
        standard output""")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 14:21:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/Parser.kt

                }
    
                line.startsWith("package") -> {
                    packageStatements.add(line)
                    isAfterImportLine = false
                }
    
                line.isBlank() -> {
                    if (!isAfterImportLine) codeStatements.add(line)
                }
    
                else -> {
                    codeStatements.add(line)
                    isAfterImportLine = false
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top