Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 165 for synthetic (0.23 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/PlatformResolveIntegrationTest.groovy

                    group = 'org.test'
                    version = '1.9'
                }
            """
        }
    
        // When publishing a platform, the Gradle metadata will _not_ contain enforced platforms
        // as those are synthetic platforms generated at runtime. This test is here to make sure
        // this is the case
        def "can enforce a published platform"() {
            def platform = mavenHttpRepo.module("org", "platform", "1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/Types.java

       * {@code <A>} using our implementation unless some of its bounds have changed in resolution. This
       * avoids creating unequal TypeVariable implementation unnecessarily. When the bounds do change,
       * however, it's fine for the synthetic TypeVariable to be unequal to any native TypeVariable
       * anyway.
       */
      static final class NativeTypeVariableEquals<X> {
        static final boolean NATIVE_TYPE_VARIABLE_ONLY =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/reflect/Types.java

       * {@code <A>} using our implementation unless some of its bounds have changed in resolution. This
       * avoids creating unequal TypeVariable implementation unnecessarily. When the bounds do change,
       * however, it's fine for the synthetic TypeVariable to be unequal to any native TypeVariable
       * anyway.
       */
      static final class NativeTypeVariableEquals<X> {
        static final boolean NATIVE_TYPE_VARIABLE_ONLY =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. src/go/types/call.go

    		// an assignment (tsig != nil), infer missing type arguments by treating
    		// the assignment
    		//
    		//    var tvar tsig = x
    		//
    		// like a call g(tvar) of the synthetic generic function g
    		//
    		//    func g[type_parameters_of_x](func_type_of_x)
    		//
    		var args []*operand
    		var params []*Var
    		var reverse bool
    		if T != nil && sig.tparams != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  5. pilot/pkg/model/virtualservice.go

    	if !UseGatewaySemantics(vs) {
    		return []ConfigKey{
    			{
    				Kind:      kind.VirtualService,
    				Namespace: vs.Namespace,
    				Name:      vs.Name,
    			},
    		}
    	}
    
    	// synthetic vs, get internal parents
    	internalParents := strings.Split(vs.Annotations[constants.InternalParentNames], ",")
    	out := make([]ConfigKey, 0, len(internalParents))
    	for _, p := range internalParents {
    		// kind/name.namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

                { (schema, _) -> schema },
                { (_, plugin) -> plugin }
            )
    
        /**
         * Computes the [project schema][TypedProjectSchema] implied by the given plugins by applying
         * them to a synthetic root project in the context of a nested build.
         */
        private
        fun projectSchemaFor(plugins: PluginRequests): Try<TypedProjectSchema> {
            val projectDir = uniqueTempDirectory()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

    #   /var/log/containers/synthetic-logger-0.25lps-pod_default_synth-lgr-997599971ee6366d4a5920d25b79286ad45ff37a74494f262e3bc98d909d0a7b.log
    # This results in the tag:
    #  var.log.containers.synthetic-logger-0.25lps-pod_default_synth-lgr-997599971ee6366d4a5920d25b79286ad45ff37a74494f262e3bc98d909d0a7b.log
    # where 'synthetic-logger-0.25lps-pod' is the pod name, 'default' is the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

         * than the original callables.
         * Resolved FIR has explicitly declared original objects receivers instead of such synthetic callables.
         */
        private inline fun <reified T : FirCallableSymbol<*>, R> T.unwrapImportedFromObjectOrStatic(builder: (T) -> R): R? {
            return if (origin == FirDeclarationOrigin.ImportedFromObjectOrStatic) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradleModuleMetadataParser.java

                if (entry.isPresent() && Category.REGULAR_PLATFORM.equals(entry.get()) && variant.getCapabilities().isEmpty()) {
                    // This generates a synthetic enforced platform variant with the same dependencies, similar to what the Maven variant derivation strategy does
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:07:04 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            // `times`, `div`, or `rem` function.
            val operationCall = fir.arguments.lastOrNull() as? FirFunctionCall ?: return null
    
            // The explicit receiver in this case is a synthetic FirFunctionCall to `get`, which does not have a corresponding PSI. So
            // we use the `leftOperandPsi` as the supplement.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
Back to top