Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 308 for Accessible (0.46 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultAntBuilderTest.groovy

            when:
            Field field = groovy.ant.AntBuilder.class.getDeclaredField('collectorTarget')
            field.accessible = true
            Target target = field.get(ant)
            field = target.class.getDeclaredField('children')
            field.accessible = true
            List children = field.get(target)
    
            then:
            children.isEmpty()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 11 16:17:40 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/go/testdata/script/mod_modinfo.txt

    go mod edit -require=rsc.io/quote@v1.5.2
    go mod edit -replace=rsc.io/quote@v1.5.2=rsc.io/quote@v1.0.0
    go mod tidy # populate go.sum
    
    # Build a binary and ensure that it can output its own debug info.
    # The debug info should be accessible before main starts (golang.org/issue/29628).
    go build
    exec ./x$GOEXE
    stderr 'mod\s+x\s+\(devel\)'
    stderr 'dep\s+rsc.io/quote\s+v1.5.2\s+'
    stderr '=>\s+rsc.io/quote\s+v1.0.0\s+h1:'
    stderr 'Hello, world.'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  7. 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)
  8. docs/chroot/README.md

    Endpoint:  http://192.168.1.92:9000  http://65.19.167.92:9000
    AccessKey: MVPSPBW4NP2CMV1W3TXD
    SecretKey: X3RKxEeFOI8InuNWoPsbG+XEVoaJVCqbvxe+PTOa
    ...
    ...
    ```
    
    Instance is now accessible on the host at port 9000, proceed to access the Web browser at <http://127.0.0.1:9000/>
    
    ## Explore Further
    
    - [MinIO Erasure Code Overview](https://min.io/docs/minio/linux/operations/concepts/erasure-coding.html)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. 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)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DependencyConstraintMetadataRulesTest.groovy

                instantiator, notationParser, constraintNotationParser,
                variantAction(variantName, action))
        }
    
        def "maven optional dependencies are not accessible as dependency constraints"() {
            given:
            def mavenMetadata = mavenMetadataFactory.create(componentIdentifier, [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top