Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,027 for relaxed (0.17 sec)

  1. src/runtime/nonwindows_stub.go

    // precision of timers, this should be enough larger than the relaxed
    // timer precision to keep the timer error acceptable.
    const osRelaxMinNS = 0
    
    var haveHighResSleep = true
    
    // osRelax is called by the scheduler when transitioning to and from
    // all Ps being idle.
    func osRelax(relax bool) {}
    
    // enableWER is called by setTraceback("wer").
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 03:12:13 UTC 2024
    - 962 bytes
    - Viewed (0)
  2. tensorflow/c/eager/parallel_device/parallel_device.h

    // per device in `underlying_devices`. Implicit copies off of the device throw
    // an error.
    //
    // All component tensors must have the same dtype. Currently they must also have
    // the same shape, although this requirement may be relaxed in the future.
    //
    // `device_name` must not name an existing physical or custom device (see
    // the documentation for TFE_RegisterCustomDevice for more information).
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 04 21:49:16 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  3. internal/amztime/parse.go

    import (
    	"errors"
    	"net/http"
    	"time"
    )
    
    // Supported amz date formats.
    var amzDateFormats = []string{
    	// Do not change this order, x-amz-date format is usually in
    	// iso8601Format rest are meant for relaxed handling of other
    	// odd SDKs that might be out there.
    	"20060102T150405Z",
    	time.RFC1123,
    	time.RFC1123Z,
    	// Add new AMZ date formats here.
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. src/internal/coverage/cmerge/merge.go

    			if cm.policy == ModeMergeStrict {
    				return fmt.Errorf("counter mode clash while reading meta-data file %s: previous file had %s, new file has %s", mdf, cm.cmode.String(), cmode.String())
    			}
    			// In the case of a relaxed mode merge policy, upgrade
    			// mode if needed.
    			if cm.cmode < cmode {
    				cm.cmode = cmode
    			}
    		}
    	}
    	return nil
    }
    
    func (cm *Merger) ResetModeAndGranularity() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 23:26:34 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. .teamcity/src/test/kotlin/ApplyDefaultConfigurationTest.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    @ExtendWith(MockKExtension::class)
    class ApplyDefaultConfigurationTest {
        @MockK(relaxed = true)
        lateinit var buildType: BaseGradleBuildType
    
        private
        val steps = BuildSteps()
    
        private
        val buildModel = CIBuildModel(
            projectId = "Gradle_Check",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. pkg/api/pod/util.go

    	// or the old pod does not exist in the env.
    	// We will let the feature gate decide whether to use relaxed rules.
    	if oldPodEnvVarNames.Len() == 0 {
    		return false
    	}
    
    	if len(validation.IsEnvVarName(name)) == 0 || len(validation.IsRelaxedEnvVarName(name)) != 0 {
    		// It's either a valid name by strict rules or an invalid name under relaxed rules.
    		// Either way, we'll use strict rules to validate.
    		return false
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/mutating_work_estimator.go

    		//    seats setting will prevent dispatching too many requests at once
    		//    to prevent overloading kube-apiserver (and/or etcd or the VM or
    		//    a physical machine it is running on), we believe the relaxed
    		//    version should be good enough to achieve the P&F goals.
    		//
    		// TODO: Confirm that the current cap of maximumSeats allow us to
    		//   achieve the above.
    		if finalSeats > maxSeats {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options_test.go

    		errShouldContain string
    	}{
    		{
    			regexp: [][]string{
    				{}, // empty list, the cluster operator wants to disable CORS
    				{`^http://foo.com$`},
    				{`^http://foo.com`}, // valid, because we relaxed the validation
    				{`://foo.com$`},
    				{`//foo.com$`},
    				{`^http://foo.com(:|$)`},
    				{`://foo.com(:|$)`},
    				{`//foo.com(:|$)`},
    				{`(^foo.com$)`},
    				{`^http://foo.com$`, `//bar.com(:|$)`},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:49 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  9. src/go/types/struct.go

    				case *Interface:
    					if isTypeParam(t) {
    						// The error code here is inconsistent with other error codes for
    						// invalid embedding, because this restriction may be relaxed in the
    						// future, and so it did not warrant a new error code.
    						check.error(embeddedPos, MisplacedTypeParam, "embedded field type cannot be a (pointer to a) type parameter")
    						break
    					}
    					if isPtr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/struct.go

    				case *Interface:
    					if isTypeParam(t) {
    						// The error code here is inconsistent with other error codes for
    						// invalid embedding, because this restriction may be relaxed in the
    						// future, and so it did not warrant a new error code.
    						check.error(embeddedPos, MisplacedTypeParam, "embedded field type cannot be a (pointer to a) type parameter")
    						break
    					}
    					if isPtr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top