Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,484 for due (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. test/fixedbugs/issue20250.go

    // Copyright 2017 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.
    
    // Issue 20250: liveness differed with concurrent compilation
    // due to propagation of addrtaken to outer variables for
    // closure variables.
    
    package p
    
    type T struct {
    	s [2]string
    }
    
    func f(a T) { // ERROR "live at entry to f: a$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 727 bytes
    - Viewed (0)
  5. platforms/software/resources-gcs/src/main/java/org/gradle/internal/resource/transport/gcp/gcs/ResourceMapper.java

                storageObject.getSize().longValue(),
                storageObject.getContentType(),
                storageObject.getEtag(),
                null // we cannot use md5 instead of sha1 here because cache will get corrupted due to its expectation of sha1 hashes
            );
        }
    
        private ResourceMapper() {
            throw new AssertionError("No instances");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/InternalTransformer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal;
    
    /**
     * Equivalent to {@code Transformer}, but does not declare nullability due to Java 6 restrictions.
     *
     * <p>A {@code Transformer} transforms objects of type.</p>
     *
     * <p>Implementations are free to return new objects or mutate the incoming value.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/ProjectSelectionException.java

     * limitations under the License.
     */
    
    package org.gradle.execution;
    
    import org.gradle.api.internal.project.ProjectInternal;
    
    /**
     * Thrown when the tasks to execute cannot be selected due to a problem resolving the project to select tasks from.
     */
    public class ProjectSelectionException extends BaseSelectionException {
        public ProjectSelectionException(String message) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 23 13:10:39 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/BuildCancelledException.java

     * limitations under the License.
     */
    
    package org.gradle.api;
    
    /**
     * <p>A <code>BuildCancelledException</code> is thrown when a build is interrupted due to cancellation request.
     *
     * @since 2.1
     */
    public class BuildCancelledException extends GradleException {
        public BuildCancelledException() {
            this("Build cancelled.");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:43:44 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  9. test/fixedbugs/issue4518.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 4518. In some circumstances "return F(...)"
    // where F has multiple returns is miscompiled by 6g due to
    // bold assumptions in componentgen.
    
    package main
    
    //go:noinline
    func F(e interface{}) (int, int) {
    	return 3, 7
    }
    
    //go:noinline
    func G() (int, int) {
    	return 3, 7
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 942 bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiAuthenticationIntegrationTest.groovy

                        "({languageVersion=99, vendor=matching('exotic'), implementation=vendor-specific}) from '$archiveUri', " +
                        "due to: Unpacked JDK archive does not contain a Java home: " + temporaryFolder.testDirectory.file("user-home", ".tmp", "jdks", "toolchain"))
        }
    
        def "can download with basic authentication"() {
            settingsFile <<
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:25 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top