Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for for3 (0.09 sec)

  1. src/internal/types/testdata/check/lookup2.go

    	_ = x.form // ERROR "x.form undefined (cannot refer to unexported field form)"
    	_ = x.forM // ERROR "x.forM undefined (type *big.Float has no field or method forM)"
    }
    
    func _() {
    	_ = ast.File{Name: nil} // OK
    	_ = ast.File{NamE /* ERROR "unknown field NamE in struct literal of type ast.File, but does have Name" */ : nil}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    	index uint16
    }
    
    // functions dispatchable per form
    type lookupFunc func(b input, i int) Properties
    
    // formInfo holds Form-specific functions and tables.
    type formInfo struct {
    	form                     Form
    	composing, compatibility bool // form type
    	info                     lookupFunc
    	nextMain                 iterFunc
    }
    
    var formTable = []*formInfo{{
    	form:          NFC,
    	composing:     true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  9. src/mime/multipart/formdata_test.go

    	for i := 0; i < numFiles; i++ {
    		name := fmt.Sprint(i)
    		if got := len(form.File[name]); got != 1 {
    			t.Fatalf("form.File[%q] has %v entries, want 1", name, got)
    		}
    		fh := form.File[name][0]
    		file, err := fh.Open()
    		if err != nil {
    			t.Fatalf("form.File[%q].Open() = %v", name, err)
    		}
    		if distinct {
    			if _, ok := file.(*os.File); !ok {
    				t.Fatalf("form.File[%q].Open: %T, want *os.File", name, file)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    	index uint16
    }
    
    // functions dispatchable per form
    type lookupFunc func(b input, i int) Properties
    
    // formInfo holds Form-specific functions and tables.
    type formInfo struct {
    	form                     Form
    	composing, compatibility bool // form type
    	info                     lookupFunc
    	nextMain                 iterFunc
    }
    
    var formTable = []*formInfo{{
    	form:          NFC,
    	composing:     true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top