Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,484 for due (0.09 sec)

  1. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/InvalidRunnerConfigurationException.java

     * limitations under the License.
     */
    
    package org.gradle.testkit.runner;
    
    import org.gradle.tooling.UnsupportedVersionException;
    
    /**
     * Thrown when a build cannot be executed due to the runner being in an invalid state.
     *
     * @since 2.6
     * @see GradleRunner#build()
     * @see GradleRunner#buildAndFail()
     */
    public class InvalidRunnerConfigurationException extends IllegalStateException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. test/fixedbugs/bug517.go

    // run
    
    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The gofrontend used to mishandle this code due to a pass ordering issue.
    // It was inconsistent as to whether unsafe.Sizeof(byte(0)) was a constant,
    // and therefore as to whether it was a direct-iface type.
    
    package main
    
    import "unsafe"
    
    type A [unsafe.Sizeof(byte(0))]*byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 20 03:00:06 UTC 2023
    - 703 bytes
    - Viewed (0)
  3. test/deferfin.go

    // Test that defers do not prevent garbage collection.
    
    package main
    
    import (
    	"runtime"
    	"sync"
    	"sync/atomic"
    	"time"
    )
    
    var sink func()
    
    func main() {
    	// Does not work with gccgo, due to partially conservative GC.
    	// Try to enable when we have fully precise GC.
    	if runtime.Compiler == "gccgo" {
    		return
    	}
    	N := 10
    	count := int32(N)
    	var wg sync.WaitGroup
    	wg.Add(N)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 05 21:11:31 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ZincScalaCompileFixture.groovy

            return !GradleContextualExecuter.isDaemon() ? "" : """
                tasks.withType(ScalaDoc) {
                    doFirst {
                        throw new GradleException("Can't execute scaladoc while testing with the daemon due to permgen exhaustion")
                    }
                }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. pkg/controller/endpointslicemirroring/metrics/metrics.go

    	// Endpoints sync due to being invalid or exceeding MaxEndpointsPerSubset.
    	AddressesSkippedPerSync = metrics.NewHistogramVec(
    		&metrics.HistogramOpts{
    			Subsystem:      EndpointSliceMirroringSubsystem,
    			Name:           "addresses_skipped_per_sync",
    			Help:           "Number of addresses skipped on each Endpoints sync due to being invalid or exceeding MaxEndpointsPerSubset",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 06 19:43:35 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionErrorHandlingIntegrationTest.groovy

            then:
            output.count("> Attempting $failEvent") == 1
            output.count("Could not $failEvent entry") == 1
            output.count("The remote build cache was disabled during the build due to errors.") == 1
            if (expectStacktrace) {
                assert stackTraceContains(DefaultBuildCacheController)
            }
    
            where:
            failEvent | showStacktrace                     | expectStacktrace
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/AccessorTest.kt

            assertEquals(123, runtimeInstanceFromResult.myLambdaReceiver.x)
            assertEquals("test", runtimeInstanceFromResult.myLambdaReceiver.y)
        }
    
        // don't make this private, will produce failures on Java 8 (due to https://youtrack.jetbrains.com/issue/KT-37660)
        val runtimeCustomAccessors = object : RuntimeCustomAccessors {
            override fun getObjectFromCustomAccessor(receiverObject: Any, accessor: ConfigureAccessor.Custom): Any? =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtension.kt

     * bus connection.
     *
     * You *must not* implement [KaResolveExtension]s as module-level services, due to the following reasons:
     *
     * 1. The IntelliJ platform SDK [discourages](https://plugins.jetbrains.com/docs/intellij/plugin-services.html#types) the use of
     *    module-level services due to memory consumption. In particular, resolve extensions implemented as module-level services live longer
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemOperations.java

         */
        WorkResult delete(Action<? super DeleteSpec> action);
    
        /**
         * Creates and configures file access permissions. Differs from directory permissions due to
         * the default value the permissions start out with before the configuration is applied.
         * For details see {@link ConfigurableFilePermissions}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. pkg/wasm/imagefetcher_test.go

    			t.Fatal("extractDockerImage should fail due to invalid media type")
    		}
    	})
    }
    
    func TestExtractOCIStandardImage(t *testing.T) {
    	t.Run("no layers", func(t *testing.T) {
    		_, err := extractOCIStandardImage(empty.Image)
    		if err == nil || err.Error() != "number of layers must be greater than zero" {
    			t.Fatal("extractDockerImage should fail due to empty image")
    		}
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 05 04:15:17 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top