Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 200 for edata (0.1 sec)

  1. hack/update-generated-api-compatibility-data.sh

    rm -f staging/src/k8s.io/api/testdata/HEAD/*.{yaml,json,pb}
    rm -f staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/*.{yaml,json,pb}
    
    # UPDATE_COMPATIBILITY_FIXTURE_DATA=true regenerates fixture data if needed.
    # -run //HEAD only runs the test cases comparing against testdata for HEAD.
    # We suppress the output because we are expecting to have changes.
    # We suppress the test failure that occurs when there are changes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. build-logic/lifecycle/src/main/kotlin/gradlebuild.teamcity-import-test-data.gradle.kts

    import org.gradle.tooling.events.task.TaskSuccessResult
    
    /**
     * This is a workaround for https://youtrack.jetbrains.com/issue/TW-76894.
     *
     * In short, we want TeamCity to be aware of the test execution data (which tests are executed and how long they are),
     * even when the Test task is `FROM-CACHE` or `UP-TO-DATE`. This build service will output a service message to instruct TeamCity to read JUnit test result XMLs.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 06 09:11:39 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. tests/fuzz/crd_roundtrip_fuzzer.go

    	// when the object hasn't changed.
    	if !bytes.Equal(data, secondData) {
    		panic(fmt.Sprintf("%v: serialization is not stable: %s\n", name, printer.Sprintf("%#v", object)))
    	}
    
    	// decode (deserialize) the encoded data back into an object
    	obj2, err := runtime.Decode(codec, data)
    	if err != nil {
    		panic(fmt.Sprintf("%v: %v\nCodec: %#v\nData: %s\nSource: %#v\n", name, err, codec, dataAsString(data), printer.Sprintf("%#v", object)))
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/arg-multi-data-type-with-subtype.pbtxt

    # Test the handling of the input data types. In particular, if the data type
    # for an input graph node is specified via command line options, use it.
    # otherwise, use the data type of the node in the graph.
    
    node {
      name: "p"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_INT32
        }
      }
      attr {
        key: "shape"
        value {
          shape {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 18:11:42 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. pkg/apis/autoscaling/v2beta2/defaults_test.go

    func roundTrip(t *testing.T, obj runtime.Object) runtime.Object {
    	data, err := runtime.Encode(legacyscheme.Codecs.LegacyCodec(SchemeGroupVersion), obj)
    	if err != nil {
    		t.Errorf("%v\n %#v", err, obj)
    		return nil
    	}
    	obj2, err := runtime.Decode(legacyscheme.Codecs.UniversalDecoder(), data)
    	if err != nil {
    		t.Errorf("%v\nData: %s\nSource: %#v", err, string(data), obj)
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. pilot/pkg/xds/bench_test.go

    	}
    	extra := path.Join("testdata", "benchmarks", configName+".extra.yaml")
    	inputYAML := buf.String()
    	if _, err := os.Stat(extra); err == nil {
    		bdata, err := os.ReadFile(extra)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		inputYAML += "\n---\n" + yml.SplitYamlByKind(string(bdata))[gvk.EnvoyFilter.Kind]
    	}
    
    	configs, badKinds, err := crd.ParseInputs(inputYAML)
    	if err != nil {
    		t.Fatalf("failed to read config: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. pkg/apis/networking/v1/defaults_test.go

    	t.Helper()
    	data, err := runtime.Encode(legacyscheme.Codecs.LegacyCodec(SchemeGroupVersion), obj)
    	if err != nil {
    		t.Errorf("%v\n %#v", err, obj)
    		return nil
    	}
    	obj2, err := runtime.Decode(legacyscheme.Codecs.UniversalDecoder(), data)
    	if err != nil {
    		t.Errorf("%v\nData: %s\nSource: %#v", err, string(data), obj)
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 10:48:05 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/macho.go

    			ml := newMachoLoad(ctxt.Arch, LC_DYLD_INFO_ONLY, 10)
    			ml.data[0] = uint32(linkoff)      // rebase off
    			ml.data[1] = uint32(s1)           // rebase size
    			ml.data[2] = uint32(linkoff + s1) // bind off
    			ml.data[3] = uint32(s2)           // bind size
    			ml.data[4] = 0                    // weak bind off
    			ml.data[5] = 0                    // weak bind size
    			ml.data[6] = 0                    // lazy bind off
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/test.go

    var _, _ = C.abs(0)
    
    // issue 14838
    
    func test14838(t *testing.T) {
    	data := []byte{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}
    	cData := C.CBytes(data)
    	defer C.free(cData)
    
    	if C.check_cbytes((*C.char)(cData), C.size_t(len(data))) == 0 {
    		t.Fatalf("mismatched data: expected %v, got %v", data, (*(*[10]byte)(unsafe.Pointer(cData)))[:])
    	}
    }
    
    // issue 17065
    
    var sink C.int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  10. src/html/template/css_test.go

    		{"#000", "#000"},
    		{"#48f", "#48f"},
    		{"#123456", "#123456"},
    		{"U+00-FF, U+980-9FF", "U+00-FF, U+980-9FF"},
    		{"color: red", "color: red"},
    		{"<!--", "ZgotmplZ"},
    		{"-->", "ZgotmplZ"},
    		{"<![CDATA[", "ZgotmplZ"},
    		{"]]>", "ZgotmplZ"},
    		{"</style", "ZgotmplZ"},
    		{`"`, "ZgotmplZ"},
    		{`'`, "ZgotmplZ"},
    		{"`", "ZgotmplZ"},
    		{"\x00", "ZgotmplZ"},
    		{"/* foo */", "ZgotmplZ"},
    		{"//", "ZgotmplZ"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:38:18 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top