Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 534 for sCases (0.2 sec)

  1. cmd/kubeadm/app/cmd/phases/workflow/phase.go

    	"github.com/spf13/pflag"
    )
    
    // Phase provides an implementation of a workflow phase that allows
    // creation of new phases by simply instantiating a variable of this type.
    type Phase struct {
    	// name of the phase.
    	// Phase name should be unique among peer phases (phases belonging to
    	// the same workflow or phases belonging to the same parent phase).
    	Name string
    
    	// Aliases returns the aliases for the phase.
    	Aliases []string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 15:35:58 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-input-shapes.pbtxt

    A. Unique TensorFlower <******@****.***> 1605121757 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/Lifecycle.java

                return Collections.emptyMap();
            }
    
            Map<String, String> phases = new LinkedHashMap<>();
            for (Map.Entry<String, LifecyclePhase> e : lphases.entrySet()) {
                phases.put(e.getKey(), e.getValue().toString());
            }
            return phases;
        }
    
        @Deprecated
        public void setPhases(Map<String, String> phases) {
            Map<String, LifecyclePhase> lphases = new LinkedHashMap<>();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/workflow/doc.go

    		...
    	...
    
    Phases are designed to be reusable across different kubeadm workflows thus allowing
    e.g. reuse of phase certs in both kubeadm init and kubeadm join --control-plane workflows.
    
    Each workflow can be defined and managed using a Runner, that will run all
    the phases according to the given order; nested phases will be executed immediately
    after their parent phase.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 14 23:49:31 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  5. common/config/sass-lint.yml

    #########################
    ## Config for sass-lint
    #########################
    # Linter Options
    options:
      # Don't merge default rules
      merge-default-rules: false
      # Raise an error if more than 50 warnings are generated
      max-warnings: 500
    # Rule Configuration
    rules:
      attribute-quotes:
        - 2
        -
          include: false
      bem-depth: 2
      border-zero: 2
      brace-style: 2
      class-name-format: 2
      clean-import-paths: 2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 11 23:32:21 UTC 2019
    - 2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/shape_inference_with_shape_specialization.mlir

    // RUN: tf-opt %s -tf-shape-inference=input-arg-shapes=1 -verify-diagnostics -split-input-file | FileCheck %s
    // RUN: not tf-opt %s -tf-shape-inference=input-arg-shapes=* 2>&1 | FileCheck --check-prefix=INPUT_ARG_SHAPES_ERROR %s
    // INPUT_ARG_SHAPES_ERROR: Missing input argument shapes
    
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 268 : i32}} {
        // CHECK-LABEL: func.func @main
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/init.go

    	// initialize the workflow runner with the list of phases
    	initRunner.AppendPhase(phases.NewPreflightPhase())
    	initRunner.AppendPhase(phases.NewCertsPhase())
    	initRunner.AppendPhase(phases.NewKubeConfigPhase())
    	initRunner.AppendPhase(phases.NewEtcdPhase())
    	initRunner.AppendPhase(phases.NewControlPlanePhase())
    	initRunner.AppendPhase(phases.NewKubeletStartPhase())
    	initRunner.AppendPhase(phases.NewWaitControlPlanePhase())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/DefaultLifecycleMapping.java

                        Map<String, LifecyclePhase> phases = getLifecyclePhases(lifecycleId);
                        if (phases != null) {
                            Lifecycle lifecycle = new Lifecycle();
    
                            lifecycle.setId(lifecycleId);
                            lifecycle.setLifecyclePhases(phases);
    
                            lifecycleMap.put(lifecycleId, lifecycle);
                        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:46:36 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.cc

        const ArrayRef<double> scales = qtype.getScales();
        // Broadcasting hasn't been implemented yet.
        if (static_cast<int64_t>(scales.size()) != factor_values.getNumElements())
          return {};
        SmallVector<double, 4> new_scales;
        new_scales.reserve(scales.size());
        auto scales_iter = scales.begin();
        for (const auto& f : factor_values) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/reset.go

    	// initialize the workflow runner with the list of phases
    	resetRunner.AppendPhase(phases.NewPreflightPhase())
    	resetRunner.AppendPhase(phases.NewRemoveETCDMemberPhase())
    	resetRunner.AppendPhase(phases.NewCleanupNodePhase())
    
    	// sets the data builder function, that will be used by the runner
    	// both when running the entire workflow or single phases
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 12:26:58 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top