Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 3,857 for Eaccess (0.18 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaPartiallyAppliedSymbol.kt

    /**
     * A callable symbol partially applied with receivers and type arguments. Essentially, this is a call that misses some information. For
     * properties, the missing information is the type of access (read, write, or compound access) to this property. For functions, the missing
     * information is the value arguments for the call.
     */
    public class KaPartiallyAppliedSymbol<out S : KaCallableSymbol, out C : KaCallableSignature<S>>(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/MetadataResolutionRequest.java

        /**
         * 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.
         *
         * @param offline {@code true} to disable remote access, {@code false} to allow network access.
         * @return This request, never {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

            public FieldVisitor visitField(int access, String name, String desc, String signature, Object value) {
                if (((access & PUBLIC_STATIC_FINAL) == PUBLIC_STATIC_FINAL) && Type.getDescriptor(String.class).equals(desc)) {
                    missingStaticStringConstantGetters.put("get" + name, name);
                }
                if (((access & Opcodes.ACC_PRIVATE) > 0) && !isStatic(access) && Type.getDescriptor(boolean.class).equals(desc)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/accesslog.go

    		return cal
    	}
    
    	// We need to build access log. This is needed either on first access or when mesh config changes.
    	lal := model.FileAccessLogFromMeshConfig(mesh.AccessLogFile, mesh)
    	// We add ResponseFlagFilter here, as we want to get listener access logs only on scenarios where we might
    	// not get filter Access Logs like in cases like NR to upstream.
    	lal.Filter = addAccessLogFilter()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileLockManager.java

         * released by calling {@link FileLock#close()}. This method blocks until the lock can be acquired.
         * <p>
         * Enable other processes to request access to the provided lock. Provided action runs when the lock access request is received
         * (it means that the lock is contended).
         *
         * @param target The file to be locked.
         * @param options The lock options.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/javadoc/GroovydocAccess.java

     * limitations under the License.
     */
    
    package org.gradle.api.tasks.javadoc;
    
    /**
     * Represents the setting for the access levels that are included in the Groovydoc.
     *
     * <p>
     * Each level include all less restrictive access levels, e.g. {@link #PACKAGE} also includes items with protected and public access.
     * </p>
     *
     * @since 7.5
     */
    public enum GroovydocAccess {
        PRIVATE,
        PACKAGE,
        PROTECTED,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1002 bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conventions/ConventionsResolutionProcessor.kt

            }
            val nestedObjectAccess = resolutionResult.nestedObjectAccess.mapNotNull { access ->
                findSoftwareType(access.dataObject)?.let { access to it.function.simpleName }
            }.groupBy({ (_, softwareTypeName) -> softwareTypeName }, valueTransform = { (access, _) -> access })
    
            val softwareTypeNames = assignments.keys + additions.keys + nestedObjectAccess.keys
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. cmd/bucket-handlers.go

    		return
    	}
    
    	// Check if anonymous (non-owner) has access to list objects.
    	readable := globalPolicySys.IsAllowed(policy.BucketPolicyArgs{
    		Action:          policy.ListBucketAction,
    		BucketName:      bucket,
    		ConditionValues: getConditionValues(r, "", auth.AnonymousCredentials),
    		IsOwner:         false,
    	})
    
    	// Check if anonymous (non-owner) has access to upload objects.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/PropertyAwareCallInterceptor.java

    /**
     * A call interceptor that can also tell about the type of the property that it intercepts access to.
     */
    @NonNullApi
    public interface PropertyAwareCallInterceptor {
        /**
         * Checks if the interceptor handles property access on instances of the specified receiver type.
         * @return If property access is intercepted, the type of the property. Null otherwise.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:57 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. test/nilptr.go

    var x = &y
    
    func p7() {
    	// Struct field access with large offset.
    	println(f().i) // should crash
    }
    
    func p8() {
    	// Struct field access with large offset.
    	println((*x).i) // should crash
    }
    
    func p9() {
    	// Struct field access with large offset.
    	var t *T
    	println(&t.i) // should crash
    }
    
    func p10() {
    	// Struct field access with large offset.
    	var t *T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top