Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 287 for embeddeds (0.12 sec)

  1. platforms/core-configuration/kotlin-dsl/doc/c4/C4_2_Container.puml

    Rel(dev, gradle, "Uses", "Command Line")
    Rel(dev, editor, "Uses", "GUI")
    
    Rel(provider, kotlinc, "Uses", "Embedded")
    Rel(plugin, kgp, "Applies")
    
    Rel(ideKotlin, kotlinc, "Uses")
    Rel(ideKotlin, resolver, "Loads", "Embedded")
    
    Rel(provider, buildCache, "Uses")
    Rel(kgp, buildCache, "Uses")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/compatibility.adoc

    | 21| 8.4 | 8.5
    | 22| 8.7 | 8.8
    | 23| N/A | N/A
    |===
    
    [[kotlin]]
    == Kotlin
    
    Gradle is tested with Kotlin 1.6.10 through 2.0.0.
    Beta and RC versions may or may not work.
    
    .Embedded Kotlin version
    |===
    | Embedded Kotlin version | Minimum Gradle version | Kotlin Language version
    
    | 1.3.10 | 5.0 | 1.3
    | 1.3.11 | 5.1 | 1.3
    | 1.3.20 | 5.2 | 1.3
    | 1.3.21 | 5.3 | 1.3
    | 1.3.31 | 5.5 | 1.3
    | 1.3.41 | 5.6 | 1.3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 03:35:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/KotlinBuildScriptModelRequest.kt

                is GradleInstallation.Remote -> useDistribution(uri)
                is GradleInstallation.Version -> useGradleVersion(number)
                is GradleInstallation.Embedded -> (this@useGradleFrom as DefaultGradleConnector).apply {
                    embedded(true)
                    useClasspathDistribution()
                }
                GradleInstallation.Wrapper -> useBuildDistribution()
            }
        }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. src/go/types/object_test.go

    	if orig == nil {
    		t.Fatalf("original error.Error not found")
    	}
    
    	// get embedded error.Error method
    	iface := pkg.Scope().Lookup("I")
    	embed, _, _ := LookupFieldOrMethod(iface.Type(), false, nil, "Error")
    	if embed == nil {
    		t.Fatalf("embedded error.Error not found")
    	}
    
    	// original and embedded Error object should be identical
    	if orig != embed {
    		t.Fatalf("%s (%p) != %s (%p)", orig, orig, embed, embed)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/union.go

    					check.errorf(tlist[i], InvalidUnion, "invalid use of ~ (underlying type of %s is %s)", t.typ, u)
    					continue
    				}
    			}
    
    			// Stand-alone embedded interfaces are ok and are handled by the single-type case
    			// in the beginning. Embedded interfaces with tilde are excluded above. If we reach
    			// here, we must have at least two terms in the syntactic term list (but not necessarily
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. src/go/types/union.go

    					check.errorf(tlist[i], InvalidUnion, "invalid use of ~ (underlying type of %s is %s)", t.typ, u)
    					continue
    				}
    			}
    
    			// Stand-alone embedded interfaces are ok and are handled by the single-type case
    			// in the beginning. Embedded interfaces with tilde are excluded above. If we reach
    			// here, we must have at least two terms in the syntactic term list (but not necessarily
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. src/html/template/url.go

    			return false
    		}
    	}
    	return true
    }
    
    // urlEscaper produces an output that can be embedded in a URL query.
    // The output can be embedded in an HTML attribute without further escaping.
    func urlEscaper(args ...any) string {
    	return urlProcessor(false, args...)
    }
    
    // urlNormalizer normalizes URL content so it can be embedded in a quote-delimited
    // string or parenthesis delimited url(...).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  8. pkg/test/framework/components/cluster/kube/cluster.go

    	filename string
    
    	// vmSupport indicates the cluster is being used for fake VMs
    	vmSupport bool
    
    	// CLIClient is embedded to interact with the kube cluster.
    	kube.CLIClient
    
    	// Topology is embedded to include common functionality.
    	cluster.Topology
    }
    
    // CanDeploy for a kube cluster returns true if the config is a non-vm, or if the cluster supports
    // fake pod-based VMs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 22:54:10 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultGradleConnector.java

            connectionParamsBuilder.setSearchUpwards(searchUpwards);
            return this;
        }
    
        public GradleConnector embedded(boolean embedded) {
            connectionParamsBuilder.setEmbedded(embedded);
            return this;
        }
    
        public GradleConnector daemonMaxIdleTime(int timeoutValue, TimeUnit timeoutUnits) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/GradleProvider.java

            return new UriGradleProvider(location);
        }
    
        public static GradleProvider version(String version) {
            return new VersionGradleProvider(version);
        }
    
        public static GradleProvider embedded() {
            return new EmbeddedGradleProvider();
        }
    
        private static final class InstallationGradleProvider extends GradleProvider {
            private final File gradleHome;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top