Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for for1 (0.21 sec)

  1. src/syscall/exec_unix.go

    // have to allocate the descriptor and then mark it close-on-exec.
    // If a fork happens between those two events, the child's exec
    // will inherit an unwanted file descriptor.
    //
    // This lock solves that race: the create new fd/mark close-on-exec
    // operation is done holding ForkLock for reading, and the fork itself
    // is done holding ForkLock for writing. At least, that's the idea.
    // There are some complications.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/LICENSE

    OpenSSL License and the original SSLeay license apply to the toolkit. See below
    for the actual license texts. Actually both licenses are BSD-style Open Source
    licenses. In case of any license issues related to OpenSSL please contact
    ******@****.***.
    
    The following are Google-internal bug numbers where explicit permission from
    some authors is recorded for use of their work. (This is purely for our own
    record keeping.)
      27287199
      27287880
      27287883
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

            this.fork = fork;
        }
    
        /**
         * Returns options for running the compiler in a child process.
         */
        @Nested
        public ForkOptions getForkOptions() {
            return forkOptions;
        }
    
        /**
         * Sets options for running the compiler in a child process.
         */
        public void setForkOptions(ForkOptions forkOptions) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                        <div class="form-inline col-sm-9">
                                            <la:errors property="popularWord"/>
                                            <div class="form-check">
                                                <la:checkbox styleId="popularWord" styleClass="form-check-input" property="popularWord"/>
                                                <label for="popularWord" class="form-check-label">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 16 12:54:35 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/user/admin_user_edit.jsp

                                        </div>
                                    </div>
                                    <div class="form-group row">
                                        <label for="confirmPassword" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.user_confirm_password"/></label>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 14 12:15:45 UTC 2020
    - 31.4K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp

                                    <div class="form-group row">
                                        <label for="doc.label" class="col-sm-3 text-sm-right col-form-label">label</label>
                                        <div class="col-sm-9">
                                            <la:errors property="doc.label"/>
                                            <la:textarea styleId="doc.label" property="doc.label" styleClass="form-control"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 24.9K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/webconfig/admin_webconfig_edit.jsp

                                        <label for="urls" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.urls"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="urls"/>
                                            <la:textarea styleId="urls" property="urls" styleClass="form-control"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 15.9K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/fileconfig/admin_fileconfig_edit.jsp

                                        <label for="maxAccessCount" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.max_access_count"/></label>
                                        <div class="form-inline col-sm-9">
                                            <la:errors property="maxAccessCount"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 15.3K bytes
    - Viewed (0)
  9. src/syscall/exec_plan9.go

    	fd := make([]int, len(attr.Files))
    	nextfd = len(attr.Files)
    	for i, ufd := range attr.Files {
    		if nextfd < int(ufd) {
    			nextfd = int(ufd)
    		}
    		fd[i] = int(ufd)
    	}
    	nextfd++
    
    	if envv != nil {
    		clearenv = RFCENVG
    	}
    
    	// About to call fork.
    	// No more allocation or calls of non-assembly functions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_edit.jsp

                                        <div class="form-inline col-sm-9">
                                            <la:errors property="jobLogging"/>
                                            <div class="form-check">
                                                <la:checkbox styleId="jobLogging" styleClass="form-check-input" property="jobLogging"/>
                                                <label for="jobLogging" class="form-check-label">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 16 12:54:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top