Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for displayName (0.26 sec)

  1. .teamcity/src/main/kotlin/model/CIBuildModel.kt

    }
    
    enum class PerformanceTestType(
        val displayName: String,
        val timeout: Int,
        val defaultBaselines: String = "",
        val channel: String,
        val extraParameters: String = ""
    ) {
        per_commit(
            displayName = "Performance Regression Test",
            timeout = 420,
            channel = "commits"
        ),
        per_day(
            displayName = "Slow Performance Regression Test",
            timeout = 420,
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Feb 23 01:54:48 GMT 2024
    - 20.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/user/bsentity/BsUser.java

            this.destinationIndicator = value;
        }
    
        public String getDisplayName() {
            checkSpecifiedProperty("displayName");
            return convertEmptyToNull(displayName);
        }
    
        public void setDisplayName(String value) {
            registerModifiedProperty("displayName");
            this.displayName = value;
        }
    
        public String getEmployeeNumber() {
            checkSpecifiedProperty("employeeNumber");
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 22.8K bytes
    - Viewed (0)
  3. cmd/api-response.go

    	// Dumb values not meaningful
    	listPartsResponse.Initiator = Initiator{
    		ID:          globalMinioDefaultOwnerID,
    		DisplayName: globalMinioDefaultOwnerID,
    	}
    	listPartsResponse.Owner = Owner{
    		ID:          globalMinioDefaultOwnerID,
    		DisplayName: globalMinioDefaultOwnerID,
    	}
    
    	listPartsResponse.MaxParts = partsInfo.MaxParts
    	listPartsResponse.PartNumberMarker = partsInfo.PartNumberMarker
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 33.3K bytes
    - Viewed (2)
  4. manifests/addons/dashboards/istio-mesh-dashboard.json

              {
                "matcher": {
                  "id": "byName",
                  "options": "destination_workload"
                },
                "properties": [
                  {
                    "id": "displayName",
                    "value": "Workload"
                  },
                  {
                    "id": "unit",
                    "value": "short"
                  },
                  {
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Mar 28 02:28:01 GMT 2024
    - 46.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/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);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 27K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/user/admin_user_details.jsp

                                            <tr>
                                                <th><la:message key="labels.user_displayName"/></th>
                                                <td>${f:h(attributes.displayName)}<la:hidden
                                                        property="attributes.displayName"/></td>
                                            </tr>
                                            <tr>
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 17.8K bytes
    - Viewed (0)
  7. okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt

              TaskRunner.INSTANCE.cancelAll()
            }
            fail<Unit>("Queue still active after 1000 ms")
          }
        }
      }
    
      override fun beforeEach(context: ExtensionContext) {
        testName = context.displayName
    
        beforeEach()
      }
    
      private fun beforeEach() {
        defaultUncaughtExceptionHandler = Thread.getDefaultUncaughtExceptionHandler()
        Thread.setDefaultUncaughtExceptionHandler { _, throwable ->
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 10.5K bytes
    - Viewed (0)
  8. 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"/>
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 14 12:15:45 GMT 2020
    - 31.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/user/bsbhv/BsUserBhv.java

                result.setDestinationIndicator(DfTypeUtil.toString(source.get("destinationIndicator")));
                result.setDisplayName(DfTypeUtil.toString(source.get("displayName")));
                result.setEmployeeNumber(DfTypeUtil.toString(source.get("employeeNumber")));
                result.setEmployeeType(DfTypeUtil.toString(source.get("employeeType")));
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12K bytes
    - Viewed (0)
  10. internal/config/identity/openid/openid.go

    const (
    	ClientID      = "client_id"
    	ClientSecret  = "client_secret"
    	ConfigURL     = "config_url"
    	ClaimName     = "claim_name"
    	ClaimUserinfo = "claim_userinfo"
    	RolePolicy    = "role_policy"
    	DisplayName   = "display_name"
    
    	Scopes             = "scopes"
    	RedirectURI        = "redirect_uri"
    	RedirectURIDynamic = "redirect_uri_dynamic"
    	Vendor             = "vendor"
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Nov 16 04:42:31 GMT 2023
    - 16.5K bytes
    - Viewed (0)
Back to top