Search Options

Results per page
Sort
Preferred Languages
Advance

Results 311 - 320 of 353 for display_name (0.31 sec)

  1. src/main/webapp/WEB-INF/view/admin/user/admin_user_edit.jsp

                                            <label for="attributes.displayName" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                    key="labels.user_displayName"/></label>
                                            <div class="col-sm-9">
                                                <la:errors property="attributes.displayName"/>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Feb 14 12:15:45 UTC 2020
    - 31.4K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/common/JvmVendor.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package common
    
    enum class JvmVendor(
        val displayName: String,
    ) {
        ORACLE("Oracle"),
        OPENJDK("Adoptium"),
        ZULU("Zulu"),
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 755 bytes
    - Viewed (0)
  3. cmd/acl-handlers.go

    type grantee struct {
    	XMLNS       string `xml:"xmlns:xsi,attr"`
    	XMLXSI      string `xml:"xsi:type,attr"`
    	Type        string `xml:"Type"`
    	ID          string `xml:"ID,omitempty"`
    	DisplayName string `xml:"DisplayName,omitempty"`
    	URI         string `xml:"URI,omitempty"`
    }
    
    type grant struct {
    	Grantee    grantee `xml:"Grantee"`
    	Permission string  `xml:"Permission"`
    }
    
    type accessControlPolicy struct {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/common/BuildScanUtils.kt

        value: String,
    ) = """-Dscan.value.$key=$value"""
    
    fun TestCoverage.asBuildScanCustomValue() =
        testType.name.toCamelCase().toCapitalized() +
            testJvmVersion.toCapitalized() +
            "${vendor.displayName}${os.asName()}${arch.asName()}"
    
    // Generates a Build Scan custom value "PartOf=X,Y,Z"
    // where X, Y, Z are all the stages including current stage
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Jun 10 05:45:46 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/user/bsentity/dbmeta/UserDbm.java

                "destinationIndicator", null, false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnDisplayName = cci("displayName", "displayName", null, null, String.class, "displayName", null, false,
                false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 27K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/user/admin_user_details.jsp

                                                <th><la:message key="labels.user_displayName"/></th>
                                                <td>${f:h(attributes.displayName)}<la:hidden
                                                        property="attributes.displayName"/></td>
                                            </tr>
                                            <tr>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 17.8K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/Gradleception.kt

                labels += "Groovy $bundleGroovyMajor.x"
                idParts += "Groovy$bundleGroovyMajor"
                descriptionParts += "bundling Groovy $bundleGroovyMajor"
            }
            val vendor = buildJvm.vendor.displayName
            val version = buildJvm.version.major
            if (buildJvm != BuildToolBuildJvm) {
                idParts += "Java$jvmDescription"
                descriptionParts += "with Java$version $vendor"
            }
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu May 01 14:55:05 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/model/PerformanceTestSpec.kt

        ) = "${asConfigurationId(model)}$bucket"
    
        override fun asConfigurationId(model: CIBuildModel) = "${model.projectId}_${oldUuid ?: "PerformanceTest$uuid"}"
    
        override fun asName(): String = "${type.displayName} - ${os.asName()}"
    
        override fun channel() = "${type.channel}${if (os == Os.LINUX) "" else "-${os.name.lowercase(Locale.US)}"}-%teamcity.build.branch%"
    }
    
    data class FlameGraphGeneration(
        private val uuid: Int,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

                    display = ParameterDisplay.PROMPT,
                    description = "The java vendor to run the performance tests",
                    options = JvmVendor.values().map { it.displayName to it.name.lowercase() },
                )
                when (os) {
                    Os.WINDOWS -> {
                        profilerParam("jprofiler")
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/auth/chain/AuthenticationChainTest.java

            assertEquals(5, chain.deleteCalls.size());
        }
    
        // Helper method to create test user
        private User createTestUser(String username, String displayName) {
            User user = new User();
            user.setName(username);
            user.setDisplayName(displayName);
            return user;
        }
    
        // Test implementation of AuthenticationChain for testing
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14.6K bytes
    - Viewed (0)
Back to top