Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,027 for relaxed (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      auto producer_or = tensorflow::GetTfGraphProducerVersion(module);
      if (!producer_or.ok()) {
        // TODO(jpienaar): Keeping the existing behavior for now but this could
        // be relaxed.
        LLVM_DEBUG(llvm::dbgs()
                   << "Skipping inference; " << producer_or.status().ToString());
        return true;
      }
      int64_t producer = producer_or.value();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    		tr.Set("%s*", t.C)
    		return &Type{
    			Size:  c.ptrSize,
    			Align: c.ptrSize,
    			Go:    &ast.StarExpr{X: t.Go},
    			C:     tr,
    		}
    	case *dwarf.TypedefType:
    		// C has much more relaxed rules than Go for
    		// implicit type conversions. When the parameter
    		// is type T defined as *X, simulate a little of the
    		// laxness of C by making the argument *X instead of T.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/options/endpointcontroller.go

    )
    
    // EndpointControllerOptions holds the EndPointController options.
    type EndpointControllerOptions struct {
    	*endpointconfig.EndpointControllerConfiguration
    }
    
    // AddFlags adds flags related to EndPointController for controller manager to the specified FlagSet.
    func (o *EndpointControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 24 09:36:53 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

            unchanged = false;
            auto value = while_op.getOperand(arg_no);
            ba.replaceAllUsesWith(value);
            cond_block.getArgument(arg_no).replaceAllUsesWith(value);
    
            // This could be relaxed and casts inserted.
            if (while_op.getResult(arg_no).getType() == value.getType())
              while_op.getResult(arg_no).replaceAllUsesWith(value);
          }
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. pkg/controller/job/indexed_job_utils_test.go

    			},
    			wantPodsWithDelayedDeletionPerIndex: []string{},
    		},
    		"failed pod for active index; the pod's deletion is not delayed as it is already replaced": {
    			job: batch.Job{
    				Spec: batch.JobSpec{
    					Completions:          ptr.To[int32](2),
    					BackoffLimitPerIndex: ptr.To[int32](1),
    				},
    			},
    			pods: []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/endpointslicecontroller.go

    )
    
    // EndpointSliceControllerOptions holds the EndpointSliceController options.
    type EndpointSliceControllerOptions struct {
    	*endpointsliceconfig.EndpointSliceControllerConfiguration
    }
    
    // AddFlags adds flags related to EndpointSliceController for controller manager to the specified FlagSet.
    func (o *EndpointSliceControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 03 07:16:42 UTC 2020
    - 3.7K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/options/endpointslicemirroringcontroller.go

    // EndpointSliceMirroringController options.
    type EndpointSliceMirroringControllerOptions struct {
    	*endpointslicemirroringconfig.EndpointSliceMirroringControllerConfiguration
    }
    
    // AddFlags adds flags related to EndpointSliceMirroringController for
    // controller manager to the specified FlagSet.
    func (o *EndpointSliceMirroringControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 19 13:01:01 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. cmd/bucket-metadata-sys.go

    	}
    
    	sys.RLock()
    	meta, ok := sys.metadataMap[bucket]
    	sys.RUnlock()
    	if ok {
    		return meta, reloaded, nil
    	}
    	meta, err = loadBucketMetadata(ctx, objAPI, bucket)
    	if err != nil {
    		if !sys.Initialized() {
    			// bucket metadata not yet initialized
    			return newBucketMetadata(bucket), reloaded, errBucketMetadataNotInitialized
    		}
    		return meta, reloaded, err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. releasenotes/README.md

    ## docs
    
    The `docs` field should be used to list related documentation. These will be turned into links and appended to the note alongside the issues. Quotes are **required** for docs entries or you may see YAML errors such as `did not find expected alphabetic or numeric character`.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 09 20:31:49 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  10. pkg/controller/apis/config/types.go

    	// CSRSigningController related features.
    	CSRSigningController csrsigningconfig.CSRSigningControllerConfiguration
    	// DaemonSetControllerConfiguration holds configuration for DaemonSetController
    	// related features.
    	DaemonSetController daemonconfig.DaemonSetControllerConfiguration
    	// DeploymentControllerConfiguration holds configuration for
    	// DeploymentController related features.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top