Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 195 for extreme (0.24 sec)

  1. src/math/all_test.go

    		if f := Mod(vffmodSC[i][0], vffmodSC[i][1]); !alike(fmodSC[i], f) {
    			t.Errorf("Mod(%g, %g) = %g, want %g", vffmodSC[i][0], vffmodSC[i][1], f, fmodSC[i])
    		}
    	}
    	// verify precision of result for extreme inputs
    	if f := Mod(5.9790119248836734e+200, 1.1258465975523544); 0.6447968302508578 != f {
    		t.Errorf("Remainder(5.9790119248836734e+200, 1.1258465975523544) = %g, want 0.6447968302508578", f)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/query.go

    			// one. However, replacing the last compatible version while
    			// simultaneously expecting to upgrade implicitly to a +incompatible
    			// version seems like an extreme enough corner case to ignore for now.
    
    			if !strings.HasSuffix(v, "+incompatible") {
    				lastCompatible = v
    			} else if lastCompatible != "" {
    				// If the latest compatible version is allowed and has a go.mod file,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    [[sec:interoperability]]
    == Interoperability
    
    When mixing languages in your build logic, you may have to cross language boundaries.
    An extreme example would be a build that uses tasks and plugins that are implemented in Java, Groovy and Kotlin, while also using both Kotlin DSL and Groovy DSL build scripts.
    
    Quoting the Kotlin reference documentation:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. docs/de/docs/advanced/openapi-callbacks.md

    Sie könnten eine API mit einer *Pfadoperation* erstellen, die einen Request an eine *externe API* auslösen könnte, welche von jemand anderem erstellt wurde (wahrscheinlich derselbe Entwickler, der Ihre API *verwenden* würde).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:17:23 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. src/testdata/Isaac.Newton-Opticks.txt

    (red, yellow, green, blue, violet) in order (that is, by the extreme
    red, by the limit of red and yellow in the middle of the orange, by the
    limit of yellow and green, by the limit of green and blue, by the limit
    of blue and violet in the middle of the indigo, and by the extreme
    violet) are to one another very nearly as the sixth lengths of a Chord
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  6. docs/de/docs/resources/index.md

    # Ressourcen
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 11:22:17 UTC 2024
    - 79 bytes
    - Viewed (0)
  7. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    where the Ring is successively made by the limits of the five principal Colours (red, yellow, green, blue, violet) in order (that is, by the extreme red, by the limit of red and yellow in the middle of the orange, by the limit of yellow and green, by the limit of green and blue, by the limit of blue and violet in the middle of the indigo, and by the extreme violet) are to one another very nearly as the sixth lengths of a Chord which found the Notes in a sixth Major, _sol_, _la_, _mi_, _fa_, _sol_,...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/metadata.md

    * `externalDocs`: ein `dict`, das externe Dokumentation beschreibt mit:
         * `description`: ein `str` mit einer kurzen Beschreibung für die externe Dokumentation.
         * `url` (**erforderlich**): ein `str` mit der URL für die externe Dokumentation.
    
    ### Metadaten für Tags erstellen
    
    Versuchen wir das an einem Beispiel mit Tags für `users` und `items`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:25:38 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractor.java

            final PDEmbeddedFilesNameTreeNode efTree = namesDictionary.getEmbeddedFiles();
            if (efTree == null) {
                return;
            }
    
            try {
                final Map<String, PDComplexFileSpecification> embeddedFileNames = efTree.getNames();
                if (embeddedFileNames != null) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. src/os/wait_unimp.go

    // It does not actually call p.Wait.
    // This version is used on systems that do not implement waitid,
    // or where we have not implemented it yet. Note that this is racy:
    // a call to Process.Signal can in an extremely unlikely case send a
    // signal to the wrong process, see issue #13987.
    func (p *Process) blockUntilWaitable() (bool, error) {
    	return false, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 13:16:52 UTC 2023
    - 831 bytes
    - Viewed (0)
Back to top