Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Po (0.02 sec)

  1. hack/update-translations.sh

        mv "${TMP}" "${PO_FILE}"
      done
    fi
    
    if [[ "${generate_mo}" == "true" ]]; then
      echo "Generating .po and .mo files"
      for x in "${TRANSLATIONS}"/*/*/*/*.po; do
        msgcat -s "${x}" > tmp.po
        mv tmp.po "${x}"
        echo "generating .mo file for: ${x}"
        msgfmt "${x}" -o "$(dirname "${x}")/$(basename "${x}" .po).mo"
      done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 03:48:42 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tpu_partitioned_op_conversion.mlir

      // CHECK: [[PO:%.*]] = "tf.TPUPartitionedOutputV2"([[ARG]])
      // CHECK-SAME: _XlaSharding = "123"
      // CHECK-SAME: partition_dims = [1, 2, 1]
      "tf.TPUReplicateMetadata"() {num_cores_per_replica = 2 : i64, num_replicas = 2 : i64} : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 20 17:43:51 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. docs/pl/docs/tutorial/index.md

    # Samouczek
    
    Ten samouczek pokaże Ci, krok po kroku, jak używać większości funkcji **FastAPI**.
    
    Każda część korzysta z poprzednich, ale jest jednocześnie osobnym tematem. Możesz przejść bezpośrednio do każdego rozdziału, jeśli szukasz rozwiązania konkretnego problemu.
    
    Samouczek jest tak zbudowany, żeby służył jako punkt odniesienia w przyszłości.
    
    Możesz wracać i sprawdzać dokładnie to czego potrzebujesz.
    
    ## Wykonywanie kodu
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. samples/open-telemetry/als/README.md

    Run the following script to request `httpbin` from `fortio`.
    
    ```bash
    kubectl exec -it $(kubectl get po | grep fortio | awk '{print $1}') -- fortio curl httpbin:8000/ip
    ```
    
    Run the following script to checkout ALS output.
    
    ```bash
    kubectl logs $(kubectl get po -n observability | grep otel | awk '{print $1}') -n observability
    ```
    
    ## Cleanup
    
    ```bash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tpu_partitioned_op_conversion.cc

            op.get_XlaShardingAttr());
        op->replaceAllUsesWith(pi);
      } else {
        auto po = builder.create<TF::TPUPartitionedOutputV2Op>(
            op.getLoc(), op.getResultTypes(), op.getOperand(),
            builder.getI64ArrayAttr(partition_dims), op.get_XlaShardingAttr());
        op->replaceAllUsesWith(po);
      }
    
      return success();
    }
    
    void TPUPartitionedOpConversionPass::runOnOperation() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/numberlines.go

    			lp.last = line
    			change = true
    		}
    		if change {
    			ranges[i] = lp
    		}
    	}
    
    	// Visit in reverse post order so that all non-loop predecessors come first.
    	for j := len(po) - 1; j >= 0; j-- {
    		b := po[j]
    		// Find the first interesting position and check to see if it differs from any predecessor
    		firstPos := src.NoXPos
    		firstPosIndex := -1
    		if b.Pos.IsStmt() != src.PosNotStmt {
    			note(b.Pos)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 21:26:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/flagalloc.go

    	// analysis, so it can be much simpler than a full analysis.
    	end := f.Cache.allocValueSlice(f.NumBlocks())
    	defer f.Cache.freeValueSlice(end)
    	po := f.postorder()
    	for n := 0; n < 2; n++ {
    		for _, b := range po {
    			// Walk values backwards to figure out what flag
    			// value we want in the flag register at the start
    			// of the block.
    			var flag *Value
    			for _, c := range b.ControlValues() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverter.java

            map.put("パ", new String[] { "pa" });
            map.put("ピ", new String[] { "pi" });
            map.put("プ", new String[] { "pu" });
            map.put("ペ", new String[] { "pe" });
            map.put("ポ", new String[] { "po" });
    
            map.put("ヴァ", new String[] { "va" });
            map.put("ヴィ", new String[] { "vi" });
            map.put("ヴ", new String[] { "vu" });
            map.put("ヴェ", new String[] { "ve" });
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top