Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 111 for Closest (0.22 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
    }
    
    def TF_RintOp : TF_Op<"Rint", [Pure, TF_Idempotent, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Returns element-wise integer closest to x.";
    
      let description = [{
    If the result is midway between two representable values,
    the even representable is chosen.
    For example:
    
    ```
    rint(-1.5) ==> -2.0
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  2. src/encoding/gob/type.go

    // Internally, typeIds are used as keys to a map to recover the underlying type info.
    type typeId int32
    
    var typeLock sync.Mutex // set while building a type
    const firstUserId = 64  // lowest id number granted to user
    
    type gobType interface {
    	id() typeId
    	setId(id typeId)
    	name() string
    	string() string // not public; only for debugging
    	safeString(seen map[typeId]bool) string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  3. src/runtime/traceruntime.go

    }
    
    // GoSysExit emits a GoSyscallEnd event, possibly along with a GoSyscallBlocked event
    // if lostP is true.
    //
    // lostP must be true in all cases that a goroutine loses its P during a syscall.
    // This means it's not sufficient to check if it has no P. In particular, it needs to be
    // true in the following cases:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. src/net/http/server.go

    //
    // If ServeHTTP panics, the server (the caller of ServeHTTP) assumes
    // that the effect of the panic was isolated to the active request.
    // It recovers the panic, logs a stack trace to the server error log,
    // and either closes the network connection or sends an HTTP/2
    // RST_STREAM, depending on the HTTP protocol. To abort a handler so
    // the client sees an interrupted response but the server doesn't log
    // an error, panic with the value [ErrAbortHandler].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         * defined precedence onto each other to achieve proper precedence. Precedence is defined as:
         * <ul>
         *     <li>System properties (lowest precedence)</li>
         *     <li>Project properties (optional)</li>
         *     <li>User properties (highest precedence)</li>
         * </ul>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// `matchingPrecedence` is used to choose among the FlowSchemas that match a given request. The chosen
    	// FlowSchema is among those with the numerically lowest (which we take to be logically highest)
    	// MatchingPrecedence.  Each MatchingPrecedence value must be ranged in [1,10000].
    	// Note that if the precedence is not specified, it will be set to 1000 as default.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

         */
        public DefaultServiceRegistry addProvider(ServiceRegistrationProvider provider) {
            assertMutable();
            findProviderMethods(provider);
            return this;
        }
    
        /**
         * Closes all services for this registry. For each service, if the service has a public void close() or stop() method, that method is called to close the service.
         */
        @Override
        public void close() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

         * sure that we don't overdo the isolation and still track dependencies between services
         * inside a single registry, even when a child requested that service.
         */
    
        def "closes services in dependency order even when child requested them first"() {
            def service1 = Mock(TestCloseService)
            def service2 = Mock(TestStopService)
            def service3 = Mock(CloseableService)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v2/types.go

    type ScalingPolicySelect string
    
    const (
    	// MaxChangePolicySelect  selects the policy with the highest possible change.
    	MaxChangePolicySelect ScalingPolicySelect = "Max"
    	// MinChangePolicySelect selects the policy with the lowest possible change.
    	MinChangePolicySelect ScalingPolicySelect = "Min"
    	// DisabledPolicySelect disables the scaling in this direction.
    	DisabledPolicySelect ScalingPolicySelect = "Disabled"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue.go

    	AssignedPodAdded(logger klog.Logger, pod *v1.Pod)
    	AssignedPodUpdated(logger klog.Logger, oldPod, newPod *v1.Pod)
    	PendingPods() ([]*v1.Pod, string)
    	PodsInActiveQ() []*v1.Pod
    	// Close closes the SchedulingQueue so that the goroutine which is
    	// waiting to pop items can exit gracefully.
    	Close()
    	// Run starts the goroutines managing the queue.
    	Run(logger klog.Logger)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top