Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for varr (0.04 sec)

  1. pilot/pkg/config/kube/crd/conversion_test.go

    			}
    			assert.Equal(t, &tt.cfg, got)
    		})
    	}
    }
    
    func TestParseInputs(t *testing.T) {
    	if varr, _, err := ParseInputs(""); len(varr) > 0 || err != nil {
    		t.Errorf(`ParseInput("") => got %v, %v, want nil, nil`, varr, err)
    	}
    	if _, _, err := ParseInputs("a"); err == nil {
    		t.Error(`ParseInput("a") => got no error`)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crd/conversion.go

    		}
    
    		if withValidate {
    			if _, err := s.ValidateConfig(*cfg); err != nil {
    				return nil, nil, fmt.Errorf("configuration is invalid: %v", err)
    			}
    		}
    
    		varr = append(varr, *cfg)
    	}
    
    	return varr, others, nil
    }
    
    // ParseInputs reads multiple documents from `kubectl` output and checks with
    // the schema. It also returns the list of unrecognized kinds as the second
    // response.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/ingress/conversion_test.go

    	if err != nil {
    		t.Fatalf("failed to read input yaml file: %v", err)
    	}
    	var varr []runtime.Object
    	for _, yml := range strings.Split(string(data), "\n---") {
    		obj, _, err := scheme.Codecs.UniversalDeserializer().Decode([]byte(yml), nil, nil)
    		if err != nil {
    			return nil, err
    		}
    		varr = append(varr, obj)
    	}
    
    	return varr, nil
    }
    
    func TestConversion(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 18:20:34 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/entity.go

    	"∱":                           "\u2231",
    	"⌭":                          "\u232d",
    	"⇓":                            "\u21d3",
    	"⥥":                            "\u2965",
    	"†":                          "\u2020",
    	"ℸ":                          "\u2138",
    	"↓":                            "\u2193",
    	"‐":                            "\u2010",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  5. internal/s3select/sql/value.go

    	if a.IsMissing() || v.IsMissing() {
    		// If one is, both must be.
    		return boolCompare(op, v.IsMissing(), a.IsMissing())
    	}
    
    	// Check array values
    	aArr, aOK := a.ToArray()
    	vArr, vOK := v.ToArray()
    	if aOK && vOK {
    		return arrayCompare(op, aArr, vArr)
    	}
    
    	isNumeric := v.isNumeric() && a.isNumeric()
    	if isNumeric {
    		intV, ok1i := v.ToInt()
    		intA, ok2i := a.ToInt()
    		if ok1i && ok2i {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 20:31:19 UTC 2022
    - 20.2K bytes
    - Viewed (0)
  6. src/html/entity.go

    //
    // Note that the HTML5 list is larger than the HTML4 list at
    // http://www.w3.org/TR/html4/sgml/entities.html
    var entity map[string]rune
    
    // HTML entities that are two unicode codepoints.
    var entity2 map[string][2]rune
    
    // populateMapsOnce guards calling populateMaps.
    var populateMapsOnce sync.Once
    
    // populateMaps populates entity and entity2.
    func populateMaps() {
    	entity = map[string]rune{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/fake_session.cc

      // Create 2 resources and initialize them with dummy values.
      TF_CHECK_OK(device->resource_manager()->Create(
          container, "var1", new tensorflow::Var(tensorflow::DataType::DT_FLOAT)));
      TF_CHECK_OK(device->resource_manager()->Create(
          container, "var2", new tensorflow::Var(tensorflow::DataType::DT_FLOAT)));
    }
    
    Status FakeSession::Create(const tensorflow::GraphDef& graph) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. src/mdo/reader-stax.vm

            entities.put("larr", "\u2190");
            entities.put("uarr", "\u2191");
            entities.put("rarr", "\u2192");
            entities.put("darr", "\u2193");
            entities.put("harr", "\u2194");
            entities.put("crarr", "\u21b5");
            entities.put("lArr", "\u21d0");
            entities.put("uArr", "\u21d1");
            entities.put("rArr", "\u21d2");
            entities.put("dArr", "\u21d3");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/integtests/ApplicationIntegrationSpec.groovy

                    if (!"value1".equals(System.getProperty("var1"))) {
                        throw new RuntimeException("Expected system property not specified (var1)");
                    }
                    if (!"value2".equals(System.getProperty("var2"))) {
                        throw new RuntimeException("Expected system property not specified (var2)");
                    }
                }
            }
            '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/hoist_loop_invariant.mlir

    // CHECK-NEXT:  "tf.AssignVariableOp"([[VAR]], [[RES_1]])
    // CHECK:       "tf.Yield"([[RES_3]], [[RES_4]])
    func.func @readvariableop_is_not_hoisted_if_not_readonly(%arg0: tensor<i32>, %arg1: tensor<i32>) -> (tensor<i32>, tensor<i32>) {
      %cst_0 = "tf.Const"() { value = dense<1> : tensor<i32> } : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 22 17:12:02 UTC 2023
    - 14.2K bytes
    - Viewed (0)
Back to top