Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 782 for doBind (0.1 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStopState.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.server;
    
    /**
     * Indicates the state of the daemon when it stops doing work.
     */
    public enum DaemonStopState {
        /**
         * Daemon was stopped cleanly and all work stopped.
         */
        Clean,
        /**
         * Daemon could not be stopped cleanly and some work may still be running.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:45:11 UTC 2024
    - 953 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/credentials-handling/pass-credentials-to-external-tool-via-stdin/kotlin/build.gradle.kts

        }
    }
    
    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
    - 551 bytes
    - Viewed (0)
  3. src/main/config/es/fess_log_click_log.json

    {
      "fess_log.click_log" : {
        "aliases" : { },
        "mappings" : {
          "click_log" : {
            "properties" : {
              "urlId" : {
                "type" : "keyword"
              },
              "docId" : {
                "type" : "keyword"
              },
              "order" : {
                "type" : "integer"
              },
              "queryId" : {
                "type" : "keyword"
              },
              "queryRequestedAt" : {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jun 30 05:55:50 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/readme-templates/common-summary.adoc.template

    == Publish a Build Scan
    
    The best way to learn more about what your build is doing behind the scenes, is to publish a link:https://scans.gradle.com[build scan].
    To do so, just run Gradle with the `--scan` flag.
    
    [listing.terminal.sample-command]
    ----
    \$ ./gradlew build --scan
    
    BUILD SUCCESSFUL in 0s
    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 997 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/go/GoForm.java

    import java.util.Map;
    
    import javax.validation.constraints.Size;
    
    import org.lastaflute.web.validation.Required;
    
    public class GoForm {
        @Required
        @Size(max = 100)
        public String docId;
    
        @Size(max = 10000)
        @Required
        public String rt;
    
        public String hash;
    
        @Required
        public String queryId;
    
        public Integer order;
    
        // for error page
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. src/runtime/cgo/gcc_signal2_ios_arm64.c

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build lldb
    
    // Used by gcc_signal_darwin_arm64.c when doing the test build during cgo.
    // We hope that for real binaries the definition provided by Go will take precedence
    // and the linker will drop this .o file altogether, which is why this definition
    // is all by itself in its own file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 508 bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationContainerInternal.java

         * would be set if the configuration needed to be created; it will emit an additional deprecation warning when doing this.
         */
        Configuration maybeCreateResolvableUnlocked(String name);
    
        /**
         * If a configuration with the given name already exists, return it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist.jsp

                                                        </button>
                                                        <input type="hidden" name="docId" id="docId"/>
                                                        <button type="submit" class="btn btn-outline-light"
                                                                name="delete"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Sep 24 13:09:22 UTC 2020
    - 20K bytes
    - Viewed (0)
  9. plugin/pkg/admission/antiaffinity/doc.go

    // this admission controller, a user could maliciously or accidentally
    // specify that their pod (once it has scheduled) should block other
    // pods from scheduling into the same zone or some other large
    // topology, essentially DoSing the cluster.  In the future we will
    // address this problem more fully by using quota and priority, but
    // for now this admission controller provides a simple protection, on
    // the assumption that the only legitimate use of hard pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 18:00:06 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/WorkerThreadRegistry.java

         * A worker lease is also granted to the thread. The thread can release this if it needs to, but should reacquire
         * the lease prior to doing any meaningful work.
         *
         * This method is reentrant so that a thread can call this method from the given action.
         *
         * This method blocks until a worker lease is available.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top