Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,434 for Allows (0.52 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/permissions/KaAnalysisPermissionChecker.kt

    import com.intellij.openapi.project.Project
    import org.jetbrains.kotlin.analysis.api.platform.KaEngineService
    
    /**
     * [KaAnalysisPermissionChecker] is an *engine service* which allows checking whether analysis is currently allowed.
     */
    public interface KaAnalysisPermissionChecker : KaEngineService {
        public fun isAnalysisAllowed(): Boolean
    
        public fun getRejectionReason(): String
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 855 bytes
    - Viewed (0)
  2. tests/integration/base.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: install
    spec:
      meshConfig:
        # Disable retries. This avoids confusing logs and errors, and allows finer grain control for tests
        defaultHttpRetryPolicy: {}
        accessLogFile: "/dev/stdout"
        defaultConfig:
          proxyMetadata:
            ISTIO_META_DNS_CAPTURE: "true"
      values:
        pilot:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. pkg/features/kube_features.go

    	// owner: @mimowo
    	// kep: https://kep.k8s.io/3850
    	// alpha: v1.28
    	// beta: v1.29
    	//
    	// Allows users to specify counting of failed pods per index.
    	JobBackoffLimitPerIndex featuregate.Feature = "JobBackoffLimitPerIndex"
    
    	// owner: @mimowo
    	// kep: https://kep.k8s.io/4368
    	// alpha: v1.30
    	//
    	// Allows to delegate reconciliation of a Job object to an external controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/hashing/ConfigurableNormalizer.java

     * limitations under the License.
     */
    
    package org.gradle.internal.fingerprint.hashing;
    
    import org.gradle.internal.hash.Hasher;
    
    /**
     * A resource normalizer which is configurable.
     *
     * Allows tracking changes to its configuration.
     */
    public interface ConfigurableNormalizer {
        void appendConfigurationToHasher(Hasher hasher);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 913 bytes
    - Viewed (0)
  5. src/crypto/internal/boring/doc.go

    //
    // BoringCrypto is only available on linux/amd64 and linux/arm64 systems.
    const Enabled = available
    
    // A BigInt is the raw words from a BigInt.
    // This definition allows us to avoid importing math/big.
    // Conversion between BigInt and *big.Int is in crypto/internal/boring/bbig.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 05:28:51 UTC 2023
    - 826 bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyResolveDetails.java

         * The requested module does not change even if there are multiple dependency resolve rules
         * that manipulate the dependency metadata.
         */
        ModuleVersionSelector getRequested();
    
        /**
         * Allows to override the version when the dependency {@link #getRequested()} is resolved.
         * Can be used to select a version that is different than requested.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/workflow/phase.go

    limitations under the License.
    */
    
    package workflow
    
    import (
    	"github.com/spf13/cobra"
    	"github.com/spf13/pflag"
    )
    
    // Phase provides an implementation of a workflow phase that allows
    // creation of new phases by simply instantiating a variable of this type.
    type Phase struct {
    	// name of the phase.
    	// Phase name should be unique among peer phases (phases belonging to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 15:35:58 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DefaultDaemonServerConfiguration.java

        private final List<String> jvmOptions;
        private final boolean instrumentationAgentAllowed;
        private final NativeServicesMode nativeServicesMode;
    
        /**
         * Creates the DefaultDaemonConfiguration that allows the use of the instrumentation agent if the latter is applied.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemLocationProperty.java

         * that owns this property instance.
         *
         * <p>This method is the same as {@link #set(File)} but allows method chaining.</p>
         *
         * @return this
         * @since 6.0
         */
        FileSystemLocationProperty<T> fileValue(@Nullable File file);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 12:28:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/sparsetree.go

    	AdjustBefore = -1 // defined before phi
    	AdjustWithin = 0  // defined by phi
    	AdjustAfter  = 1  // defined within block
    )
    
    // A SparseTree is a tree of Blocks.
    // It allows rapid ancestor queries,
    // such as whether one block dominates another.
    type SparseTree []SparseTreeNode
    
    // newSparseTree creates a SparseTree from a block-to-parent map (array indexed by Block.ID).
    func newSparseTree(f *Func, parentOf []*Block) SparseTree {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.1K bytes
    - Viewed (0)
Back to top