Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,857 for Eaccess (0.2 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromKotlinDslIntegrationTest.groovy

                problem("Build file 'build.gradle.kts': Project ':' cannot access 'Project.plugins' functionality on $message", 2)
            }
    
            where:
            block         | message
            "allprojects" | "subprojects via 'allprojects'"
            "subprojects" | "subprojects"
        }
    
        def "reports problem when build script uses #block block to access dynamically added elements"() {
            createDirs("a", "b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiCoupledProjectsIntegrationTest.groovy

                problem("Build file 'build.gradle': line 10: Project ':' cannot access 'Project.afterEvaluate' functionality on another project ':a'")
                problem("Build file 'build.gradle': line 11: Project ':' cannot access 'myExtension' extension on another project ':a'")
                problem("Build file 'build.gradle': line 3: Project ':' cannot access 'Project.plugins' functionality on another project ':a'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. src/runtime/cgo/gcc_libinit_windows.c

    		thandle = _beginthread(func, 0, arg);
    		if (thandle == -1 && errno == EACCES) {
    			// "Insufficient resources", try again in a bit.
    			//
    			// Note that the first Sleep(0) is a yield.
    			Sleep(tries); // milliseconds
    			continue;
    		} else if (thandle == -1) {
    			break;
    		}
    		return; // Success!
    	}
    
    	fprintf(stderr, "runtime: failed to create new OS thread (%d)\n", errno);
    	abort();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. internal/auth/credentials.go

    	"strings"
    	"time"
    
    	jwtgo "github.com/golang-jwt/jwt/v4"
    	"github.com/minio/minio/internal/jwt"
    )
    
    const (
    	// Minimum length for MinIO access key.
    	accessKeyMinLen = 3
    
    	// Maximum length for MinIO access key.
    	// There is no max length enforcement for access keys
    	accessKeyMaxLen = 20
    
    	// Minimum length for MinIO secret key for both server
    	secretKeyMinLen = 8
    
    	// Maximum secret key length for MinIO, this
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

                problem("Build file 'build.gradle': line 3: Project ':' cannot access 'Project.plugins' functionality on $message", 2)
                problem("Build file 'build.gradle': line 4: Project ':' cannot access 'java' extension on $message", 2)
                problem("Build file 'build.gradle': line 5: Project ':' cannot access 'java' extension on $message", 2)
            }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/AccessRule.java

         *     <li>2: the rule defines discouraged paths</li>
         * </ul>
         *
         * @return The type of this access rule.
         */
        int getKind();
    
        /**
         * Returns the file pattern of this access rule.
         *
         * @return The file pattern of this access rule.
         */
        String getPattern();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. src/internal/syscall/windows/registry/key.go

    // and returns the new key and an error.
    // The access parameter specifies desired access rights to the
    // key to be opened.
    func OpenKey(k Key, path string, access uint32) (Key, error) {
    	p, err := syscall.UTF16PtrFromString(path)
    	if err != nil {
    		return 0, err
    	}
    	var subkey syscall.Handle
    	err = syscall.RegOpenKeyEx(syscall.Handle(k), p, 0, access, &subkey)
    	if err != nil {
    		return 0, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. src/math/big/arith_decl.go

    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/remyoudompheng/bigfft
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname addVV
    //go:noescape
    func addVV(z, x, y []Word) (c Word)
    
    // subVV should be an internal detail,
    // but widely used packages access it using linkname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:15:13 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/software/resources/src/main/java/org/gradle/internal/resource/ExternalResourceRepository.java

        /**
         * Returns the resource with the given name. Note that this method does not access the resource in any way, it simply creates an object that can. To access the resource, use the methods on the returned object.
         *
         * @param resource The location of the resource
         * @param revalidate Ensure the external resource is not stale when reading its content
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/artifact/repository/RepositoryRequest.java

    /**
     * Collects basic settings to access the repository system.
     *
     */
    public interface RepositoryRequest {
    
        /**
         * Indicates whether network access to remote repositories has been disabled.
         *
         * @return {@code true} if remote access has been disabled, {@code false} otherwise.
         */
        boolean isOffline();
    
        /**
         * Enables/disables network access to remote repositories.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top