Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 380 for hard (0.07 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                }
            }
        }
        protected void doDisconnect( boolean hard ) throws IOException {
            ListIterator iter = sessions.listIterator();
            try {
                while (iter.hasNext()) {
                    SmbSession ssn = (SmbSession)iter.next();
                    ssn.logoff( hard );
                }
                socket.shutdownOutput();
                out.close();
                in.close();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 31.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

      bool weight_only_quantization = false;
    
      // The minimum number of elements in a weights array required to apply
      // quantization. This is especially useful not to quantize small tensors as
      // it is hard to get performance benefits from them with quantization. Used
      // in MLIR dynamic range quantizer with int8 weight data type.
      int64_t minimum_elements_for_weights = 1024;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. pkg/controller/certificates/signer/signer.go

    func (s *signer) duration(expirationSeconds *int32) time.Duration {
    	if expirationSeconds == nil {
    		return s.certTTL
    	}
    
    	// honor requested duration is if it is less than the default TTL
    	// use 10 min (2x hard coded backdate above) as a sanity check lower bound
    	const min = 10 * time.Minute
    	switch requestedDuration := csr.ExpirationSecondsToDuration(*expirationSeconds); {
    	case requestedDuration > s.certTTL:
    		return s.certTTL
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/ws/WebSocketHttpTest.kt

        val server = serverListener.assertOpen()
    
        // Initiate a close on the client, which will schedule a hard cancel in 500 ms.
        val closeAtNanos = System.nanoTime()
        webSocket.close(1000, "goodbye", 500L)
        serverListener.assertClosing(1000, "goodbye")
    
        // Confirm that the hard cancel occurred after 500 ms.
        clientListener.assertFailure()
        val elapsedUntilFailure = System.nanoTime() - closeAtNanos
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

    fun Project.isNativeProject() = name.contains("native")
    
    /**
     * Whether the project supports running with predictive test selection.
     *
     * Our performance tests don't work with PTS, yet.
     * Smoke and soak tests are hard to grasp for PTS, that is why we run them without.
     * When running on Windows with PTS, SimplifiedKotlinScriptEvaluatorTest fails. See https://github.com/gradle/gradle-private/issues/3615.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. common/config/.golangci.yml

              - "!**/operator/**"
              - "!**/istioctl/**"
              - "!**/tools/bug-report/**"
              # This should only really import operator API, but that is hard to express without a larger refactoring
              - "!**/pkg/kube/**"
              - "!**/pkg/url/**"
              - "!**/pkg/test/framework/**"
              - "!**/tests/fuzz/**"
            deny:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook.go

    			Token:     token,
    			Audiences: wantAuds,
    		},
    	}
    	var (
    		result *authenticationv1.TokenReview
    		auds   authenticator.Audiences
    		cancel context.CancelFunc
    	)
    
    	// set a hard timeout if it was defined
    	// if the child has a shorter deadline then it will expire first,
    	// otherwise if the parent has a shorter deadline then the parent will expire and it will be propagate to the child
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/ResolutionFailureHandler.java

        }
    
        public AbstractResolutionFailureException nonConsumableConfigurationFailure(
            String configurationName,
            ComponentIdentifier componentId
        ) {
            // We hard-code the exception here since we do not currently support dynamically describing this type of failure.
            // It might make sense to do this for other similar failures that do not have dynamic failure handling.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

            withValidityAssertion { analysisSession.typeProvider.getAllSuperTypes(this, shouldApproximate) }
    
        /**
         * This function is provided for a few use-cases where it's hard to go without it.
         *
         * **Please avoid using it**; it will probably be removed in the future.
         *
         * The function is instantly deprecated, so it's not shown in the completion.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. pkg/registry/core/serviceaccount/storage/token.go

    		req.Spec.ExpirationSeconds = r.maxExpirationSeconds
    	}
    
    	// Tweak expiration for safe transition of projected service account token.
    	// Warn (instead of fail) after requested expiration time.
    	// Fail after hard-coded extended expiration time.
    	// Only perform the extension when token is pod-bound.
    	var warnAfter int64
    	exp := req.Spec.ExpirationSeconds
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top