Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for for3 (0.08 sec)

  1. src/main/webapp/WEB-INF/view/admin/dict/kuromoji/admin_dict_kuromoji_edit.jsp

                                            <la:text styleId="token" property="token" styleClass="form-control"/>
                                        </div>
                                    </div>
                                    <div class="form-group row">
                                        <label for="segmentation" class="col-sm-3 text-sm-right col-form-label"><la:message
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 8.6K bytes
    - Viewed (0)
  2. src/math/big/floatmarsh.go

    	oldMode := z.mode
    
    	b := buf[1]
    	z.mode = RoundingMode((b >> 5) & 7)
    	z.acc = Accuracy((b>>3)&3) - 1
    	z.form = form((b >> 1) & 3)
    	z.neg = b&1 != 0
    	z.prec = byteorder.BeUint32(buf[2:])
    
    	if z.form == finite {
    		if len(buf) < 10 {
    			return errors.New("Float.GobDecode: buffer too small for finite form float")
    		}
    		z.exp = int32(byteorder.BeUint32(buf[6:]))
    		z.mant = z.mant.setBytes(buf[10:])
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/runtime/traceback_system_test.go

    func TestTracebackSystem(t *testing.T) {
    	testenv.MustHaveExec(t)
    	if runtime.GOOS == "android" {
    		t.Skip("Can't read source code for this file on Android")
    	}
    
    	// Fork+exec the crashing process.
    	exe, err := os.Executable()
    	if err != nil {
    		t.Fatal(err)
    	}
    	cmd := testenv.Command(t, exe)
    	cmd.Env = append(cmd.Environ(), entrypointVar+"=crash")
    	var stdout, stderr bytes.Buffer
    	cmd.Stdout = &stdout
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. src/crypto/elliptic/elliptic.go

    //
    // Deprecated: for ECDH, use the GenerateKey methods of the [crypto/ecdh] package;
    // for ECDSA, use the GenerateKey function of the crypto/ecdsa package.
    func GenerateKey(curve Curve, rand io.Reader) (priv []byte, x, y *big.Int, err error) {
    	N := curve.Params().N
    	bitSize := N.BitLen()
    	byteLen := (bitSize + 7) / 8
    	priv = make([]byte, byteLen)
    
    	for x == nil {
    		_, err = io.ReadFull(rand, priv)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. src/encoding/encoding.go

    // marshal itself into a binary form.
    //
    // MarshalBinary encodes the receiver into a binary form and returns the result.
    type BinaryMarshaler interface {
    	MarshalBinary() (data []byte, err error)
    }
    
    // BinaryUnmarshaler is the interface implemented by an object that can
    // unmarshal a binary representation of itself.
    //
    // UnmarshalBinary must be able to decode the form generated by MarshalBinary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:43:37 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AnnotationProcessingSmokeTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.smoketests
    
    import org.gradle.testkit.runner.GradleRunner
    
    class AnnotationProcessingSmokeTest extends AbstractSmokeTest {
    
        def 'project lombok works when options.fork=#fork'() {
            given:
            buildFile << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/profile/ProfileAction.java

        public HtmlResponse changePassword(final ProfileForm form) {
            final VaErrorHook toIndexPage = () -> {
                form.clearSecurityInfo();
                return asIndexHtml();
            };
            validatePasswordForm(form, toIndexPage);
            final String username = getUserBean().map(FessUserBean::getUserId).get();
            try {
                userService.changePassword(username, form.newPassword);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. src/net/http/cgi/cgi_main.go

    			return
    		}
    		if eb, ok := req.Form["exact-body"]; ok {
    			io.WriteString(rw, eb[0])
    			return
    		}
    		if req.FormValue("write-forever") == "1" {
    			io.Copy(rw, neverEnding('a'))
    			for {
    				time.Sleep(5 * time.Second) // hang forever, until killed
    			}
    		}
    		fmt.Fprintf(rw, "test=Hello CGI-in-CGI\n")
    		for k, vv := range req.Form {
    			for _, v := range vv {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/cmd/internal/dwarf/putvarabbrevgen_test.go

    			start = n
    			end = n
    		} else {
    			end.then = n
    			end = n
    		}
    	}
    	for _, stmt := range body {
    		switch stmt := stmt.(type) {
    		case *ast.ExprStmt:
    			if x, _ := stmt.X.(*ast.CallExpr); x != nil {
    				funstr := exprToString(x.Fun)
    				if funstr == "putattr" {
    					form, _ := x.Args[3].(*ast.Ident)
    					if form == nil {
    						t.Fatalf("%s invalid use of putattr", fset.Position(x.Pos()))
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/labels_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1
    
    import (
    	"reflect"
    	"testing"
    )
    
    func TestCloneSelectorAndAddLabel(t *testing.T) {
    	labels := map[string]string{
    		"foo1": "bar1",
    		"foo2": "bar2",
    		"foo3": "bar3",
    	}
    	matchExpressions := []LabelSelectorRequirement{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 11:09:05 UTC 2018
    - 2.6K bytes
    - Viewed (0)
Back to top