Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 282 for frequently (0.23 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinDeclarationProvider.kt

    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.psi.*
    
    /**
     * A declaration provider for a given scope. It can be created via [KotlinDeclarationProviderFactory].
     *
     * It may be called frequently, so implementations should cache the results.
     */
    public abstract class KotlinDeclarationProvider : KotlinComposableProvider {
        public abstract fun getClassLikeDeclarationByClassId(classId: ClassId): KtClassLikeDeclaration?
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/memory_threshold_notifier.go

    	evictionapi "k8s.io/kubernetes/pkg/kubelet/eviction/api"
    )
    
    const (
    	memoryUsageAttribute = "memory.usage_in_bytes"
    	// this prevents constantly updating the memcg notifier if synchronize
    	// is run frequently.
    	notifierRefreshInterval = 10 * time.Second
    )
    
    type memoryThresholdNotifier struct {
    	threshold  evictionapi.Threshold
    	cgroupPath string
    	events     chan struct{}
    	factory    NotifierFactory
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 21 00:36:14 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    method in class org.hamcrest.core.IsNull A shortcut to the frequently used not(nullValue()). notNullValue(Class<T>) - Static method in class org.hamcrest.core.IsNull A shortcut to the frequently used not(nullValue(X.class)). notNullValue() - Static method in class org.hamcrest.CoreMatchers A shortcut to the frequently used not(nullValue()). notNullValue(Class<T>) - Static method in class org.hamcrest.CoreMatchers A shortcut to the frequently used not(nullValue(X.class)). nullValue() - Static method...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/Lmhosts.java

        /**
         * This is really just for {@link jcifs.smb1.UniAddress}. It does
         * not throw an {@link java.net.UnknownHostException} because this
         * is queried frequently and exceptions would be rather costly to
         * throw on a regular basis here.
         */
    
        public synchronized static NbtAddress getByName( String host ) {
            return getByName( new Name( host, 0x20, null ));
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/ir/ConvertSimQuant.cc

      LogicalResult matchAndRewrite(FakeQuantOp op,
                                    PatternRewriter &rewriter) const override {
        // TODO: If this pattern comes up more frequently, consider adding core
        // support for failable rewrites.
        if (failableRewrite(op, rewriter)) {
          *hadFailure = true;
          return failure();
        }
        return success();
      }
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/versions.md

    # About FastAPI versions
    
    **FastAPI** is already being used in production in many applications and systems. And the test coverage is kept at 100%. But its development is still moving quickly.
    
    New features are added frequently, bugs are fixed regularly, and the code is still continuously improving.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Nov 05 20:50:37 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/metadata/AbstractMetadataProvider.java

            if (exitValue == 0) {
                return Pair.of(buffer.readAsString(), errorBuffer.readAsString());
            } else if (exitValue == 69) {
                // After an Xcode upgrade, running clang will frequently fail in a mysterious way.
                // Make the failure very obvious by throwing this back up to the user.
                String errorBufferAsString = errorBuffer.readAsString();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 13:16:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/shift/shift.go

    // the length of the underlying variable.
    func checkLongShift(pass *analysis.Pass, node ast.Node, x, y ast.Expr) {
    	if pass.TypesInfo.Types[x].Value != nil {
    		// Ignore shifts of constants.
    		// These are frequently used for bit-twiddling tricks
    		// like ^uint(0) >> 63 for 32/64 bit detection and compatibility.
    		return
    	}
    
    	v := pass.TypesInfo.Types[y].Value
    	if v == nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/netbios/Lmhosts.java

        private int alt;
    
    
        /**
         * This is really just for {@link jcifs.netbios.UniAddress}. It does
         * not throw an {@link java.net.UnknownHostException} because this
         * is queried frequently and exceptions would be rather costly to
         * throw on a regular basis here.
         * 
         * @param host
         * @param tc
         * @return resolved name, null if not found
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/bridge_logger.h

    // checking where a certain attribute gets lost. Note that we use a semicolon
    // instead of comma as the separator to allow strings that contain commas (which
    // frequently appear in MLIR). The strings can contain any characters (including
    // spaces) except semicolons.
    //
    // Example: Setting the environment variables
    // `MLIR_BRIDGE_LOG_PASS_FILTER="LegalizeTF;Canonicalizer"` and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 22:29:51 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top