Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 228 for Advance (0.12 sec)

  1. src/cmd/compile/internal/syntax/scanner.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements scanner, a lexical tokenizer for
    // Go source. After initialization, consecutive calls of
    // next advance the scanner one token at a time.
    //
    // This file, source.go, tokens.go, and token_string.go are self-contained
    // (`go tool compile scanner.go source.go tokens.go token_string.go` compiles)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/range.go

    		// Assign variables on the LHS of the range statement. Use *hp to get the element.
    		e := ir.NewStarExpr(base.Pos, hp)
    		e.SetBounded(true)
    		a := rangeAssign2(nrange, hv1, e)
    		body = append(body, a)
    
    		// Advance pointer for next iteration of the loop.
    		// This reads from hp and writes to hu.
    		huVal = ir.NewConvExpr(base.Pos, ir.OCONVNOP, types.Types[types.TUNSAFEPTR], hp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/merge_control_flow.cc

    void MergeControlFlowPass::runOnOperation() {
      ModuleOp module = getOperation();
      auto result = module.walk([&](tf_device::ClusterOp cluster) {
        OptimizeIfRegions(&cluster.GetBody(), module);
        return WalkResult::advance();
      });
      if (result.wasInterrupted()) return signalPassFailure();
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>> CreateMergeControlFlowPass() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  4. docs/en/data/external_links.yml

    fastapi-configuration-with-confz-90949c14ea12 title: Seamless FastAPI Configuration with ConfZ - author: Kaustubh Gupta author_link: https://medium.com/@kaustubhgupta1828/ link: https://levelup.gitconnected.com/5-advance-features-of-fastapi-you-should-try-7c0ac7eebb3e title: 5 Advanced Features of FastAPI You Should Try - author: Kaustubh Gupta author_link: https://medium.com/@kaustubhgupta1828/ link: https://www.analyticsvidhya.com/blog/2021/06/deploying-ml-models-as-api-using-fastapi-and-heroku/...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. src/database/sql/driver/driver.go

    // the driver to advance to the next result set.
    type RowsNextResultSet interface {
    	Rows
    
    	// HasNextResultSet is called at the end of the current result set and
    	// reports whether there is another result set after the current one.
    	HasNextResultSet() bool
    
    	// NextResultSet advances the driver to the next result set even
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

          argnum_and_convolutions[arg_num].emplace_back(conv2d, block_size);
          argnum_num_users[arg_num] = num_users;
          return WalkResult::interrupt();
        }
        return WalkResult::advance();
      });
      if (!conv2d_result.wasInterrupted()) {
        return;
      }
    
      // Iterate through block argument and its convolution users. Space to depth
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_sharding_identification_pass.cc

            if (failed(
                    IdentifyXlaShardingForTPUComputation(&builder, cluster_func))) {
              return WalkResult::interrupt();
            }
            return WalkResult::advance();
          });
      if (result.wasInterrupted()) return signalPassFailure();
    }
    
    }  // namespace
    
    std::unique_ptr<mlir::OperationPass<ModuleOp>>
    CreateTPUShardingIdentificationPass() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  8. cluster/gce/config-test.sh

    NODE_LOCAL_SSDS=${NODE_LOCAL_SSDS:-0}
    NODE_LABELS=${KUBE_NODE_LABELS:-}
    WINDOWS_NODE_LABELS=${WINDOWS_NODE_LABELS:-}
    NODE_LOCAL_SSDS_EPHEMERAL=${NODE_LOCAL_SSDS_EPHEMERAL:-}
    # Turning GRPC based Konnectivity testing on id advance of
    # removing the SSHTunnel code.
    export KUBE_ENABLE_EGRESS_VIA_KONNECTIVITY_SERVICE=true
    export PREPARE_KONNECTIVITY_SERVICE="${KUBE_ENABLE_KONNECTIVITY_SERVICE:-true}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

              op->emitOpError() << "failed to convert to functional form";
              return WalkResult::interrupt();
            }
          }
          return WalkResult::advance();
        });
    
        if (result.wasInterrupted()) return signalPassFailure();
      }
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateTFRegionControlFlowToFunctional() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/term/terminal.go

    	t.cursorX = t.cursorX % t.termWidth
    
    	if places > 0 && t.cursorX == 0 {
    		// Normally terminals will advance the current position
    		// when writing a character. But that doesn't happen
    		// for the last character in a line. However, when
    		// writing a character (except a new line) that causes
    		// a line wrap, the position will be advanced two
    		// places.
    		//
    		// So, if we are stopping at the end of a line, we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
Back to top