Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for Flatten (1.01 sec)

  1. src/net/http/server.go

    // The former matches paths beginning with "/images/thumbnails/"
    // and the latter will match any other path in the "/images/" subtree.
    //
    // As another example, consider the patterns "GET /" and "/index.html":
    // both match a GET request for "/index.html", but the former pattern
    // matches all other GET and HEAD requests, while the latter matches any
    // request for "/index.html" that uses a different method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    // slice is made and the caller owns the result.
    //
    // Source values of type [time.Time] may be scanned into values of type
    // *time.Time, *interface{}, *string, or *[]byte. When converting to
    // the latter two, [time.RFC3339Nano] is used.
    //
    // Source values of type bool may be scanned into types *bool,
    // *interface{}, *string, *[]byte, or [*RawBytes].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    				if strings.Compare(matchHTTPRoutes[rIndex].Prefix, routePrefix.Prefix) == 0 {
    					continue
    				}
    				// Validate former prefix match does not cover the latter one.
    				if coveredValidation(routePrefix, matchHTTPRoutes[rIndex]) {
    					prefixMatchA := matchHTTPRoutes[rIndex].MatchStr + " of prefix " + matchHTTPRoutes[rIndex].Prefix
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    // The assembly below dispenses with the import symbol and just makes
    // a direct call to _errno.
    //
    // The code below handles indirect refs by redirecting the target of
    // the relocation from "__imp_XYZ" to "XYZ" (since the latter symbol
    // is what the Windows loader is expected to resolve). For direct refs
    // the call is redirected to a stub, where the stub first loads the
    // symbol and then direct an indirect call to that value.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  5. src/cmd/go/internal/load/pkg.go

    			// but close enough to seem redundant.
    			// Unwrap the error so we don't show the pattern.
    			err = matchErr.Err
    		}
    	}
    
    	// Replace (possibly wrapped) *build.NoGoError with *load.NoGoError.
    	// The latter is more specific about the cause.
    	var nogoErr *build.NoGoError
    	if errors.As(err, &nogoErr) {
    		if p.Dir == "" && nogoErr.Dir != "" {
    			p.Dir = nogoErr.Dir
    		}
    		err = &NoGoError{Package: p}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

      }
    }
    
    // -----
    
    // Tests that outputs are correctly merged and fed from TPU computation for
    // tiled output sharding with MAXIMAL sharding for one of the output and OTHER
    // for latter output.
    
    // The following OpSharding is used for TPU computation outputs in below test:
    // Proto debug string:
    //  output 0
    //  type: MAXIMAL
    //  tile_assignment_dimensions: 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/generic.rules

    // See issue 56440.
    // Note there are 2 rules here, one for the pre-decomposed []T result and one for
    // the post-decomposed (*T,int,int) result. (The latter is generated after call expansion.)
    (SliceLen (SelectN [0] (StaticLECall {sym} _ newLen:(Const(64|32)) _ _ _ _))) && isSameCall(sym, "runtime.growslice") => newLen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top