Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,114 for checkPkg (0.14 sec)

  1. src/os/exec/exec_linux_test.go

    // If we are using cgo, we will call malloc when creating a new thread.
    // That can break TestExtraFiles if we create a new thread that creates
    // a new arena and opens the /sys file while we are checking for open
    // file descriptors. Work around the problem by creating threads up front.
    // See issue 25628.
    
    package exec_test
    
    import (
    	"os"
    	"sync"
    	"syscall"
    	"time"
    )
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 26 14:49:07 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. test/fixedbugs/notinheap.go

    // errorcheck -+
    
    // Copyright 2016 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.
    
    // Test type-checking errors for go:notinheap.
    
    package p
    
    //go:notinheap
    type nih struct{}
    
    type embed4 map[nih]int // ERROR "incomplete \(or unallocatable\) map key not allowed"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 17:46:15 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. src/runtime/fds_unix.go

    	devNull := []byte("/dev/null\x00")
    	for i := 0; i < 3; i++ {
    		ret, errno := fcntl(int32(i), F_GETFD, 0)
    		if ret >= 0 {
    			continue
    		}
    
    		if errno != EBADF {
    			print("runtime: unexpected error while checking standard file descriptor ", i, ", errno=", errno, "\n")
    			throw("cannot open standard fds")
    		}
    
    		if ret := open(&devNull[0], O_RDWR, 0); ret < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:20:25 UTC 2023
    - 1.3K bytes
    - Viewed (3)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfigImpl.java

        @Override
        protected ObjectiveProperties newObjectiveProperties(final String resourcePath, final PropertyFilter propertyFilter) {
            return new ObjectiveProperties(resourcePath) { // for e.g. checking existence and filtering value
                Cache<String, String> cache = CacheBuilder.newBuilder().build();
    
                @Override
                public String get(final String propertyKey) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/tasks/Console.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * <p>Attached to a task property to indicate that the property is not to be taken into account for up-to-date checking,
     * because its value only influences the console output of the task.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/httpresponse/httpresponse.go

    	"golang.org/x/tools/internal/typesinternal"
    )
    
    const Doc = `check for mistakes using HTTP responses
    
    A common mistake when using the net/http package is to defer a function
    call to close the http.Response Body before checking the error that
    determines whether the response is valid:
    
    	resp, err := http.Head(url)
    	defer resp.Body.Close()
    	if err != nil {
    		log.Fatal(err)
    	}
    	// (defer statement belongs here)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/alias.go

    	assert(rhs != nil)
    	a := new(Alias)
    	a.obj = obj
    	a.orig = a
    	a.fromRHS = rhs
    	if obj.typ == nil {
    		obj.typ = a
    	}
    
    	// Ensure that a.actual is set at the end of type checking.
    	if check != nil {
    		check.needsCleanup(a)
    	}
    
    	return a
    }
    
    // newAliasInstance creates a new alias instance for the given origin and type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/projection/ManagedModelProjection.java

                        ModelType<T> propertyType = property.getType();
    
                        // TODO we are relying on the registration having established these links, we should be checking
                        MutableModelNode propertyNode = modelNode.getLink(propertyName);
                        propertyNode.ensureUsable();
    
                        ModelView<? extends T> modelView;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

                    contextualLabel == 'Type \'MyTask\' property \'badTime\' is missing an input or output annotation'
                    details == 'A property without annotation isn\'t considered during up-to-date checking'
                    solutions == [
                        'Add an input or output annotation',
                        'Mark it as @Internal',
                    ]
                    additionalData.asMap == [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-jvm-test-fixtures/src/integTest/groovy/org/gradle/java/fixtures/KotlinTestFixturesIntegrationTest.groovy

     */
    class KotlinTestFixturesIntegrationTest extends AbstractTestFixturesIntegrationTest {
        /**
         * Ensure we make an exception for test fixtures when checking for redundant
         * configuration usage activation - this combination of plugins should not warn.
         */
        @Issue("https://github.com/gradle/gradle/pull/24271")
        def "test kotlin + java-test-fixtures"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 13 11:38:02 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top