Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,857 for Eaccess (0.24 sec)

  1. src/main/java/jcifs/smb1/smb1/ACE.java

     * mask of the ACE, the whole access check fails. If the ACE is an "allow"
     * ACE and <i>all</i> of the bits in the desired access bits match bits in
     * the access mask of the ACE, the access check is successful. Otherwise,
     * more ACEs are evaluated until all desired access bits (combined)
     * are "allowed". If all of the desired access bits are not "allowed"
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/cors_test.go

    					if !reflect.DeepEqual(origin, response.Header.Get("Access-Control-Allow-Origin")) {
    						t.Errorf("Expected %#v, Got %#v", origin, response.Header.Get("Access-Control-Allow-Origin"))
    					}
    
    					if response.Header.Get("Access-Control-Allow-Credentials") == "" {
    						t.Errorf("Expected Access-Control-Allow-Credentials header to be set")
    					}
    
    					if response.Header.Get("Access-Control-Allow-Headers") == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 20 19:15:51 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsDslIntegrationSpec.groovy

                extensions["aValue"] = "hello"
    
                assert extensions["aValue"] == "hello" : "Can access inside buildscript"
            }
    
            assert extensions["aValue"] == "hello" : "Can access outside buildscript"
    
            apply from: '$answerFile'
    
            assert(extensions["theAnswer"]() == 42) : "Can access from applied file"
            """
            then:
            succeeds('help')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 15:15:27 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/ClassVisitorScope.java

        /**
         * Adds a field to the generated type.
         */
        protected void addField(int access, String fieldName, Class<?> type) {
            addField(access, fieldName, getDescriptor(type));
        }
    
        /**
         * Adds a field to the generated type.
         */
        protected void addField(int access, String fieldName, Type type) {
            addField(access, fieldName, type.getDescriptor());
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/AccessibleMember.java

        private final int access;
    
        public AccessibleMember(int access, String name) {
            super(name);
            this.access = access;
        }
    
        public int getAccess() {
            return access;
        }
    
        protected ComparisonChain compare(AccessibleMember o) {
            return super.compare(o).compare(access, o.access);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. src/os/exec.go

    	return p.exited()
    }
    
    // Success reports whether the program exited successfully,
    // such as with exit status 0 on Unix.
    func (p *ProcessState) Success() bool {
    	return p.success()
    }
    
    // Sys returns system-dependent exit information about
    // the process. Convert it to the appropriate underlying
    // type, such as [syscall.WaitStatus] on Unix, to access its contents.
    func (p *ProcessState) Sys() any {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepositoryTest.groovy

        @Shared
        def forbidden = status(403)
        @Shared
        def unauthorized = status(401)
    
        @Subject
        ErrorHandlingModuleComponentRepository.ErrorHandlingModuleComponentRepositoryAccess access
    
        private ErrorHandlingModuleComponentRepository.ErrorHandlingModuleComponentRepositoryAccess createAccess(int maxRetries = 1, int backoff = 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/project/CrossProjectModelAccess.java

         * an instance that behaves correctly regarding cross project model access.
         *
         * @param referrerProject The project that is going to use the Gradle instance
         * @param gradle The Gradle instance that the project has direct access to.
         * @return A Gradle instance that implements correct cross-project model access.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 04:11:36 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/integTest/groovy/org/gradle/internal/declarativedsl/ErrorHandlingOnReflectiveCallsSpec.groovy

                    private final Access access;
                    private final ObjectFactory objects;
    
                    public Access getAccess() {
                        return access;
                    }
    
                    @Inject
                    public Extension(ObjectFactory objects) {
                        this.objects = objects;
                        this.access = objects.newInstance(Access.class);
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/handling-errors.md

    * The client doesn't have access to that resource.
    * The item the client was trying to access doesn't exist.
    * etc.
    
    In these cases, you would normally return an **HTTP status code** in the range of **400** (from 400 to 499).
    
    This is similar to the 200 HTTP status codes (from 200 to 299). Those "200" status codes mean that somehow there was a "success" in the request.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top