Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for pb (0.03 sec)

  1. 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)
  2. src/cmd/compile/internal/ssa/regalloc.go

    				// (redRegs and spillLive) has not been computed yet.
    				pb := p.b
    				if s.blockOrder[pb.ID] >= s.blockOrder[b.ID] {
    					continue
    				}
    				if idx == -1 {
    					idx = i
    					continue
    				}
    				pSel := b.Preds[idx].b
    				if len(s.spillLive[pb.ID]) < len(s.spillLive[pSel.ID]) {
    					idx = i
    				} else if len(s.spillLive[pb.ID]) == len(s.spillLive[pSel.ID]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. 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)
  4. fess-crawler/src/test/resources/ajax/js/jquery-2.1.1.min.js

    a}),gt:nb(function(a,b,c){for(var d=0>c?c+b:c;++d<b;)a.push(d);return a})}},d.pseudos.nth=d.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})d.pseudos[b]=lb(b);for(b in{submit:!0,reset:!0})d.pseudos[b]=mb(b);function pb(){}pb.prototype=d.filters=d.pseudos,d.setFilters=new pb,g=fb.tokenize=function(a,b){var c,e,f,g,h,i,j,k=z[a+" "];if(k)return b?0:k.slice(0);h=a,i=[],j=d.preFilter;while(h){(!c||(e=S.exec(h)))&&(e&&(h=h.slice(e[0].length)||h),i.push(f=[])),c=!1,(e=T.exec(h))&&(c=e.shift(),f.pu...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 82.3K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_function_test.cc

    #include "tensorflow/c/c_test_util.h"
    #include "tensorflow/core/framework/common_shape_fns.h"
    #include "tensorflow/core/framework/function.h"
    #include "tensorflow/core/framework/function.pb.h"
    #include "tensorflow/core/framework/op_def.pb.h"
    #include "tensorflow/core/lib/hash/hash.h"
    #include "tensorflow/core/lib/strings/proto_serialization.h"
    #include "tensorflow/core/platform/logging.h"
    #include "tensorflow/core/platform/status.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/testing/testing.go

    // the go test -cpu flag:
    //
    //	func BenchmarkTemplateParallel(b *testing.B) {
    //	    templ := template.Must(template.New("test").Parse("Hello, {{.}}!"))
    //	    b.RunParallel(func(pb *testing.PB) {
    //	        var buf bytes.Buffer
    //	        for pb.Next() {
    //	            buf.Reset()
    //	            templ.Execute(&buf, "World")
    //	        }
    //	    })
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    #include "tensorflow/core/framework/graph_def_util.h"
    #include "tensorflow/core/framework/memory_types.h"
    #include "tensorflow/core/framework/node_def.pb.h"
    #include "tensorflow/core/framework/op_kernel.h"
    #include "tensorflow/core/framework/tensor.pb.h"
    #include "tensorflow/core/framework/types.h"
    #include "tensorflow/core/graph/algorithm.h"
    #include "tensorflow/core/graph/control_flow.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

    #include "tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_op_quant_spec.h"
    #include "tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h"
    #include "tensorflow/compiler/mlir/quantization/tensorflow/quantization_options.pb.h"
    #include "tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_dialect.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top