Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 297 for existed (0.96 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultTaskPathLocation.java

     * limitations under the License.
     */
    
    package org.gradle.api.problems.internal;
    
    /**
     * A problem location that stores a task path if the problem was emitted meanwhile executing a task.
     */
    public class DefaultTaskPathLocation implements TaskPathLocation {
    
        private final String buildTreePath;
    
        public DefaultTaskPathLocation(String buildTreePath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/cmd_import_error.txt

    env GO111MODULE=on
    
    # Regression test for golang.org/issue/31031:
    # Importing or loading a non-existent package in cmd/ should print
    # a clear error in module mode.
    
    ! go list cmd/unknown
    stderr '^package cmd/unknown is not in std \('$GOROOT'[/\\]src[/\\]cmd[/\\]unknown\)$'
    
    go list -f '{{range .DepsErrors}}{{.Err}}{{end}}' x.go
    stdout '^package cmd/unknown is not in std \('$GOROOT'[/\\]src[/\\]cmd[/\\]unknown\)$'
    
    -- x.go --
    package x
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 464 bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPathIntegrationTest.kt

    import org.hamcrest.MatcherAssert.assertThat
    
    import org.junit.Test
    
    
    class AccessorsClassPathIntegrationTest : AbstractKotlinIntegrationTest() {
    
        @Test
        fun `warning is emitted if a gradle slash project dash schema dot json file is present`() {
    
            withDefaultSettings()
            withBuildScript("")
    
            withFile(projectSchemaResourcePath)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. test/fixedbugs/bug327.go

    // license that can be found in the LICENSE file.
    
    // Conversion between identical interfaces.
    // Issue 1647.
    
    // The compiler used to not realize this was a no-op,
    // so it generated a call to the non-existent function runtime.convE2E.
    
    package main
    
    type (
    	a interface{}
    	b interface{}
    )
    
    func main() {
    	x := a(1)
    	z := b(x)
    	_ = z
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 454 bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/WithAndroidDeprecations.groovy

    import groovy.transform.SelfType
    import org.gradle.util.GradleVersion
    
    @SelfType(BaseDeprecations)
    trait WithAndroidDeprecations {
    
        void expectFilteredFileCollectionDeprecationWarning() {
            // This warning is emitted by the Kotlin Kapt plugin
            runner.expectLegacyDeprecationWarning(
                "The Configuration.fileCollection(Spec) method has been deprecated. " +
                    "This is scheduled to be removed in Gradle 9.0. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. docs/fr/docs/help-fastapi.md

    Aimez-vous **FastAPI** ?
    
    Vous souhaitez aider FastAPI, les autres utilisateurs et l'auteur ?
    
    Ou souhaitez-vous obtenir de l'aide avec le **FastAPI** ?
    
    Il existe des moyens très simples d'aider (plusieurs ne nécessitent qu'un ou deux clics).
    
    Il existe également plusieurs façons d'obtenir de l'aide.
    
    ## Star **FastAPI** sur GitHub
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Oct 20 08:39:03 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testsanitizers/msan_test.go

    			cmd := hangProneCmd(outPath)
    			if tc.wantErr {
    				out, err := cmd.CombinedOutput()
    				if err != nil {
    					return
    				}
    				t.Fatalf("%#q exited without error; want MSAN failure\n%s", strings.Join(cmd.Args, " "), out)
    			}
    			mustRun(t, cmd)
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:30:58 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/logging/DaemonMessages.java

        public final static String ABOUT_TO_START_RELAYING_LOGS = "About to start relaying all logs to the client via the connection.";
        public final static String DAEMON_VM_SHUTTING_DOWN = "Daemon vm is shutting down... The daemon has exited normally or was terminated in response to a user interrupt.";
        public final static String REMOVING_PRESENCE_DUE_TO_STOP = "Stop requested. Daemon is removing its presence from the registry...";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ReplaceSelectionWithConflictResultAction.java

        }
    
        @Override
        public void execute(final ConflictResolutionResult result) {
            result.withParticipatingModules(moduleIdentifier -> {
                // Restart each configuration. For the evicted configuration, this means moving incoming dependencies across to the
                // matching selected configuration. For the select configuration, this mean traversing its dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. plugin/pkg/admission/eventratelimit/apis/eventratelimit/types.go

    	Burst int32 `json:"burst"`
    
    	// cacheSize is the size of the LRU cache for this type of limit. If a bucket
    	// is evicted from the cache, then the allowance for that bucket is reset. If
    	// more queries are later received for an evicted bucket, then that bucket
    	// will re-enter the cache with a clean slate, giving that bucket a full
    	// allowance of burst queries.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 17:38:03 UTC 2017
    - 3.4K bytes
    - Viewed (0)
Back to top