Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 45 for paid (0.06 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/DefaultClassEncoder.kt

    import org.gradle.internal.serialize.graph.WriteContext
    import org.gradle.internal.serialize.graph.WriteIdentities
    
    
    internal
    interface ScopeLookup {
        fun scopeFor(classLoader: ClassLoader?): Pair<ClassLoaderScopeSpec, ClassLoaderRole>?
    }
    
    
    internal
    class ClassLoaderScopeSpec(
        val parent: ClassLoaderScopeSpec?,
        val name: String,
        val origin: ClassLoaderScopeOrigin?
    ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/UserTypesCodecTest.kt

            assertInstanceOf<PropertyTrace.Gradle>(
                problem.trace
            )
            assertThat(
                problem.message.toString(),
                equalTo("objects of type 'kotlin.Pair' are not yet supported with the configuration cache.")
            )
        }
    
        @Test
        fun `can handle anonymous enum subtypes`() {
            EnumSuperType.values().forEach {
                assertThat(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go

    		FieldNameByteString: cbor.FieldNameByteStringAllowed,
    
    		// When decoding an unrecognized tag to interface{}, return the decoded tag content
    		// instead of the default, a cbor.Tag representing a (number, content) pair.
    		UnrecognizedTagToAny: cbor.UnrecognizedTagContentToAny,
    
    		// For parity with JSON, strings can be decoded into time.Time if they are RFC 3339
    		// timestamps.
    		ByteStringToTime: cbor.ByteStringToTimeAllowed,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:03:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. src/crypto/tls/bogo_shim_test.go

    		}
    	}
    
    	if *hostName != "" {
    		cfg.ServerName = *hostName
    	}
    
    	if *keyfile != "" || *certfile != "" {
    		pair, err := LoadX509KeyPair(*certfile, *keyfile)
    		if err != nil {
    			log.Fatalf("load key-file err: %s", err)
    		}
    		cfg.Certificates = []Certificate{pair}
    	}
    	if *trustCert != "" {
    		pool := x509.NewCertPool()
    		certFile, err := os.ReadFile(*trustCert)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/isolation/IsolatedActionSerializerTest.kt

                if (values.isNotEmpty()) {
                    addAll(*values)
                }
            }
    
        private
        inline fun <reified K : Any, reified V : Any> mapPropertyOf(vararg values: Pair<K, V>) =
            objectFactory().mapProperty(K::class.java, V::class.java).apply {
                values.forEach { (k, v) ->
                    put(k, v)
                }
            }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

                ),
                equalTo("my value source has changed")
            )
        }
    
        private
        fun invalidationReasonForInitScriptsChange(
            from: Iterable<Pair<File, HashCode>>,
            to: List<Pair<File, HashCode>>
        ): InvalidationReason? = to.toMap().let { toMap ->
            checkFingerprintGiven(
                mock {
                    on { allInitScripts } doReturn toMap.keys.toList()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        buffer_data_exported_ = true;
      }
      // pad 16 bytes for the last buffer for XNNPack
      result.Append("\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0");
      // pad to be 16 bytes aligned
      {
        std::string pad(kFbAlignment - result.size() % kFbAlignment, '\0');
        result.Append(std::move(pad));
      }
    
      for (auto& it : custom_op_data_map_) {
        {
          std::string pad(kFbAlignment - result.size() % kFbAlignment, '\0');
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

    import org.gradle.cache.FileLockManager
    import org.gradle.cache.GlobalCacheLocations
    import org.gradle.cache.internal.UsedGradleVersions
    import org.gradle.cache.scopes.GlobalScopedCacheBuilderFactory
    import org.gradle.internal.Pair
    import org.gradle.internal.classloader.FilteringClassLoader
    import org.gradle.internal.classpath.transforms.ClassTransform
    import org.gradle.internal.classpath.transforms.ClasspathElementTransformFactoryForAgent
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  9. src/go/types/unify.go

    			//
    			// If x and y were compared before, they must be equal
    			// (if they were not, the recursion would have stopped);
    			// search the ifacePair stack for the same pair.
    			//
    			// This is a quadratic algorithm, but in practice these stacks
    			// are extremely short (bounded by the nesting depth of interface
    			// type declarations that recur via parameter types, an extremely
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirAnnotationValueConverter.kt

            return constantValue?.let { KaConstantAnnotationValue(it, analysisSession.token) }
        }
    
        private fun Collection<FirExpression>.convertVarargsExpression(
            builder: KaSymbolByFirBuilder,
        ): Pair<Collection<KaAnnotationValue>, KtElement?> {
            var representativePsi: KtElement? = null
            val flattenedVarargs = buildList {
                for (expr in this@convertVarargsExpression) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top