Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 153 for book (0.09 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

      def test_conv_ptq_model(
          self,
          activation_fn: Optional[ops.Operation],
          has_bias: bool,
          has_batch_norm: bool,
          target_opset: quant_opts_pb2.OpSet,
          input_shape_dynamic: bool,
          enable_per_channel_quantization: bool,
          dilations: Sequence[int] = None,
      ):
        input_shape = [None, None, None, 3] if input_shape_dynamic else [1, 3, 4, 3]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	PackageFile   map[string]string // map package path to .a file with export data
    	Standard      map[string]bool   // map package path to whether it's in the standard library
    	PackageVetx   map[string]string // map package path to vetx data from earlier vet run
    	VetxOnly      bool              // only compute vetx data; don't report detected problems
    	VetxOutput    string            // write vetx data to this output file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                                  mlir::ModuleOp module,
                                  bool lift_varhandle_ops_to_args,
                                  bool include_variables_in_initializers);
    };
    
    Status SavedModelSignatureDefImporter::LiftVariables(
        const SavedModelBundle& bundle, mlir::ModuleOp module,
        const bool lift_varhandle_ops_to_args,
        const bool include_variables_in_initializers) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_node_status_test.go

    		existingNode    *v1.Node
    		createError     error
    		getError        error
    		patchError      error
    		deleteError     error
    		expectedResult  bool
    		expectedActions int
    		testSavedNode   bool
    		savedNodeIndex  int
    		savedNodeCMAD   bool
    	}{
    		{
    			name:            "success case - new node",
    			newNode:         &v1.Node{},
    			expectedResult:  true,
    			expectedActions: 1,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller_test.go

    			Containers: []v1.Container{
    				{Image: "foobar"},
    			},
    		},
    	}
    
    	testCases := map[string]struct {
    		enableJobFailurePolicy        bool
    		enableBackoffLimitPerIndex    bool
    		enableJobSuccessPolicy        bool
    		enableJobPodReplacementPolicy bool
    		job                           batch.Job
    		pods                          []v1.Pod
    		wantStatus                    batch.JobStatus
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  6. pkg/volume/util/operationexecutor/operation_generator.go

    // and perform translations from InTree PVs and Inline to CSI
    type InTreeToCSITranslator interface {
    	IsPVMigratable(pv *v1.PersistentVolume) bool
    	IsInlineMigratable(vol *v1.Volume) bool
    	IsMigratableIntreePluginByName(inTreePluginName string) bool
    	GetInTreePluginNameFromSpec(pv *v1.PersistentVolume, vol *v1.Volume) (string, error)
    	GetCSINameFromInTreeName(pluginName string) (string, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  7. pkg/scheduler/schedule_one_test.go

    	err    error
    }
    
    type fakeExtender struct {
    	isBinder          bool
    	interestedPodName string
    	ignorable         bool
    	gotBind           bool
    	errBind           bool
    	isPrioritizer     bool
    	isFilter          bool
    }
    
    func (f *fakeExtender) Name() string {
    	return "fakeExtender"
    }
    
    func (f *fakeExtender) IsIgnorable() bool {
    	return f.ignorable
    }
    
    func (f *fakeExtender) ProcessPreemption(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  8. pkg/registry/batch/job/strategy_test.go

    				SucceededCount:   ptr.To[int32](4),
    			},
    		},
    	}
    
    	cases := map[string]struct {
    		enableJobPodFailurePolicy     bool
    		enableJobBackoffLimitPerIndex bool
    		enableJobPodReplacementPolicy bool
    		enableJobManageBy             bool
    		enableJobSuccessPolicy        bool
    		job                           batch.Job
    		wantJob                       batch.Job
    	}{
    		"generate selectors": {
    			job: batch.Job{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  9. cmd/bucket-replication.go

    func validateReplicationDestination(ctx context.Context, bucket string, rCfg *replication.Config, checkRemote bool) (bool, APIError) {
    	var arns []string
    	if rCfg.RoleArn != "" {
    		arns = append(arns, rCfg.RoleArn)
    	} else {
    		for _, rule := range rCfg.Rules {
    			arns = append(arns, rule.Destination.String())
    		}
    	}
    	var sameTarget bool
    	for _, arnStr := range arns {
    		arn, err := madmin.ParseARN(arnStr)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1/generated.pb.go

    	return fileDescriptor_662262cc70094b41, []int{0}
    }
    func (m *CSIDriver) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *CSIDriver) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    	n, err := m.MarshalToSizedBuffer(b)
    	if err != nil {
    		return nil, err
    	}
    	return b[:n], nil
    }
    func (m *CSIDriver) XXX_Merge(src proto.Message) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 133.8K bytes
    - Viewed (0)
Back to top