Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 6,362 for gives (0.34 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtMultiplatformInfoProvider.kt

    }
    
    public typealias KtMultiplatformInfoProvider = KaMultiplatformInfoProvider
    
    public interface KaMultiplatformInfoProviderMixin : KaSessionMixIn {
    
        /**
         * Gives expect symbol for the actual one if it is available.
         *
         * @return a single expect declaration corresponds to the [KaDeclarationSymbol] on valid code or multiple expects in a case of erroneous code with multiple expects.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/MetadataFileSource.java

    /**
     * This module source stores information about the metadata file
     * from which a module resolve metadata has been built. In particular,
     * it stores the artifact id corresponding to the metadata file and
     * gives access to the file stored in the local artifact cache.
     *
     * This information is used during dependency verification (either
     * writing or validating).
     */
    public interface MetadataFileSource extends PersistentModuleSource {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/utils/fill_quantization_options.h

    // Returns QuantizationOptions filled with detailed specs when user specifies
    // an optional preset method name. The preset methods are defined in
    // quantization_options.proto. This function will only be executed if a user
    // gives a preset method, not a custom method.
    QuantizationOptions FillPresetQuantizationOptions(
        QuantizationOptions quantization_options);
    
    // Returns LogicalResult depending on the look up of activation bit width in the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 07:43:59 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/permissions/KotlinAnalysisPermissionOptions.kt

    import com.intellij.openapi.application.ApplicationManager
    import org.jetbrains.kotlin.analysis.api.platform.KotlinOptionalPlatformComponent
    
    /**
     * [KotlinAnalysisPermissionOptions] gives an Analysis API platform the choice whether to allow analysis on the EDT and in write actions by
     * default.
     *
     * @see KotlinDefaultAnalysisPermissionOptions
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. src/log/slog/internal/buffer/buffer.go

    // Package buffer provides a pool-allocated byte buffer.
    package buffer
    
    import "sync"
    
    // buffer adapted from go/src/fmt/print.go
    type Buffer []byte
    
    // Having an initial size gives a dramatic speedup.
    var bufPool = sync.Pool{
    	New: func() any {
    		b := make([]byte, 0, 1024)
    		return (*Buffer)(&b)
    	},
    }
    
    func New() *Buffer {
    	return bufPool.Get().(*Buffer)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 13:57:53 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileResolutionIntegrationTest.groovy

            where:
            expression                        | _
            "new File(projectDir, 'testdir')" | _
            "new File('testdir').toPath()"    | _
            "'testdir'"                       | _
        }
    
        def "gives reasonable error message when value cannot be converted to file"() {
            buildFile """
    def f = file(12)
    """
    
            when:
            fails()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 19:24:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. manifests/charts/istio-cni/values.yaml

          # Note this gives the DaemonSet a relatively high privilege, as modifying pod metadata/status can have wider impacts.
          labelPods: false
          # deletePods will delete any broken pod. These will then be rescheduled, hopefully onto a node that is fully ready.
          # Note this gives the DaemonSet a relatively high privilege, as it can delete any Pod.
          deletePods: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/ConcurrentGroupingQueue.kt

    import java.util.concurrent.locks.ReentrantLock
    
    import kotlin.concurrent.withLock
    
    
    /**
     * A queue that gives priority to the most recently pushed element.
     */
    internal
    class ConcurrentGroupingQueue<T>(
    
        /**
         * Predicate to check whether the given most recently pushed element (the receiver)
         * supersedes the given less recent element (the argument).
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/MoreMemorySampleModifier.java

    import org.gradle.exemplar.model.Sample;
    import org.gradle.exemplar.test.runner.SampleModifier;
    import org.gradle.util.internal.GUtil;
    
    import java.io.File;
    import java.util.Properties;
    
    /**
     * Gives the sample tests more metaspace, as we currently never collect old buildSrc/buildscript classloaders.
     */
    public class MoreMemorySampleModifier implements SampleModifier {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileMetadata.java

        /**
         * How the file with the metadata was accessed.
         */
        AccessType getAccessType();
    
        /**
         * How the file with the metadata was accessed.
         *
         * {@link AccessType} only gives information about the queried path, not about parents of the queried path.
         *
         * If we have a symlink situation like `symlink1` -&gt; `symlink2` -&gt; `target`,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top