Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for pb (0.04 sec)

  1. staging/src/k8s.io/api/rbac/v1/generated.pb.go

    Tim Hockin <******@****.***> 1703440902 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.pb.go

    Tim Hockin <******@****.***> 1703440902 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 57K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.pb.go

    Tim Hockin <******@****.***> 1703440902 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  4. src/fmt/fmt_test.go

    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			_ = Sprintf("%16f", 1.0)
    		}
    	})
    }
    
    func BenchmarkSprintfEmpty(b *testing.B) {
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			_ = Sprintf("")
    		}
    	})
    }
    
    func BenchmarkSprintfString(b *testing.B) {
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			_ = Sprintf("%s", "hello")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_test.cc

    #include "tensorflow/core/example/example.pb.h"
    #include "tensorflow/core/example/feature.pb.h"
    #include "tensorflow/core/framework/api_def.pb.h"
    #include "tensorflow/core/framework/common_shape_fns.h"
    #include "tensorflow/core/framework/graph.pb.h"
    #include "tensorflow/core/framework/kernel_def.pb.h"
    #include "tensorflow/core/framework/node_def.pb.h"
    #include "tensorflow/core/framework/node_def_util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/validation/validation.go

    func ValidateValidatingAdmissionPolicyBinding(pb *admissionregistration.ValidatingAdmissionPolicyBinding) field.ErrorList {
    	return validateValidatingAdmissionPolicyBinding(pb)
    }
    
    func validateValidatingAdmissionPolicyBinding(pb *admissionregistration.ValidatingAdmissionPolicyBinding) field.ErrorList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  7. src/encoding/xml/marshal_test.go

    	}
    }
    
    func BenchmarkMarshal(b *testing.B) {
    	b.ReportAllocs()
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			Marshal(atomValue)
    		}
    	})
    }
    
    func BenchmarkUnmarshal(b *testing.B) {
    	b.ReportAllocs()
    	xml := []byte(atomXML)
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			Unmarshal(xml, &Feed{})
    		}
    	})
    }
    
    // golang.org/issue/6556
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context_test.go

    	assert.Equal(t, ps.extraServicesForProxy(nil), sets.New("otel.foo.svc.cluster.local"))
    }
    
    func TestWellKnownProvidersCount(t *testing.T) {
    	msg := &meshconfig.MeshConfig_ExtensionProvider{}
    	pb := msg.ProtoReflect()
    	md := pb.Descriptor()
    
    	found := sets.New[string]()
    	for i := 0; i < md.Oneofs().Get(0).Fields().Len(); i++ {
    		found.Insert(string(md.Oneofs().Get(0).Fields().Get(i).Name()))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

    #include "tensorflow/compiler/mlir/tensorflow/utils/dynamic_shape_utils.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/mangling_util.h"
    #include "tensorflow/core/framework/tensor.pb.h"
    #include "tensorflow/core/framework/tensor_shape.pb.h"
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/lite/experimental/remat/metadata_util.h"
    #include "tensorflow/lite/graph_info.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  10. src/net/netip/netip_test.go

    			var p Prefix
    			if err := json.Unmarshal([]byte(orig), &p); err != nil {
    				t.Fatalf("failed to unmarshal: %v", err)
    			}
    
    			pb, err := json.Marshal(p)
    			if err != nil {
    				t.Fatalf("failed to marshal: %v", err)
    			}
    
    			back := string(pb)
    			if orig != back {
    				t.Errorf("Marshal = %q; want %q", back, orig)
    			}
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
Back to top