Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 782 for doBind (1.97 sec)

  1. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            systemHelper.setForceStop(false);
            assertFalse(systemHelper.isForceStop());
        }
    
        public void test_generateDocId() {
            final String docId = systemHelper.generateDocId(Collections.emptyMap());
            assertNotNull(docId);
            assertEquals(32, docId.length());
        }
    
        public void test_abbreviateLongText() {
            assertEquals("", systemHelper.abbreviateLongText(""));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. cluster/kube-up.sh

    # limitations under the License.
    
    # Bring up a Kubernetes cluster.
    #
    # If the full release name (gs://<bucket>/<release>) is passed in then we take
    # that directly.  If not then we assume we are doing development stuff and take
    # the defaults in the release config.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    if [ -f "${KUBE_ROOT}/cluster/env.sh" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 17 15:03:34 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cover_coverpkg_with_init.txt

    # Testcase inspired by issue #58770, intended to verify that we're
    # doing the right thing when running "go test -coverpkg=./... ./..."
    # on a collection of packages where some have init functions and some
    # do not, some have tests and some do not.
    
    [short] skip
    [!GOEXPERIMENT:coverageredesign] skip
    
    # Verify correct statements percentages. We have a total of 10
    # statements in the packages matched by "./..."; package "a" (for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 30 12:33:44 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. manifests/charts/ztunnel/templates/daemonset.yaml

                drop:
                - ALL
                add: # See https://man7.org/linux/man-pages/man7/capabilities.7.html
                - NET_ADMIN # Required for TPROXY and setsockopt
                - SYS_ADMIN # Required for `setns` - doing things in other netns
                - NET_RAW # Required for RAW/PACKET sockets, TPROXY
              readOnlyRootFilesystem: true
              runAsGroup: 1337
              runAsNonRoot: false
              runAsUser: 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/tasks/Delete.java

         */
        public void setDelete(Object target) {
            this.paths.setFrom(target);
        }
    
        /**
         * Returns if symlinks should be followed when doing a delete.
         *
         * @return true if symlinks will be followed.
         */
        @Input
        public boolean isFollowSymlinks() {
            return followSymlinks;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 4K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

                jsonPath = JsonPath.from(response.asString());
            }
    
            for (String docId : docIds) {
                given().contentType("application/json").delete(getEsUrl() + "/" + DOC_INDEX_NAME + "/" + docId);
            }
        }
    
        protected static List<Map<String, Object>> readCrawlingInfo(final String configId) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. testing/performance/docs/performance-bisect.md

    or by having a new failing test, given the current slow feedback cycle, it can
    be difficult to track the exact commit that triggered the regression.
    
    The most convenient way to find the commit is to use `git bisect`. Before doing so
    you need to
     1. identify the test that exposes the regression
     2. set up the test to search only for the regression you are looking after to speed up the search for the regression.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. src/math/big/natdiv.go

    calls. While in general the number of recursive calls can change the time
    analysis, in this case doing three calls does not change the analysis:
    
    	T(n) = 3T(n/2) + O(n) + O(n^log₂3)
    
    ends up being T(n) = O(n^log₂3). Because the Karatsuba multiplication taking
    time O(n^log₂3) is itself doing 3 half-sized recursions, doing three for the
    division does not hurt the asymptotic performance. Of course, it is likely
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/README.adoc

    ====
    include::sample[dir="kotlin",files="settings.gradle.kts[]"]
    include::sample[dir="groovy",files="settings.gradle[]"]
    ====
    
    After doing so, you can reference any tasks in the included builds directly on the command line in order to execute.
    
    ```
    gradle :my-app:app:run
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/software/build-init/build.gradle.kts

        compileOnly(libs.eclipseSisuPlexus) {
            exclude(module = "cdi-api") // To respect the Maven exclusion
        }
        compileOnly(libs.maven3Compat)
    
        // 3 dependencies below are recommended as implementation but doing so adds them to the distribution
        // TODO Check why we reference them and if so, why they don't need to be in the distribution
        compileOnly(libs.maven3Artifact)
        compileOnly(libs.mavenResolverApi)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top