Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,037 for central (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf-functional-to-executor.mlir

    // CHECK: tf_executor.graph {
    // CHECK:   %[[CONTROL:.*]] = tf_executor.island {
    // CHECK:     tf_executor.yield
    // CHECK:   }
    // CHECK:   tf_executor.fetch %[[CONTROL]] : !tf_executor.control
    // CHECK: }
    // CHECK: return
    
    func.func @graph_already() {
      tf_executor.graph {
        %control = tf_executor.island {
          tf_executor.yield
        }
        tf_executor.fetch %control : !tf_executor.control
      }
      func.return
    }
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/check_control_dependencies.mlir

        %island4 = tf_executor.island(%island3) {
          "tf.NoOp"() : () -> ()
          tf_executor.yield
        }
        // expected-warning@+3 {{unexpected control dependency path: path 0, node 2 (intermediate)}}
        // expected-warning@+2 {{unexpected control dependency path: path 1, node 2 (intermediate)}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 16:14:07 UTC 2022
    - 8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v1/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: Tue Oct 03 14:48:16 UTC 2023
    - 457 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/filters/cors_test.go

    					if !reflect.DeepEqual(origin, response.Header.Get("Access-Control-Allow-Origin")) {
    						t.Errorf("Expected %#v, Got %#v", origin, response.Header.Get("Access-Control-Allow-Origin"))
    					}
    
    					if response.Header.Get("Access-Control-Allow-Credentials") == "" {
    						t.Errorf("Expected Access-Control-Allow-Credentials header to be set")
    					}
    
    					if response.Header.Get("Access-Control-Allow-Headers") == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 20 19:15:51 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. 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)
  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. cmd/kubeadm/app/cmd/phases/init/controlplane.go

    )
    
    var (
    	controlPlaneExample = cmdutil.Examples(`
    		# Generates all static Pod manifest files for control plane components,
    		# functionally equivalent to what is generated by kubeadm init.
    		kubeadm init phase control-plane all
    
    		# Generates all static Pod manifest files using options read from a configuration file.
    		kubeadm init phase control-plane all --config config.yaml
    		`)
    
    	controlPlanePhaseProperties = map[string]struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 4.6K bytes
    - Viewed (0)
Back to top