Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 978 for kProtobuf (0.17 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

                                         ::std::ostream* os);
    
    // For selecting which printer to use when a given type has neither <<
    // nor PrintTo().
    enum TypeKind {
      kProtobuf,              // a protobuf type
      kConvertibleToInteger,  // a type implicitly convertible to BiggestInt
                              // (e.g. a named or unnamed enum type)
      kOtherType              // anything else
    };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

                                         ::std::ostream* os);
    
    // For selecting which printer to use when a given type has neither <<
    // nor PrintTo().
    enum TypeKind {
      kProtobuf,              // a protobuf type
      kConvertibleToInteger,  // a type implicitly convertible to BiggestInt
                              // (e.g. a named or unnamed enum type)
      kOtherType              // anything else
    };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. src/runtime/pprof/protobuf.go

    // license that can be found in the LICENSE file.
    
    package pprof
    
    // A protobuf is a simple protocol buffer encoder.
    type protobuf struct {
    	data []byte
    	tmp  [16]byte
    	nest int
    }
    
    func (b *protobuf) varint(x uint64) {
    	for x >= 128 {
    		b.data = append(b.data, byte(x)|0x80)
    		x >>= 7
    	}
    	b.data = append(b.data, byte(x))
    }
    
    func (b *protobuf) length(tag int, len int) {
    	b.varint(uint64(tag)<<3 | 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 20:09:46 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/protobuf/protobuf.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package protobuf
    
    import (
    	"bytes"
    	"fmt"
    	"io"
    	"net/http"
    	"reflect"
    
    	"github.com/gogo/protobuf/proto"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 13:38:23 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  5. releasenotes/notes/gogo-protobuf.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: extensibility
    issue:
    - 26751
    
    upgradeNotes:
    - title: gogo/protobuf library migration
      content: |
        The `istio.io/api` and `istio.io/client-go` libraries have switched from using the [gogo/protobuf](https://github.com/gogo/protobuf)
        to using the [golang/protobuf](https://github.com/golang/protobuf) library for API types.
        
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 25 00:08:22 UTC 2022
    - 775 bytes
    - Viewed (0)
  6. hack/_update-generated-protobuf-dockerized.sh

    kube::golang::setup_env
    
    GOPROXY=off go install k8s.io/code-generator/cmd/go-to-protobuf
    GOPROXY=off go install k8s.io/code-generator/cmd/go-to-protobuf/protoc-gen-gogo
    
    # requires the 'proto' tag to build (will remove when ready)
    # searches for the protoc-gen-gogo extension in the output directory
    # satisfies import of github.com/gogo/protobuf/gogoproto/gogo.proto and the
    # core Google protobuf types
    PATH="${KUBE_ROOT}/_output/bin:${PATH}" \
      go-to-protobuf \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. .idea/tools.protobuf.xml

    Nikolay Krasko <******@****.***> 1506102691 +0300
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Sep 25 17:41:53 UTC 2017
    - 239 bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/resource/v1alpha2/types.go

    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// Spec describes where resources for the Pod are needed.
    	Spec PodSchedulingContextSpec `json:"spec" protobuf:"bytes,2,name=spec"`
    
    	// Status describes where resources for the Pod can be allocated.
    	// +optional
    	Status PodSchedulingContextStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
  9. pkg/config/schema/resource/schema_test.go

    				Plural:       "Empties",
    				ProtoPackage: "github.com/gogo/protobuf/types",
    				Proto:        "google.protobuf.Empty",
    			},
    			expectError: false,
    		},
    		{
    			name: "invalid kind",
    			b: Builder{
    				Kind:         "",
    				Plural:       "Empties",
    				ProtoPackage: "github.com/gogo/protobuf/types",
    				Proto:        "google.protobuf.Empty",
    			},
    			expectError: true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta1/types.go

    	// replicas is the number of Pods created by the StatefulSet controller.
    	Replicas int32 `json:"replicas" protobuf:"varint,2,opt,name=replicas"`
    
    	// readyReplicas is the number of pods created by this StatefulSet controller with a Ready Condition.
    	ReadyReplicas int32 `json:"readyReplicas,omitempty" protobuf:"varint,3,opt,name=readyReplicas"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
Back to top