Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 160 for data_ (0.04 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/sidecar_template.golden.yaml

                - mountPath: /var/run/secrets/istio/kubernetes
                  name: kube-ca-cert
                {{- end }}
                - mountPath: /var/lib/istio/data
                  name: istio-data
                {{ if (isset .ObjectMeta.Annotations `sidecar.istio.io/bootstrapOverride`) }}
                - mountPath: /etc/istio/custom-bootstrap
                  name: custom-bootstrap-volume
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 86.9K bytes
    - Viewed (0)
  2. tensorflow/c/kernels_test.cc

        // Test if the C API returns expected strings.
        TF_StringView sv = TF_GetOpKernelName(ctx);
        EXPECT_STREQ(sv.data, "TestGetKernelInfoNode");
    
        sv = TF_GetOpKernelRequestedInput(ctx, 0);
        EXPECT_STREQ(sv.data, "input1");
    
        sv = TF_GetOpKernelRequestedInput(ctx, 1);
        EXPECT_STREQ(sv.data, "input2");
    
        TF_InputRange_Args args;
        args.status = s;
        TF_InputRange(ctx, "input3", &args);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inputs/hello.yaml.4.template.gen.yaml

            {{- if eq .Values.global.pilotCertProvider "kubernetes" }}
            - mountPath: /var/run/secrets/istio/kubernetes
              name: kube-ca-cert
            {{- end }}
            - mountPath: /var/lib/istio/data
              name: istio-data
            {{ if (isset .ObjectMeta.Annotations `sidecar.istio.io/bootstrapOverride`) }}
            - mountPath: /etc/istio/custom-bootstrap
              name: custom-bootstrap-volume
            {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inputs/merge-probers.yaml.43.template.gen.yaml

            {{- if eq .Values.global.pilotCertProvider "kubernetes" }}
            - mountPath: /var/run/secrets/istio/kubernetes
              name: kube-ca-cert
            {{- end }}
            - mountPath: /var/lib/istio/data
              name: istio-data
            {{ if (isset .ObjectMeta.Annotations `sidecar.istio.io/bootstrapOverride`) }}
            - mountPath: /etc/istio/custom-bootstrap
              name: custom-bootstrap-volume
            {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inputs/default.template.gen.yaml

            {{- if eq .Values.global.pilotCertProvider "kubernetes" }}
            - mountPath: /var/run/secrets/istio/kubernetes
              name: kube-ca-cert
            {{- end }}
            - mountPath: /var/lib/istio/data
              name: istio-data
            {{ if (isset .ObjectMeta.Annotations `sidecar.istio.io/bootstrapOverride`) }}
            - mountPath: /etc/istio/custom-bootstrap
              name: custom-bootstrap-volume
            {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  6. src/encoding/xml/marshal_test.go

    	{
    		Value:         &Data{},
    		ExpectXML:     `<Data></Data>`,
    		UnmarshalOnly: true,
    	},
    	{
    		Value:         &Data{Bytes: []byte{}, Custom: MyBytes{}, Attr: []byte{}},
    		ExpectXML:     `<Data Attr=""><Bytes></Bytes><Custom></Custom></Data>`,
    		UnmarshalOnly: true,
    	},
    
    	// Check that []byte works, including named []byte types.
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  7. pkg/apis/certificates/validation/validation_test.go

    			},
    		},
    		"CSR with invalid request data should fail": {
    			csr: capi.CertificateSigningRequest{
    				ObjectMeta: validObjectMeta,
    				Spec: capi.CertificateSigningRequestSpec{
    					Usages:     validUsages,
    					SignerName: validSignerName,
    					Request:    []byte("invalid data"),
    				},
    			},
    			errs: field.ErrorList{
    				field.Invalid(specPath.Child("request"), []byte("invalid data"), "PEM block type must be CERTIFICATE REQUEST"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  8. cmd/xl-storage_test.go

    		t.Fatalf("Unable to create volume %s: %v", volume, err)
    	}
    	data := make([]byte, 8*1024)
    	if _, err = io.ReadFull(rand.Reader, data); err != nil {
    		t.Fatalf("Unable to create generate random data: %v", err)
    	}
    	if err = xlStorage.AppendFile(context.Background(), volume, object, data); err != nil {
    		t.Fatalf("Unable to create object: %v", err)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  9. cmd/batch-handlers.go

    		}
    		return err
    	}
    	if len(data) == 0 {
    		// Seems to be empty create a new batchRepl object.
    		return nil
    	}
    	if len(data) <= 4 {
    		return fmt.Errorf("%s: no data", ri.JobType)
    	}
    	// Read header
    	switch binary.LittleEndian.Uint16(data[0:2]) {
    	case format:
    	default:
    		return fmt.Errorf("%s: unknown format: %d", ri.JobType, binary.LittleEndian.Uint16(data[0:2]))
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        if (metadata->name == tflite::kModelControlDependenciesMetadataKey) {
          const std::vector<uint8_t>& data = model->buffers[metadata->buffer]->data;
          if (!ParseModelControlDependencies(
                  reinterpret_cast<const char*>(data.data()), data.size(),
                  &model_control_dependencies)) {
            return emitError(base_loc,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
Back to top