Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,241 for cheese (0.14 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirArrayOfSymbolProvider.kt

        internal fun KaFirSession.arrayOfSymbol(identifier: Name): KaFirFunctionSymbol? {
            val firSymbol = useSiteSession.symbolProvider.getTopLevelCallableSymbols(kotlinPackage, identifier).firstOrNull {
                /* choose (for byte array)
                 * public fun byteArrayOf(vararg elements: kotlin.Byte): kotlin.ByteArray
                 */
                (it as? FirFunctionSymbol<*>)?.fir?.valueParameters?.singleOrNull()?.isVararg == true
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalModuleDependencyMetadata.java

        }
    
        public abstract ExternalDependencyDescriptor getDependencyDescriptor();
    
        /**
         * Choose a set of target configurations based on: a) the consumer attributes (with associated schema) and b) the target component.
         *
         * Use attribute matching to choose a single variant when the target component has variants,
         * otherwise revert to legacy selection of target configurations.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. pkg/kubelet/preemption/preemption_test.go

    			insufficientResources: getAdmissionRequirementList(200, 200, 2),
    			expectErr:             true,
    			expectedOutput:        nil,
    		},
    		{
    			testName:              "choose between bestEffort and burstable",
    			preemptor:             allPods[clusterCritical],
    			inputPods:             []*v1.Pod{allPods[burstable], allPods[bestEffort]},
    			insufficientResources: getAdmissionRequirementList(0, 0, 1),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 24 10:04:08 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/options/generic.go

    }
    
    // AddImageMetaFlags adds the --image-repository flag to the given flagset
    func AddImageMetaFlags(fs *pflag.FlagSet, imageRepository *string) {
    	fs.StringVar(imageRepository, ImageRepository, *imageRepository, "Choose a container registry to pull control plane images from")
    }
    
    // AddFeatureGatesStringFlag adds the --feature-gates flag to the given flagset
    func AddFeatureGatesStringFlag(fs *pflag.FlagSet, featureGatesString *string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/internal/cpu/cpu_arm64.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cpu
    
    // CacheLinePadSize is used to prevent false sharing of cache lines.
    // We choose 128 because Apple Silicon, a.k.a. M1, has 128-byte cache line size.
    // It doesn't cost much and is much more future-proof.
    const CacheLinePadSize = 128
    
    func doinit() {
    	options = []option{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 25 14:08:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    [[reserved_alias_name]]
    == Use of a reserved alias name
    
    This error indicates that you chose an alias which is a reserved name.
    Typically this happens if you choose an alias which starts with `versions`, `bundles`, or `plugins` or contains `extensions`, `convention`, `class`, as it may clash with generated accessors.
    
    To fix this problem, you must choose a different alias.
    
    [[undefined_version_reference]]
    == Undefined version reference
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions_drq.cc

        registry.insert<TF::TensorFlowDialect>();
      }
    
      void runOnOperation() override;
    
     private:
      Option<OpSet> target_opset_{
          *this, "target-opset", llvm::cl::init(OpSet::TF),
          llvm::cl::desc("Choose target opset."),
          llvm::cl::values(
              clEnumValN(OpSet::TF, "TF",
                         "Uses TF ops that mimic quantization behavior"),
              clEnumValN(OpSet::XLA, "XLA", "Uses TF XLA ops"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/AmbiguousArtifactVariantsFailureDescriber.java

            } else {
                formatter.node("The consumer was configured to find " + describer.describeAttributeSet(failure.getRequestedAttributes().asMap()) + ". However we cannot choose between the following variants of " + failure.getRequestedName());
            }
            formatter.startChildren();
            for (AssessedCandidate assessedCandidate : failure.getCandidates()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. plugin/pkg/admission/storage/storageclass/setdefault/admission_test.go

    			false,
    			"foo",
    		},
    		{
    			"two defaults with same creation time, choose the one with smaller name",
    			[]*storagev1.StorageClass{defaultClass1, defaultClass2, classWithFalseDefault, classWithNoDefault, classWithEmptyDefault},
    			claimWithNoClass,
    			false,
    			defaultClass1.Name,
    		},
    		{
    			"two defaults, choose the one with newer creation time",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 19 04:00:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  10. android/guava/pom.xml

              <!-- We add the link ourselves, both so that we can choose Java 9 over the version that -source suggests and so that we can solve the JSR305 problem described below. -->
              <detectJavaApiLink>false</detectJavaApiLink>
              <offlineLinks>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 11 16:37:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top