Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 782 for doBind (0.11 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/VersionHierarchyRoot.java

    import org.gradle.internal.snapshot.VfsRelativePath;
    
    import javax.annotation.CheckReturnValue;
    
    /**
     * Structure for tracking modifications in a hierarchy.
     *
     * Allows doing optimistic locking to check whether anything in a hierarchy changed.
     */
    public class VersionHierarchyRoot {
        private final CaseSensitivity caseSensitivity;
        private final VersionHierarchy rootNode;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. pkg/api/legacyscheme/scheme.go

    	// NOTE: If you are copying this file to start a new api group, STOP! Copy the
    	// extensions group instead. This Scheme is special and should appear ONLY in
    	// the api group, unless you really know what you're doing.
    	// TODO(lavalamp): make the above error impossible.
    	Scheme = runtime.NewScheme()
    
    	// Codecs provides access to encoding and decoding for the scheme
    	Codecs = serializer.NewCodecFactory(Scheme)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 20 19:12:48 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  3. android/guava-testlib/pom.xml

          <version>4.13.2</version>
        </dependency>
        <dependency>
          <!--
          Do not include Truth in non-test scope! Doing so creates a problematic dependency cycle.
          -->
          <groupId>com.google.truth</groupId>
          <artifactId>truth</artifactId>
          <version>${truth.version}</version>
          <scope>test</scope>
          <exclusions>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 31 18:55:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. guava-testlib/pom.xml

          <version>4.13.2</version>
        </dependency>
        <dependency>
          <!--
          Do not include Truth in non-test scope! Doing so creates a problematic dependency cycle.
          -->
          <groupId>com.google.truth</groupId>
          <artifactId>truth</artifactId>
          <version>${truth.version}</version>
          <scope>test</scope>
          <exclusions>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 31 18:55:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/cache/CacheForm.java

    import java.util.Map;
    
    import javax.validation.constraints.Size;
    
    import org.lastaflute.web.validation.Required;
    
    public class CacheForm {
    
        @Required
        @Size(max = 100)
        public String docId;
    
        public String[] hq;
    
        // for error page
    
        public String q;
    
        public String num;
    
        public String sort;
    
        public String lang;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

                    "file://home/taro/%E3%81%82.txt");
    
            assertUrlLink(null, "#not-found-docId");
            assertUrlLink("", "#not-found-docId");
            assertUrlLink(" ", "#not-found-docId");
        }
    
        private void assertUrlLink(String url, String expected) {
            Map<String, Object> doc = new HashMap<>();
            doc.put("doc_id", "docId");
            doc.put("url", url);
            assertEquals(expected, viewHelper.getUrlLink(doc));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. prepare-svg.sh

    # specific language governing permissions and limitations
    # under the License.
    
    #libreoffice --headless --convert-to svg src/site/xdoc/maven-deps.odg
    # CLI export keeps full A3 page
    # I prefer doing it by hand, limiting export to "selection" = avoids extra space
    
    # svgo https://github.com/svg/svgo
    svgo --config src/site/svgo.config.mjs maven-deps.svg -o maven-deps-optimized.svg
    
    cat maven-deps-optimized.svg \
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 24 18:29:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java

                        }
                        return DocumentUtil.getValue(doc, fessConfig.getIndexFieldDocId(), String.class);
                    }).forEach(docId -> {
                        boolQuery.should(QueryBuilders.termQuery(fessConfig.getIndexFieldDocId(), docId));
                    });
    
                    if (boolQuery.hasClauses()) {
                        if (logger.isDebugEnabled()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/app/fds.go

    // However, it will restore the original limit for subprocesses (Envoy):
    // https://github.com/golang/go/blob/f0d1195e13e06acdf8999188decc63306f9903f5/src/syscall/rlimit.go#L14.
    // By explicitly doing it ourselves, we get the limit passed through to Envoy.
    //
    // This function returns the new limit additionally, for convenience.
    func RaiseFileLimits() (uint64, error) {
    	return raiseFileLimits()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/EmptyImmutableSetMultimap.java

       * TODO(b/242884182): Figure out why this helps produce the same class file when we compile most
       * of common.collect a second time with the results of the first compilation on the classpath. Or
       * just back this out once we stop doing that (which we'll do after our internal GWT setup
       * changes).
       */
      @Override
      public ImmutableMap<Object, Collection<Object>> asMap() {
        return super.asMap();
      }
    
      private Object readResolve() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 18 16:48:17 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top