Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for con2 (0.11 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    	nodeController.recorder = testutil.NewFakeRecorder()
    	nodeController.getPodsAssignedToNode = fakeGetPodsAssignedToNode(fakeNodeHandler.Clientset)
    
    	getStatus := func(cond *v1.NodeCondition) *v1.ConditionStatus {
    		if cond == nil {
    			return nil
    		}
    		return &cond.Status
    	}
    
    	tests := []struct {
    		name string
    		node *v1.Node
    	}{
    		{
    			name: "Status true",
    			node: &v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

            uint32_t opcode_index =
                GetOpcodeIndex(op_name, tflite::BuiltinOperator_STABLEHLO_WHILE);
    
            auto& cond = vhlo_op.getCond();
            int32_t cond_subgraph_index = UnnamedRegionToSubgraph(
                &cond, tflite::BuiltinOperator_STABLEHLO_WHILE);
            if (cond_subgraph_index < 0) return std::nullopt;
    
            auto& body = vhlo_op.getBody();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller_test.go

    					t.Errorf("Expected completion condition.  Got %#v", actual.Status.Conditions)
    				}
    			} else {
    				if cond := hasTrueCondition(actual); cond != nil {
    					t.Errorf("Got condition %s, want none", *cond)
    				}
    			}
    			if tc.expectedCondition == nil && tc.suspend && len(actual.Status.Conditions) != 0 {
    				t.Errorf("Unexpected conditions %v", actual.Status.Conditions)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/horizontal_test.go

    	}
    
    	// copy to a v1 slice
    	resv1 := make([]autoscalingv2.HorizontalPodAutoscalerCondition, len(resv2))
    	for i, cond := range resv2 {
    		resv1[i] = autoscalingv2.HorizontalPodAutoscalerCondition{
    			Type:   autoscalingv2.HorizontalPodAutoscalerConditionType(cond.Type),
    			Status: cond.Status,
    			Reason: cond.Reason,
    		}
    	}
    
    	return resv1
    }
    
    func alwaysReady() bool { return true }
    
    type fakeResource struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    server # if want to see them you need change global.logging.level with cni:debug logLevel: debug # Configuration file to insert istio-cni plugin configuration # by default this will be the first file found in the cni-conf-dir # Example # cniConfFileName: 10-calico.conflist # CNI bin and conf dir override settings # defaults: cniBinDir: "" # Auto-detected based on version; defaults to /opt/cni/bin. cniConfDir: /etc/cni/net.d cniConfFileName: "" # This directory must exist on the node, if it does not, consult...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&comp;":                            "\u2201",
    	"&compfn;":                          "\u2218",
    	"&complement;":                      "\u2201",
    	"&complexes;":                       "\u2102",
    	"&cong;":                            "\u2245",
    	"&congdot;":                         "\u2a6d",
    	"&conint;":                          "\u222e",
    	"&copf;":                            "\U0001d554",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  7. src/html/entity.go

    		"comp;":                            '\U00002201',
    		"compfn;":                          '\U00002218',
    		"complement;":                      '\U00002201',
    		"complexes;":                       '\U00002102',
    		"cong;":                            '\U00002245',
    		"congdot;":                         '\U00002A6D',
    		"conint;":                          '\U0000222E',
    		"copf;":                            '\U0001D554',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.cc

    // While loop functions -------------------------------------------------------
    
    namespace {
    
    #if !defined(IS_MOBILE_PLATFORM) && !defined(IS_SLIM_BUILD)
    
    // Creates a placeholder representing an input to the cond or body graph.
    // TODO(skyewm): remove these from final graph
    bool CreateInput(const TF_Output& parent_input, TF_Graph* g, const char* name,
                     TF_Output* input, TF_Status* status) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

          tf_device.return %2 : tensor<2xi32>
        }
    
        func.return %1 : tensor<2xi32>
      }
    
      // Tests extraction of a single outside compiled cluster inside a tf.WhileRegion op cond.
    
      // CHECK-LABEL: func @outside_compiled_ops_inside_tf_while_cond
      func.func @outside_compiled_ops_inside_tf_while_cond(%arg0: tensor<2xi32>) -> tensor<2xi32> {
        %0 = "tf.A"(%arg0) : (tensor<2xi32>) -> tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  10. go.sum

    github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
    github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM=
    github.com/sourcegraph/conc v0.3.0 h1:OQTbbt6P72L20UqAkXXuLOj79LfEanQ+YQFNpLA9ySo=
    github.com/sourcegraph/conc v0.3.0/go.mod h1:Sdozi7LEKbFPqYX2/J+iBAM6HpqSLTASQIKqDmF7Mt0=
    github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
Back to top