Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 444 for exportId (0.13 sec)

  1. src/go/doc/reader.go

    		}
    		if typ := r.lookupType(recvTypeName); typ != nil {
    			typ.methods.set(fun, r.mode&PreserveAST != 0)
    		}
    		// otherwise ignore the method
    		// TODO(gri): There may be exported methods of non-exported types
    		// that can be called because of exported values (consts, vars, or
    		// function results) of that type. Could determine if that is the
    		// case and then show those methods in an appropriate section.
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. tensorflow/BUILD

        ],
    )
    
    # Packages that use private types symbols, until they are exported.
    # TODO(b/154650521) Remove.
    # If this is modified, then copy.bara.sky must also be modified.
    package_group(name = "types_allowlist")
    
    # Packages that use StructuredTensors.
    # TODO(b/159007891) Remove this package once StructuredTensor is exported.
    # LINT.IfChange
    package_group(name = "structured_tensor_allowlist")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    			name:      ". and same namespace in exportTo is not okay",
    			namespace: "ns5",
    			exportTo:  []string{".", "ns5"},
    			wantErr:   true,
    		},
    		{
    			name:      "duplicate namespaces in exportTo is not okay",
    			namespace: "ns5",
    			exportTo:  []string{"ns1", "ns2", "ns1"},
    			wantErr:   true,
    		},
    		{
    			name:           "duplicate none in service entry exportTo is not okay",
    			namespace:      "ns5",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. pkg/workloadapi/security/authorization.pb.go

    		file_workloadapi_security_authorization_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
    			switch v := v.(*Authorization); i {
    			case 0:
    				return &v.state
    			case 1:
    				return &v.sizeCache
    			case 2:
    				return &v.unknownFields
    			default:
    				return nil
    			}
    		}
    		file_workloadapi_security_authorization_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/scope.go

    // object was inserted into the scope and already had a parent at that
    // time (see Insert). This can only happen for dot-imported objects
    // whose scope is the scope of the package that exported them.
    func (s *Scope) LookupParent(name string, pos syntax.Pos) (*Scope, Object) {
    	for ; s != nil; s = s.parent {
    		if obj := s.Lookup(name); obj != nil && (!pos.IsKnown() || cmpPos(obj.scopePos(), pos) <= 0) {
    			return s, obj
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/go/types/scope.go

    // object was inserted into the scope and already had a parent at that
    // time (see Insert). This can only happen for dot-imported objects
    // whose scope is the scope of the package that exported them.
    func (s *Scope) LookupParent(name string, pos token.Pos) (*Scope, Object) {
    	for ; s != nil; s = s.parent {
    		if obj := s.Lookup(name); obj != nil && (!pos.IsValid() || cmpPos(obj.scopePos(), pos) <= 0) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    //
    // Running this pass essentially has the effect of inlining the initializer
    // functions into the main graph. This is beneficial when we wish to find and
    // fetch the node that restores resources, after the ModuleOp has been exported
    // as GraphDef.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateMergeInitializerFunctionOpsToMainPass();
    
    // Creates a pass that moves & merges the "@tf_quant__save" function to "@main"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. src/runtime/time_test.go

    		x = x[4:]
    		data := string(x[:dlen])
    		x = x[dlen:]
    		frames = append(frames, fakeTimeFrame{time, data})
    	}
    	return frames, nil
    }
    
    func TestTimeTimerType(t *testing.T) {
    	// runtime.timeTimer (exported for testing as TimeTimer)
    	// must have time.Timer and time.Ticker as a prefix
    	// (meaning those two must have the same layout).
    	runtimeTimeTimer := reflect.TypeOf(runtime.TimeTimer{})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 03:40:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/lstm.json

    // CHECK-SAME: input_to_output_intermediate = tensor<*x!quant.calibrated<f32<-1.000000e+00:1.000000e+00>>>
    
    // Checks if calibrated type is exported back to quantized type.
    // RoundTrip: name: "effective_hidden_scale_intermediate",
    // RoundTrip-NEXT: quantization: {
    // RoundTrip-NEXT: min: [ -0.5 ],
    // RoundTrip-NEXT: max: [ 0.5 ]
    
    {
      "version": 3,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 06:25:50 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

        sizeBytes: 102319441
      - names:
        - gcr.io/google_containers/kube-proxy:v1.11.10-gke.5
        - registry.k8s.io/kube-proxy:v1.11.10-gke.5
        sizeBytes: 102279340
      - names:
        - registry.k8s.io/event-exporter@sha256:7f9cd7cb04d6959b0aa960727d04fa86759008048c785397b7b0d9dff0007516
        - registry.k8s.io/event-exporter:v0.2.3
        sizeBytes: 94171943
      - names:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top