Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 145 for setDirs (0.16 sec)

  1. src/main/java/org/codelibs/fess/query/QueryFieldConfig.java

                final String[] values = s.split(":");
                if (values.length == 1) {
                    pair.setFirst(values[0].trim());
                    pair.setSecond(1.0f);
                } else if (values.length > 1) {
                    pair.setFirst(values[0]);
                    pair.setSecond(Float.parseFloat(values[1]));
                } else {
                    return null;
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFileTree.java

         * org.gradle.api.Project#file(Object)}.
         *
         * @param dir The base directory.
         * @return this
         */
        ConfigurableFileTree setDir(Object dir);
    
        /**
         * Returns the set of tasks which build the files of this collection.
         *
         * @return The set. Returns an empty set when there are no such tasks.
         */
        Set<Object> getBuiltBy();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/converter/BuildLayoutConverter.java

            @Override
            @SuppressWarnings("deprecation") // StartParameter.setSettingsFile()
            public void applyTo(StartParameterInternal startParameter) {
                // Note that order is important here, as the setters have some side effects
                if (buildLayout.getProjectDir() != null) {
                    startParameter.setProjectDir(buildLayout.getProjectDir());
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/IdeaWorkspace.java

         * Enables advanced manipulation of the output XML.
         * <p>
         * For example see docs for {@link IdeaWorkspace}
         */
        public XmlFileContentMerger getIws() {
            return iws;
        }
    
        public void setIws(XmlFileContentMerger iws) {
            this.iws = iws;
        }
    
        /**
         * Enables advanced manipulation of the output XML.
         * <p>
         * For example see docs for {@link IdeaWorkspace}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/SmallCharMatcher.java

            index = (index + 1) & mask;
          }
          // Check to see if we wrapped around the whole table.
        } while (index != startingIndex);
        return false;
      }
    
      @Override
      void setBits(BitSet table) {
        if (containsZero) {
          table.set(0);
        }
        for (char c : this.table) {
          if (c != 0) {
            table.set(c);
          }
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. common-protos/k8s.io/apimachinery/pkg/runtime/generated.proto

    // to deal with the API objects from a plug-in. Unknown objects still have functioning
    // TypeMeta features-- kind, version, etc.
    // TODO: Make this object have easy access to field based accessors and settors for
    // metadata and field mutatation.
    //
    // +k8s:deepcopy-gen=true
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +protobuf=true
    // +k8s:openapi-gen=true
    message Unknown {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/generated.proto

    // to deal with the API objects from a plug-in. Unknown objects still have functioning
    // TypeMeta features-- kind, version, etc.
    // TODO: Make this object have easy access to field based accessors and settors for
    // metadata and field mutatation.
    //
    // +k8s:deepcopy-gen=true
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +protobuf=true
    // +k8s:openapi-gen=true
    message Unknown {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/types.go

    // to deal with the API objects from a plug-in. Unknown objects still have functioning
    // TypeMeta features-- kind, version, etc.
    // TODO: Make this object have easy access to field based accessors and settors for
    // metadata and field mutatation.
    //
    // +k8s:deepcopy-gen=true
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +protobuf=true
    // +k8s:openapi-gen=true
    type Unknown struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 19:12:58 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/action/BuildActionSerializerTest.groovy

            result instanceof ExecuteBuildAction
            result.startParameter."${buildOptionName}" == expectedValue
    
            where:
            // Check all mutable boolean properties (must manually check for setters as many of them return StartParameter)
            buildOptionName << Introspector.getBeanInfo(StartParameterInternal).propertyDescriptors
                .findAll { it.propertyType == boolean }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/plugins/ExtensionAware.java

     * <p>
     * An <code>ExtensionAware</code> object has several 'scopes' that Gradle searches for properties. These scopes are:</p>
     *
     * <ul>
     * <li>The object itself. This scope includes any property getters and setters declared by the
     * implementation class. The properties of this scope are readable or writable depending on the presence
     * of the corresponding getter or setter method.</li>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 07:18:37 UTC 2022
    - 3.7K bytes
    - Viewed (0)
Back to top