Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 226 for defaultValues (0.21 sec)

  1. src/mdo/writer-stax.vm

        private void writeTag(String tagName, String defaultValue, String value, XMLStreamWriter serializer, InputLocationTracker locationTracker) throws IOException, XMLStreamException {
    #else
        private void writeTag(String tagName, String defaultValue, String value, XMLStreamWriter serializer) throws IOException, XMLStreamException {
    #end
            if (value != null && !Objects.equals(defaultValue, value)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  2. api/maven-api-metadata/src/main/mdo/metadata.mdo

              <version>1.0.0+</version>
              <description>Whether to use a local copy instead (with filename that includes the base version)</description>
              <type>boolean</type>
              <defaultValue>false</defaultValue>
            </field>
          </fields>
        </class>
        <class java.clone="deep">
          <name>SnapshotVersion</name>
          <version>1.1.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/DocumentUtil.java

        private DocumentUtil() {
        }
    
        public static <T> T getValue(final Map<String, Object> doc, final String key, final Class<T> clazz, final T defaultValue) {
            final T value = getValue(doc, key, clazz);
            if (value == null) {
                return defaultValue;
            }
            return value;
        }
    
        @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/job/ExecJob.java

                if (appendValue != null) {
                    buf.append(appendValue);
                }
                cmdList.add(buf.toString());
            } else if (defaultValue != null) {
                cmdList.add("-D" + name + "=" + defaultValue);
            }
        }
    
        protected void addFessConfigProperties(final List<String> cmdList) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/StartParameterInternal.java

        private boolean watchFileSystemDebugLogging;
        private boolean vfsVerboseLogging;
    
        private Option.Value<Boolean> configurationCache = Option.Value.defaultValue(false);
        private Option.Value<Boolean> isolatedProjects = Option.Value.defaultValue(false);
        private ConfigurationCacheProblemsOption.Value configurationCacheProblems = ConfigurationCacheProblemsOption.Value.FAIL;
        private boolean configurationCacheDebug;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 29 08:08:36 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. migrator/column_type.go

    }
    
    // Comment returns the comment of current column.
    func (ct ColumnType) Comment() (value string, ok bool) {
    	return ct.CommentValue.String, ct.CommentValue.Valid
    }
    
    // DefaultValue returns the default value of current column.
    func (ct ColumnType) DefaultValue() (value string, ok bool) {
    	return ct.DefaultValueValue.String, ct.DefaultValueValue.Valid
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 24 01:31:58 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/compatibility/CrossVersionTestInterceptor.groovy

            }
            return targetGradleVersion == candidate
        }
    
        private static Closure getAnnotationClosure(Class target, Class annotation, Closure defaultValue) {
            def a = target.getAnnotation(annotation)
            a ? a.value().newInstance(target, target) : defaultValue
        }
    
        private static class PreviousVersionExecution extends org.gradle.integtests.fixtures.extensions.AbstractMultiTestInterceptor.Execution {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingEnvMap.java

        @Override
        @SuppressWarnings("SuspiciousMethodCalls")
        @Nullable
        public String getOrDefault(@Nullable Object key, @Nullable String defaultValue) {
            String value = getAndReport(key);
            if (value == null && !delegate.containsKey(key)) {
                return defaultValue;
            }
            return value;
        }
    
        @Override
        public boolean containsKey(@Nullable Object key) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1beta1.CustomResourceDefinition.json

            "$schema": "$schemaValue",
            "$ref": "$refValue",
            "description": "descriptionValue",
            "type": "typeValue",
            "format": "formatValue",
            "title": "titleValue",
            "default": "defaultValue",
            "maximum": 9.5,
            "exclusiveMaximum": true,
            "minimum": 11.5,
            "exclusiveMinimum": true,
            "maxLength": 13,
            "minLength": 14,
            "pattern": "patternValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. tools/istio-clean-iptables/pkg/config/config.go

    	"istio.io/istio/tools/istio-iptables/pkg/constants"
    )
    
    func DefaultConfig() *Config {
    	return &Config{
    		OwnerGroupsInclude: constants.OwnerGroupsInclude.DefaultValue,
    		OwnerGroupsExclude: constants.OwnerGroupsExclude.DefaultValue,
    	}
    }
    
    // Command line options
    // nolint: maligned
    type Config struct {
    	DryRun                  bool     `json:"DRY_RUN"`
    	ProxyUID                string   `json:"PROXY_UID"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 01 04:37:36 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top