Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for table_1 (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    ----
    rootProject.name = "root"
    ----
    
    [[sec:standard_settings_properties]]
    === Standard `Settings` properties
    
    The `Settings` object exposes a standard set of properties in your settings script.
    
    The following table lists a few commonly used properties:
    
    [%autowidth.stretch]
    |===
    | Name | Description
    
    | `buildCache`
    | The build cache configuration.
    
    | `plugins`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. .github/bot_config.yml

       
       **1. Installing **TensorFlow-GPU** (TF) prebuilt binaries**
       
       
       Make sure you are using compatible TF and CUDA versions.
       Please refer following TF version and CUDA version compatibility table.
       
       | TF  | CUDA |
       
       | :-------------: | :-------------: |
       
       | 2.5.0  | 11.2 |
       
       | 2.4.0  | 11.0 |
       
       | 2.1.0 - 2.3.0  | 10.1 |
       
       | 1.13.1 - 2.0  | 10.0  |
       
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 04:55:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. pkg/kubelet/util/swap/swap_util.go

    	procSwapsContent = bytes.TrimSpace(procSwapsContent) // extra trailing \n
    	procSwapsStr := string(procSwapsContent)
    	procSwapsLines := strings.Split(procSwapsStr, "\n")
    
    	// If there is more than one line (table headers) in /proc/swaps then swap is enabled
    	klog.InfoS("Swap is on", "/proc/swaps contents", procSwapsStr)
    	return len(procSwapsLines) > 1
    }
    
    // IsSwapOn detects whether swap in enabled on the system by inspecting
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 10:07:06 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_outline_tpu_island.cc

        : public impl::TPUBridgeExecutorIslandOutliningPassBase<
              TPUBridgeExecutorIslandOutlining> {
      void runOnOperation() override;
    };
    
    // Move FuncOp referenced by `symbol_ref` from one symbol table to another.
    void MoveFuncOp(FlatSymbolRefAttr &symbol_ref, SymbolTable &from,
                    SymbolTable &to) {
      if (to.lookup<func::FuncOp>(symbol_ref.getValue())) return;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx.cc

      module.erase();
      return func_def;
    }
    
    Status TFRDecomposeContext::DecomposeGraph(mlir::ModuleOp user_module) {
      // Call the decompose passes by using the external symbol table.
      if (failed(pm_.run(user_module))) {
        return errors::Internal("Failed to run the decompose passes.");
      }
      return absl::OkStatus();
    }
    
    // Constructor of the decompose context.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 29 02:34:43 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. src/html/template/doc.go

    details necessary to understand escaping contexts and error messages. Most users
    will not need to understand these details.
    
    # Contexts
    
    Assuming {{.}} is `O'Reilly: How are <i>you</i>?`, the table below shows
    how {{.}} appears when used in the context to the left.
    
    	Context                          {{.}} After
    	{{.}}                            O'Reilly: How are &lt;i&gt;you&lt;/i&gt;?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. src/runtime/mksizeclasses.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    // Generate tables for small malloc size classes.
    //
    // See malloc.go for overview.
    //
    // The size classes are chosen so that rounding an allocation
    // request up to the next size class wastes at most 12.5% (1.125x).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. src/runtime/mklockrank.go

    		}
    	}
    	fmt.Fprintf(w, `)
    
    // lockRankLeafRank is the rank of lock that does not have a declared rank,
    // and hence is a leaf lock.
    const lockRankLeafRank lockRank = 1000
    `)
    
    	// Create string table.
    	fmt.Fprintf(w, `
    // lockNames gives the names associated with each of the above ranks.
    var lockNames = []string{
    `)
    	for _, rank := range topo {
    		if !isPseudo(rank) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top