Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for Accessible (0.28 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/lifetime/KotlinAlwaysAccessibleLifetimeToken.kt

        }
    
        override fun isAccessible(): Boolean {
            return true
        }
    
        override fun getInaccessibilityReason(): String {
            error("Getting inaccessibility reason for validity token when it is accessible")
        }
    }
    
    public object KotlinAlwaysAccessibleLifetimeTokenFactory : KaLifetimeTokenFactory() {
        override val identifier: KClass<out KaLifetimeToken> = KotlinAlwaysAccessibleLifetimeToken::class
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.1K bytes
    - Viewed (1)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/AccessRule.java

     *
     * @since 3.0
     */
    public interface AccessRule {
    
        /**
         * Returns the encoded type of the access rule. The meaning of the values:
         * <ul>
         *     <li>0: the rule defines accessible paths</li>
         *     <li>1: the rule defines inaccessible paths</li>
         *     <li>2: the rule defines discouraged paths</li>
         * </ul>
         *
         * @return The type of this access rule.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/hwcap_linux.go

    			case _AT_HWCAP:
    				hwCap = val
    			case _AT_HWCAP2:
    				hwCap2 = val
    			}
    		}
    		return nil
    	}
    
    	buf, err := os.ReadFile(procAuxv)
    	if err != nil {
    		// e.g. on android /proc/self/auxv is not accessible, so silently
    		// ignore the error and leave Initialized = false. On some
    		// architectures (e.g. arm64) doinit() implements a fallback
    		// readout and will set Initialized = true again.
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirNonStaticMembersScope.kt

    import org.jetbrains.kotlin.name.Name
    
    /**
     * [FirNonStaticMembersScope] includes non-static callables and inner classes.
     *
     * Inner classes are included because they are accessible from a value of the outer class. For example:
     *
     * ```
     * class Outer {
     *     inner class Inner
     * }
     *
     * fun foo() {
     *     val outer = Outer()
     *     outer.Inner()
     * }
     * ```
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 10 13:38:00 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/lifetime/KotlinReadActionConfinementLifetimeToken.kt

            if (currentToken != this) return "Using a lifetime owner from an old `analyze` context."
    
            error("Cannot get an inaccessibility reason for a lifetime token when it's accessible.")
        }
    }
    
    public object KotlinReadActionConfinementLifetimeTokenFactory : KaLifetimeTokenFactory() {
        override val identifier: KClass<out KaLifetimeToken> = KotlinReadActionConfinementLifetimeToken::class
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemNode.java

         *
         * {@link Optional#empty()} if no information is available.
         */
        Optional<MetadataSnapshot> getSnapshot();
    
        boolean hasDescendants();
    
        /**
         * Returns all the snapshot roots accessible from the node.
         */
        Stream<FileSystemLocationSnapshot> rootSnapshots();
    
        /*
         * Gets a snapshot from the current node with relative path filePath.substring(offset).
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/results/VisitedGraphResults.java

         */
        void visitFailures(Consumer<Throwable> visitor);
    
        /**
         * Returns all failures to resolve a dependency.
         * These failures are also accessible via the resolution result.
         */
        Set<UnresolvedDependency> getUnresolvedDependencies();
    
        /**
         * Returns an optional failure describing an error that occurred during resolution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/CacheControlTest.kt

        assertThat(cacheControl.onlyIfCached).isTrue()
        assertThat(cacheControl.noTransform).isTrue()
        assertThat(cacheControl.immutable).isTrue()
    
        // These members are accessible to response headers only.
        assertThat(cacheControl.sMaxAgeSeconds).isEqualTo(-1)
        assertThat(cacheControl.isPrivate).isFalse()
        assertThat(cacheControl.isPublic).isFalse()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. docs/fr/docs/advanced/additional-status-codes.md

    !!! note "Détails techniques"
        Vous pouvez également utiliser `from starlette.responses import JSONResponse`.
    
        Pour plus de commodités, **FastAPI** fournit les objets `starlette.responses` sous forme d'un alias accessible par `fastapi.responses`. Mais la plupart des réponses disponibles proviennent directement de Starlette. Il en est de même avec l'objet `statut`.
    
    ## Documents OpenAPI et API
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/reference-policy-service.status.yaml.golden

        - lastTransitionTime: fake
          message: Route was valid
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: backendRef httpbin/default not accessible to a HTTPRoute in namespace
            "istio-system" (missing a ReferenceGrant?)
          reason: RefNotPermitted
          status: "False"
          type: ResolvedRefs
        controllerName: istio.io/gateway-controller
        parentRef:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 16 17:59:50 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top