Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,708 for ControlZ (0.26 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v2/testdata/invalid_executor.mlir

      func.func @main() {
        tf_executor.graph {
          %control = tf_executor.island {
            tf_executor.yield
          }
          tf_executor.fetch %control : !tf_executor.control
        }
        tf_executor.graph {
          %control = tf_executor.island {
            tf_executor.yield
          }
          tf_executor.fetch %control : !tf_executor.control
        }
        return
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 15:25:49 UTC 2023
    - 457 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/switchn.mlir

            "tf_executor.yield"(%0) : (tensor<f32>) -> ()
          }) : (!tf_executor.control) -> (tensor<f32>, !tf_executor.control)
          %outputs_6, %control_7 = "tf_executor.island"() ({
            %0 = "tf.Identity"(%outputs_0#1) {device = ""} : (tensor<*xi32>) -> tensor<*xi32>
            "tf_executor.yield"(%0) : (tensor<*xi32>) -> ()
          }) : () -> (tensor<*xi32>, !tf_executor.control)
          %outputs_8, %control_9 = "tf_executor.island"(%control_7) ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 14:25:57 UTC 2022
    - 4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/arguments_test.go

    			name: "override an argument from the base",
    			base: []kubeadmapi.Arg{
    				{Name: "admission-control", Value: "NamespaceLifecycle"},
    				{Name: "allow-privileged", Value: "true"},
    			},
    			overrides: []kubeadmapi.Arg{
    				{Name: "admission-control", Value: "NamespaceLifecycle,LimitRanger"},
    			},
    			expected: []string{
    				"--admission-control=NamespaceLifecycle,LimitRanger",
    				"--allow-privileged=true",
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

    // TensorFlow Executor Type Constraint
    //===----------------------------------------------------------------------===//
    
    // Predicate to verify all control inputs appear after any non-control inputs.
    def ControlOperandsAfterAllData :
        PredOpTrait<"all control inputs must appear after any non-control input",
                    CPred<"succeeded(VerifyControlOperandsAfterAllData(&$_op))">>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/update_control_dependencies.mlir

        tf_executor.fetch
      }
      func.return
    }
    
    // -----
    
    // Tests nested replica and parallel execute groups.
    func.func @nested_replica_and_parallel_execute_groups() {
      tf_executor.graph {
        // CHECK: %[[control:.*]] = tf_executor.island wraps "tf.A"()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 03 18:12:49 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    func NewControlPlaneJoinPhase() workflow.Phase {
    	return workflow.Phase{
    		Name:    "control-plane-join",
    		Short:   "Join a machine as a control plane instance",
    		Example: controlPlaneJoinExample,
    		Phases: []workflow.Phase{
    			{
    				Name:           "all",
    				Short:          "Join a machine as a control plane instance",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/MultisetsImmutableEntryTest.java

        assertEquals(control(NE, 1), entry(NE, 1));
        assertFalse(control(NE, 1).equals(entry(NE, 2)));
        assertFalse(entry(NE, 1).equals(control("bar", 1)));
        assertFalse(entry(NE, 1).equals(new Object()));
        assertFalse(entry(NE, 1).equals(null));
      }
    
      public void testHashCode() {
        assertEquals(control("foo", 1).hashCode(), entry("foo", 1).hashCode());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/upgrade/node/controlplane.go

    		data, ok := c.(Data)
    		if !ok {
    			return errors.New("control-plane phase invoked with an invalid data struct")
    		}
    
    		// if this is not a control-plane node, this phase should not be executed
    		if !data.IsControlPlaneNode() {
    			fmt.Println("[upgrade] Skipping phase. Not a control plane node.")
    			return nil
    		}
    
    		// otherwise, retrieve all the info required for control plane upgrade
    		cfg := data.InitCfg()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/init/markcontrolplane.go

    )
    
    var (
    	markControlPlaneExample = cmdutil.Examples(`
    		# Applies control-plane label and taint to the current node, functionally equivalent to what executed by kubeadm init.
    		kubeadm init phase mark-control-plane --config config.yaml
    
    		# Applies control-plane label and taint to a specific node
    		kubeadm init phase mark-control-plane --node-name myNode
    		`)
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/user/admin_user_edit.jsp

                                                <la:text styleId="name" property="name" styleClass="form-control"/>
                                            </c:if>
                                            <c:if test="${crudMode==2}">
                                                ${f:h(name)}
                                                <la:hidden property="name" styleClass="form-control"/>
                                            </c:if>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 14 12:15:45 UTC 2020
    - 31.4K bytes
    - Viewed (0)
Back to top