Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 230 for Grande (0.1 sec)

  1. src/syscall/zerrors_windows.go

    	EPROTO - APPLICATION_ERROR:          "protocol error",
    	EPROTONOSUPPORT - APPLICATION_ERROR: "protocol not supported",
    	EPROTOTYPE - APPLICATION_ERROR:      "protocol wrong type for socket",
    	ERANGE - APPLICATION_ERROR:          "numerical result out of range",
    	EREMCHG - APPLICATION_ERROR:         "remote address changed",
    	EREMOTE - APPLICATION_ERROR:         "object is remote",
    	EREMOTEIO - APPLICATION_ERROR:       "remote I/O error",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 10K bytes
    - Viewed (0)
  2. src/path/filepath/match.go

    			negated := false
    			if len(chunk) > 0 && chunk[0] == '^' {
    				negated = true
    				chunk = chunk[1:]
    			}
    			// parse all ranges
    			match := false
    			nrange := 0
    			for {
    				if len(chunk) > 0 && chunk[0] == ']' && nrange > 0 {
    					chunk = chunk[1:]
    					break
    				}
    				var lo, hi rune
    				if lo, chunk, err = getEsc(chunk); err != nil {
    					return "", false, err
    				}
    				hi = lo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/measure/AmountTest.groovy

            0        | Fruit.apples  | "0 apples"
            1        | Fruit.apples  | "1 apple"
            0.032    | Fruit.apples  | "0.032 apples"
            2.367722 | Fruit.apples  | "2.368 apples"
            3        | Fruit.apples  | "1 orange"
            5        | Fruit.apples  | "1 grapefruit"
            4        | Fruit.apples  | "1.333 oranges"
            1000     | Fruit.oranges | "600 grapefruit"
            42       | Fruit.oranges | "25.2 grapefruit"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. src/syscall/tables_js.go

    	"EROFS":           EROFS,
    	"EMLINK":          EMLINK,
    	"EPIPE":           EPIPE,
    	"ENAMETOOLONG":    ENAMETOOLONG,
    	"ENOSYS":          ENOSYS,
    	"EDQUOT":          EDQUOT,
    	"EDOM":            EDOM,
    	"ERANGE":          ERANGE,
    	"EDEADLK":         EDEADLK,
    	"ENOLCK":          ENOLCK,
    	"ENOTEMPTY":       ENOTEMPTY,
    	"ELOOP":           ELOOP,
    	"ENOMSG":          ENOMSG,
    	"EIDRM":           EIDRM,
    	"ECHRNG":          ECHRNG,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 19.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/ImmutableGraph.java

       *
       * <pre>{@code
       * static final ImmutableGraph<Country> COUNTRY_ADJACENCY_GRAPH =
       *     GraphBuilder.undirected()
       *         .<Country>immutable()
       *         .putEdge(FRANCE, GERMANY)
       *         .putEdge(FRANCE, BELGIUM)
       *         .putEdge(GERMANY, BELGIUM)
       *         .addNode(ICELAND)
       *         .build();
       * }</pre>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 01 16:30:37 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/prepare-quantize-dynamic-range.mlir

    // RUN: tf-opt %s -tfl-prepare-quantize-dynamic-range | FileCheck %s
    // RUN: tf-opt %s -tfl-prepare-quantize-dynamic-range="enable-dynamic-range-per-channel-quantization=false" | FileCheck --check-prefix=PerTensor %s
    // RUN: tf-opt %s -tfl-prepare-quantize-dynamic-range="enable-float16-quantization" | FileCheck --check-prefix=Float16 %s
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/tokens.go

    	_For         // for
    	_Func        // func
    	_Go          // go
    	_Goto        // goto
    	_If          // if
    	_Import      // import
    	_Interface   // interface
    	_Map         // map
    	_Package     // package
    	_Range       // range
    	_Return      // return
    	_Select      // select
    	_Struct      // struct
    	_Switch      // switch
    	_Type        // type
    	_Var         // var
    
    	// empty line comment to exclude it from .String
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. src/runtime/testdata/testexithooks/testexithooks.go

    	exithook.Add(exithook.Hook{F: f1})
    	exithook.Add(exithook.Hook{F: f2})
    	// no explicit call to os.Exit
    }
    
    func testGoodExit() {
    	f1 := func() { println("apple") }
    	f2 := func() { println("orange") }
    	exithook.Add(exithook.Hook{F: f1})
    	exithook.Add(exithook.Hook{F: f2})
    	// explicit call to os.Exit
    	os.Exit(0)
    }
    
    func testBadExit() {
    	f1 := func() { println("blog") }
    	f2 := func() { println("blix") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/graph/ImmutableGraph.java

       *
       * <pre>{@code
       * static final ImmutableGraph<Country> COUNTRY_ADJACENCY_GRAPH =
       *     GraphBuilder.undirected()
       *         .<Country>immutable()
       *         .putEdge(FRANCE, GERMANY)
       *         .putEdge(FRANCE, BELGIUM)
       *         .putEdge(GERMANY, BELGIUM)
       *         .addNode(ICELAND)
       *         .build();
       * }</pre>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 01 16:30:37 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  10. pkg/ctrlz/assets/static/css/fontawesome-all-5.0.6.css

    erflow:visible;position:static;width:auto}@font-face{font-family:Font Awesome\ 5 Brands;font-style:normal;font-weight:400;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:Font Awesome\ 5 Brands}@font-...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 33.9K bytes
    - Viewed (0)
Back to top