Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for Raisin (0.15 sec)

  1. src/net/http/cookiejar/example_test.go

    		if cookie, err := r.Cookie("Flavor"); err != nil {
    			http.SetCookie(w, &http.Cookie{Name: "Flavor", Value: "Chocolate Chip"})
    		} else {
    			cookie.Value = "Oatmeal Raisin"
    			http.SetCookie(w, cookie)
    		}
    	}))
    	defer ts.Close()
    
    	u, err := url.Parse(ts.URL)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	// All users of cookiejar should import "golang.org/x/net/publicsuffix"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 03:47:00 UTC 2016
    - 1.5K bytes
    - Viewed (0)
  2. src/math/cmplx/asin.go

    // w = -i clog( iz + csqrt( 1 - z ) ).
    //
    // casin(z) = -i casinh(iz)
    //
    // ACCURACY:
    //
    //                      Relative error:
    // arithmetic   domain     # trials      peak         rms
    //    DEC       -10,+10     10100       2.1e-15     3.4e-16
    //    IEEE      -10,+10     30000       2.2e-14     2.7e-15
    // Larger relative error can be observed for z near zero.
    // Also tested by csin(casin(z)) = z.
    
    // Asin returns the inverse sine of x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/plugins/form-validator/lang/fr.js

    obligatoire",requiredFields:"Vous n'avez pas rempli tous les champs",badTime:"Vous n'avez pas saisi l'heure correctement",badEmail:"Vous n'avez pas saisi une adresse e-mail valide",badTelephone:"Vous n'avez pas saisi un numéro de téléphone valide",badSecurityAnswer:"Vous avez saisi une mauvaise réponse à la question de sécurité",badDate:"Vous n'avez pas saisi une date correcte",lengthBadStart:"Votre saisie doit comporter entre ",lengthBadEnd:" caractères",lengthTooLongStart:"Vous avez saisi une réponse...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  4. src/math/asin.go

    	They are implemented by computing the arctangent
    	after appropriate range reduction.
    */
    
    // Asin returns the arcsine, in radians, of x.
    //
    // Special cases are:
    //
    //	Asin(±0) = ±0
    //	Asin(x) = NaN if x < -1 or x > 1
    func Asin(x float64) float64 {
    	if haveArchAsin {
    		return archAsin(x)
    	}
    	return asin(x)
    }
    
    func asin(x float64) float64 {
    	if x == 0 {
    		return x // special case
    	}
    	sign := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess/fi/stopwords.txt

    # https://github.com/apache/lucene-solr/blob/master/lucene/analysis/common/src/resources/org/apache/lucene/analysis/snowball/finnish_stop.txt
    olla
    olen
    olet
    on
    olemme
    olette
    ovat
    ole
    oli
    olisi
    olisit
    olisin
    olisimme
    olisitte
    olisivat
    olit
    olin
    olimme
    olitte
    olivat
    ollut
    olleet
    en
    et
    ei
    emme
    ette
    eivät
    minä
    minun
    minut
    minua
    minussa
    minusta
    minuun
    minulla
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. tests/test_multipart_installation.py

        with pytest.raises(RuntimeError, match=multipart_incorrect_install_error):
            app = FastAPI()
    
            @app.post("/")
            async def root(f: bytes = File()):
                return f  # pragma: nocover
    
    
    def test_incorrect_multipart_installed_multi_form(monkeypatch):
        monkeypatch.delattr("multipart.multipart.parse_options_header", raising=False)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 13 23:38:22 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  7. docs/tr/docs/tutorial/cookie-params.md

    === "Python 3.10+ non-Annotated"
    
        !!! tip "İpucu"
            Mümkün mertebe 'Annotated' sınıfını kullanmaya çalışın.
    
        ```Python hl_lines="1"
        {!> ../../../docs_src/cookie_params/tutorial001_py310.py!}
        ```
    
    === "Python 3.8+ non-Annotated"
    
        !!! tip "İpucu"
            Mümkün mertebe 'Annotated' sınıfını kullanmaya çalışın.
    
        ```Python hl_lines="3"
        {!> ../../../docs_src/cookie_params/tutorial001.py!}
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 14 19:35:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testcarchive/testdata/main3.c

    	int verbose;
    	struct sigaction sa;
    	int i;
    	struct timespec ts;
    	int res;
    	pthread_t tid;
    
    	verbose = argc > 2;
    	setvbuf(stdout, NULL, _IONBF, 0);
    
    	if (verbose) {
    		printf("raising SIGPIPE\n");
    	}
    
    	// Test that the Go runtime handles SIGPIPE, even if we installed
    	// a non-default SIGPIPE handler before the runtime initializes.
    	ProvokeSIGPIPE();
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testcshared/testdata/main5.c

    	if (handle == NULL) {
    		fprintf(stderr, "%s\n", dlerror());
    		exit(EXIT_FAILURE);
    	}
    
    	// At this point there should not be a Go signal handler
    	// installed for SIGIO.
    
    	if (verbose) {
    		fprintf(stderr, "raising SIGIO\n");
    	}
    
    	if (raise(SIGIO) < 0) {
    		die("raise");
    	}
    
    	if (verbose) {
    		fprintf(stderr, "waiting for sigioSeen\n");
    	}
    
    	// Wait until the signal has been delivered.
    	i = 0;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. src/time/internal_test.go

    func disablePlatformSources() (undo func()) {
    	platformZoneSources = nil
    	return func() {
    		platformZoneSources = origPlatformZoneSources
    	}
    }
    
    var Interrupt = interrupt
    var DaysIn = daysIn
    
    func empty(arg any, seq uintptr, delta int64) {}
    
    // Test that a runtimeTimer with a period that would overflow when on
    // expiration does not throw or cause other timers to hang.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top