Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for for3 (1.04 sec)

  1. src/cmd/internal/dwarf/dwarf.go

    // into a platform-appropriate concrete form. Existing concrete/real
    // DW_FORM values are left untouched. For the moment the only
    // pseudo-form is DW_FORM_udata_pseudo, which gets expanded to
    // DW_FORM_data4 on Darwin and DW_FORM_udata everywhere else. See
    // issue #31459 for more context.
    func expandPseudoForm(form uint8) uint8 {
    	// Is this a pseudo-form?
    	if form != DW_FORM_udata_pseudo {
    		return form
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  2. 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)
  3. LICENSE

          exercising permissions granted by this License.
    
          "Source" form shall mean the preferred form for making modifications,
          including but not limited to software source code, documentation
          source, and configuration files.
    
          "Object" form shall mean any form resulting from mechanical
          transformation or translation of a Source form, including but
          not limited to compiled object code, generated documentation,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. 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)
  5. cmd/storage-rest-server.go

    		return
    	}
    	origvolume := r.Form.Get(storageRESTOrigVolume)
    	volume := r.Form.Get(storageRESTVolume)
    	filePath := r.Form.Get(storageRESTFilePath)
    	versionID := r.Form.Get(storageRESTVersionID)
    	readData, err := strconv.ParseBool(r.Form.Get(storageRESTReadData))
    	if err != nil {
    		s.writeErrorResponse(w, err)
    		return
    	}
    	healing, err := strconv.ParseBool(r.Form.Get(storageRESTHealing))
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java

        }
    
        @Execute
        @Secured({ ROLE })
        public HtmlResponse delete(final DeleteForm form) {
            validate(form, messages -> {}, () -> asHtml(path_AdminPlugin_AdminPluginJsp));
            verifyToken(() -> asHtml(path_AdminPlugin_AdminPluginJsp));
            final Artifact artifact = new Artifact(form.name, form.version, null);
            deleteArtifact(artifact);
    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. 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. src/database/sql/convert_test.go

    	switch form {
    	default:
    		return fmt.Errorf("unknown form %d", form)
    	case 1, 2:
    		d.form = form
    		d.neg = negative
    		return nil
    	case 0:
    	}
    	d.form = form
    	d.neg = negative
    	d.exponent = exponent
    
    	// This isn't strictly correct, as the extra bytes could be all zero,
    	// ignore this for this test.
    	if len(coefficient) > 16 {
    		return fmt.Errorf("coefficient too large")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 20:23:22 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top