Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for displayName (0.21 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/cbean/cq/bs/BsUserCQ.java

        public void setDisplayName_Equal(String displayName) {
            setDisplayName_Term(displayName, null);
        }
    
        public void setDisplayName_Equal(String displayName, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setDisplayName_Term(displayName, opLambda);
        }
    
        public void setDisplayName_Term(String displayName) {
            setDisplayName_Term(displayName, null);
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 326.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. .teamcity/src/main/kotlin/configurations/Gradleception.kt

        if (bundleGroovy4) {
            labels += "Groovy 4.x"
            idParts += "Groovy4"
            descriptionParts += "bundling Groovy 4"
        }
        val vendor = buildJvm.vendor.displayName
        val version = buildJvm.version.major
        if (buildJvm != BuildToolBuildJvm) {
            idParts += "Java$jvmDescription"
            descriptionParts += "with Java$version $vendor"
        }
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Feb 27 09:57:17 GMT 2024
    - 6K bytes
    - Viewed (0)
  7. 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)
  8. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts

        val runtimeClasspath by configurations
        val externalComponents by lazy {
            runtimeClasspath.incoming.resolutionResult.rootComponent.map { rootComponent ->
                val rootVariant = rootComponent.variants.find { it.displayName == runtimeClasspath.name }
                rootVariant?.let { computeExternalDependenciesNotAccessibleFromProjectDependencies(rootComponent, it) } ?: emptySet()
            }.get()
        }
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Mar 28 20:26:58 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  9. helm/minio/templates/deployment.yaml

                - name: MINIO_IDENTITY_OPENID_REDIRECT_URI
                  value: {{ .Values.oidc.redirectUri }}
                - name: MINIO_IDENTITY_OPENID_DISPLAY_NAME
                  value: {{ .Values.oidc.displayName }}
                {{- end }}
                {{- if .Values.etcd.endpoints }}
                - name: MINIO_ETCD_ENDPOINTS
                  value: {{ join "," .Values.etcd.endpoints | quote }}
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Mar 03 17:50:39 GMT 2024
    - 8.7K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/util/RerunFlakyTest.kt

                JvmVendor.openjdk.name,
                display = ParameterDisplay.PROMPT,
                description = "Java vendor to run the test with",
                options = JvmVendor.values().map { it.displayName to it.name }
            )
            text(
                testTaskOptionsParameterName,
                "",
                display = ParameterDisplay.PROMPT,
                allowEmpty = true,
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 4.6K bytes
    - Viewed (0)
Back to top