Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 782 for doBind (0.12 sec)

  1. platforms/documentation/docs/src/snippets/java/crossCompilation/readme.xml

    <sample>
        <para>A project doing cross compilation to Java 6</para>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 80 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/groovy/crossCompilation/readme.xml

    <sample>
        <para>A project doing cross compilation for a Groovy Project to Java 7</para>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 101 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/stopExecutionException/groovy/build.gradle

    def compile = tasks.register('compile') {
        doLast {
            println 'We are doing the compile.'
        }
    }
    
    compile.configure {
        doFirst {
            // Here you would put arbitrary conditions in real life.
            if (true) {
                throw new StopExecutionException()
            }
        }
    }
    tasks.register('myTask') {
        dependsOn('compile')
        doLast {
            println 'I am not affected'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 401 bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/log/bsentity/dbmeta/ClickLogDbm.java

                0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnDocId = cci("docId", "docId", null, null, String.class, "docId", null, false, false, false, "keyword",
                0, 0, null, null, false, null, null, null, null, null, false);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess_log.click_log/click_log.json

    {
        "properties": {
          "urlId": {
            "type": "keyword"
          },
          "docId": {
            "type": "keyword"
          },
          "queryId": {
            "type": "keyword"
          },
          "userSessionId": {
            "type": "keyword"
          },
          "url": {
            "type": "keyword"
          },
          "order": {
            "type": "integer"
          },
          "requestedAt": {
            "type": "date",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Feb 24 22:07:26 UTC 2019
    - 544 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                                        final String docId = DocumentUtil.getValue(doc, fessConfig.getIndexFieldDocId(), String.class);
                                        if (id != null && docId != null && clickCountMap.containsKey(docId)) {
                                            final Integer count = clickCountMap.get(docId);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/credentials-handling/pass-credentials-to-external-tool-via-stdin/groovy/build.gradle

            standardInput = new ByteArrayInputStream("$loginCredentials.username\n$loginCredentials.password".getBytes())
        }
    }
    
    tasks.register('doAuthenticated') {
        dependsOn(login)
        doLast {
            println 'Doing authenticated task'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 521 bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyLockingHandler.java

     *
     * @since 4.8
     */
    public interface DependencyLockingHandler {
    
        /**
         * Convenience method for doing:
         *
         * configurations.all {
         *     resolutionStrategy.activateDependencyLocking()
         * }
         *
         */
        void lockAllConfigurations();
    
        /**
         * Convenience method for doing:
         *
         * configurations.all {
         *     resolutionStrategy.deactivateDependencyLocking()
         * }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tutorial/stopExecutionException/kotlin/build.gradle.kts

    val compile by tasks.registering {
        doLast {
            println("We are doing the compile.")
        }
    }
    
    compile {
        doFirst {
            // Here you would put arbitrary conditions in real life.
            if (true) {
                throw StopExecutionException()
            }
        }
    }
    tasks.register("myTask") {
        dependsOn(compile)
        doLast {
            println("I am not affected")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 380 bytes
    - Viewed (0)
  10. src/net/rlimit_js.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build js
    
    package net
    
    // concurrentThreadsLimit returns the number of threads we permit to
    // run concurrently doing DNS lookups.
    func concurrentThreadsLimit() int {
    	return 500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 346 bytes
    - Viewed (0)
Back to top