Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for set_target (0.19 sec)

  1. tensorflow/c/c_test_util.cc

    }
    
    void CSession::SetOutputs(const std::vector<TF_Output>& outputs) {
      ResetOutputValues();
      outputs_ = outputs;
      output_values_.resize(outputs_.size());
    }
    
    void CSession::SetTargets(std::initializer_list<TF_Operation*> targets) {
      targets_.clear();
      for (TF_Operation* t : targets) {
        targets_.emplace_back(t);
      }
    }
    
    void CSession::Run(TF_Status* s) {
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Oct 15 03:16:52 GMT 2021
    - 17.8K bytes
    - Viewed (2)
  2. cmd/admin-bucket-handlers.go

    	if target.BandwidthLimit > 0 && target.BandwidthLimit < 100*1000*1000 {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErrWithErr(ErrReplicationBandwidthLimitError, err), r.URL)
    		return
    	}
    	if err = globalBucketTargetSys.SetTarget(ctx, bucket, &target, update); err != nil {
    		switch err.(type) {
    		case RemoteTargetConnectionErr:
    			writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErrWithErr(ErrReplicationRemoteConnectionError, err), r.URL)
    		default:
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 32.5K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    				targetToUpdate.ReplicationSync = (peer.SyncState == madmin.SyncEnabled)
    			}
    			if updateBW {
    				targetToUpdate.BandwidthLimit = int64(peer.DefaultBandwidth.Limit)
    			}
    			err := globalBucketTargetSys.SetTarget(ctx, bucket, &targetToUpdate, true)
    			if err != nil {
    				return c.annotatePeerErr(peer.Name, "Bucket target update error", err)
    			}
    			targets, err := globalBucketTargetSys.ListBucketTargets(ctx, bucket)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 184.1K bytes
    - Viewed (1)
  4. tensorflow/c/c_api.h

    // target can be empty, a single entry, or a comma separated list of entries.
    // Each entry is in one of the following formats :
    // "local"
    // ip:port
    // host:port
    TF_CAPI_EXPORT extern void TF_SetTarget(TF_SessionOptions* options,
                                            const char* target);
    
    // Set the config in TF_SessionOptions.options.
    // config should be a serialized tensorflow.ConfigProto proto.
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  5. cmd/bucket-replication.go

    				default:
    				}
    			}
    			if c.EndpointURL().String() == clnt.EndpointURL().String() {
    				selfTarget, _ := isLocalHost(clnt.EndpointURL().Hostname(), clnt.EndpointURL().Port(), globalMinioPort)
    				if !sameTarget {
    					sameTarget = selfTarget
    				}
    				continue
    			}
    		}
    	}
    
    	if len(arns) == 0 {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  6. tensorflow/c/c_api.cc

      out->options.config.mutable_experimental()
          ->set_disable_optimize_for_static_graph(true);
      return out;
    }
    void TF_DeleteSessionOptions(TF_SessionOptions* opt) { delete opt; }
    
    void TF_SetTarget(TF_SessionOptions* options, const char* target) {
      options->options.target = target;
    }
    
    void TF_SetConfig(TF_SessionOptions* options, const void* proto,
                      size_t proto_len, TF_Status* status) {
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    void <clinit>(); } org/junit/runner/manipulation/Ordering$Context.class package org.junit.runner.manipulation; public synchronized class Ordering$Context { private final org.junit.runner.Description description; public org.junit.runner.Description getTarget(); private void Ordering$Context(org.junit.runner.Description); } org/junit/runner/manipulation/Filterable.class package org.junit.runner.manipulation; public abstract interface Filterable { public abstract void filter(Filter) throws NoTestsRemainExcepti;...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
Back to top