Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 155 for pb (0.02 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.CronJob.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.Deployment.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. pkg/config/model.go

    	// but also not used by Istio at all.
    	if pb, ok := s.(protoreflect.ProtoMessage); ok {
    		return protoconv.MessageToAnyWithError(pb)
    	}
    
    	// gogo protobuf
    	if pb, ok := s.(gogoproto.Message); ok {
    		gogoany, err := gogotypes.MarshalAny(pb)
    		if err != nil {
    			return nil, err
    		}
    		return &anypb.Any{
    			TypeUrl: gogoany.TypeUrl,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. internal/grid/benchmark_test.go

    				b.ResetTimer()
    				t := time.Now()
    				var ops int64
    				var lat int64
    				b.SetParallelism(par)
    				b.RunParallel(func(pb *testing.PB) {
    					rng := rand.New(rand.NewSource(time.Now().UnixNano()))
    					n := 0
    					var latency int64
    					managers := grid.Managers
    					hosts := grid.Hosts
    					for pb.Next() {
    						// Pick a random manager.
    						src, dst := rng.Intn(len(managers)), rng.Intn(len(managers))
    						if src == dst {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. security/pkg/nodeagent/caclient/providers/citadel/client_test.go

    	authorizationMeta = "authorization"
    )
    
    type mockCAServer struct {
    	pb.UnimplementedIstioCertificateServiceServer
    	Certs         []string
    	Authenticator *security.FakeAuthenticator
    	Err           error
    }
    
    func (ca *mockCAServer) CreateCertificate(ctx context.Context, in *pb.IstioCertificateRequest) (*pb.IstioCertificateResponse, error) {
    	if ca.Authenticator != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 21:03:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. src/testing/benchmark.go

    }
    
    // Next reports whether there are more iterations to execute.
    func (pb *PB) Next() bool {
    	if pb.cache == 0 {
    		n := pb.globalN.Add(pb.grain)
    		if n <= pb.bN {
    			pb.cache = pb.grain
    		} else if n < pb.bN+pb.grain {
    			pb.cache = pb.bN + pb.grain - n
    		} else {
    			return false
    		}
    	}
    	pb.cache--
    	return true
    }
    
    // RunParallel runs a benchmark in parallel.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/python/saved_model_to_tfl_flatbuffer.cc

    #include "tensorflow/core/framework/graph.pb.h"
    #include "tensorflow/core/framework/graph_debug_info.pb.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/lib/core/errors.h"
    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/platform/types.h"
    #include "tensorflow/lite/toco/model_flags.pb.h"
    #include "tensorflow/lite/toco/toco_flags.pb.h"
    #include "tensorflow/lite/toco/types.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

    #include "tensorflow/lite/toco/logging/conversion_log_util.h"
    #include "tensorflow/lite/toco/logging/toco_conversion_log.pb.h"
    #include "tensorflow/lite/toco/model.h"
    #include "tensorflow/lite/toco/model_flags.pb.h"
    #include "tensorflow/lite/toco/toco_convert.h"
    #include "tensorflow/lite/toco/toco_flags.pb.h"
    #include "tensorflow/lite/toco/toco_graphviz_dump_options.h"
    #include "tensorflow/lite/toco/toco_tooling.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_metadata_utils.cc

    #include "tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.h"
    #include "xla/xla.pb.h"
    #include "xla/xla_data.pb.h"
    #include "tensorflow/core/framework/tensor_shape.h"
    #include "tensorflow/core/framework/tensor_shape.pb.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/lib/core/status.h"
    #include "tensorflow/core/protobuf/tpu/compile_metadata.pb.h"
    
    namespace mlir {
    namespace TFTPU {
    namespace {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/crdclient/client_test.go

    	pb, err := r.NewInstance()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if _, err := store.Create(config.Config{
    		Meta: configMeta,
    		Spec: pb,
    	}); err != nil {
    		t.Fatalf("Create => got %v", err)
    	}
    
    	return pb
    }
    
    // Ensure that the client can run without CRDs present
    func TestClientNoCRDs(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top