Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 3,857 for Eaccess (0.11 sec)

  1. test/nilptr_aix.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.1K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerCachingSmokeTest.groovy

            ':santa-tracker:writeDebugAppMetadata': SUCCESS,
            ':santa-tracker:writeDebugModuleMetadata': SUCCESS,
            ':santa-tracker:writeDebugSigningConfigVersions': SUCCESS,
            ':snowballrun:assembleDebug': SUCCESS,
            ':snowballrun:checkDebugAarMetadata': SUCCESS,
            ':snowballrun:checkDebugDuplicateClasses': SUCCESS,
            ':snowballrun:compileDebugJavaWithJavac': FROM_CACHE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 13:45:43 UTC 2024
    - 209.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/ExecutionNodeAccessHierarchy.java

        }
    
        /**
         * Returns all nodes which access the location.
         *
         * That includes node which access ancestors or children of the location.
         */
        public ImmutableSet<Node> getNodesAccessing(String location) {
            return visitValues(location, new CollectingNodeAccessVisitor());
        }
    
        /**
         * Visits all nodes which access the location.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:10:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/work/DefaultWorkerLeaseServiceProjectLockTest.groovy

                            def projectLock = workerLeaseService.getProjectLock(path("root"), path(":project"))
                            boolean success = coordinationService.withStateLock(tryLock(projectLock))
                            try {
                                if (success) {
                                    assert lockIsHeld(projectLock)
                                    break
                                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/ModelContainer.java

    import java.util.function.Function;
    
    /**
     * Encapsulates some mutable model, and provides synchronized access to the model.
     */
    public interface ModelContainer<T> {
    
        /**
         * Runs the given function to calculate a value from the public mutable model. Applies best effort synchronization to prevent concurrent access to a particular project from multiple threads.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. src/net/http/clone.go

    package http
    
    import (
    	"mime/multipart"
    	"net/textproto"
    	"net/url"
    	_ "unsafe" // for linkname
    )
    
    // cloneURLValues should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/searKing/golang
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname cloneURLValues
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_sumdb_proxy.txt

    cp go.mod.orig go.mod
    env GOSUMDB=$sumdb' '$proxy/sumdb-direct
    go get rsc.io/fortune@v1.0.0
    rm $GOPATH/pkg/mod/cache/download/sumdb
    rm go.sum
    
    # direct access fails (because localhost.localdev does not exist)
    # web.get is providing the error message - there's no actual network access.
    cp go.mod.orig go.mod
    env GOSUMDB=$sumdb
    env GOPROXY=direct
    ! go get rsc.io/fortune@v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/InstrumentingBackwardsCompatibilityVisitor.java

            String newDescriptor = fixDescriptorForBackwardCompatibility(descriptor);
            return super.visitField(access, name, newDescriptor, signature, value);
        }
    
        @Override
        public MethodVisitor visitMethod(int access, String name, String descriptor, String signature, String[] exceptions) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 08:17:26 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/DelegatedGradlePropertiesExtensionsTest.kt

    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Assert.fail
    import org.junit.Test
    
    
    class DelegatedGradlePropertiesExtensionsTest {
    
        @Test
        fun `non-nullable delegated property access of existing non-null gradle property`() {
    
            withMockForSettings(existing = "p" to 42) {
    
                val p: Int by settings
                assertThat(p, equalTo(42))
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:44:53 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. cmd/jwt.go

    	defaultInterNodeJWTExpiry = 15 * time.Minute
    )
    
    var (
    	errInvalidAccessKeyID = errors.New("The access key ID you provided does not exist in our records")
    	errAccessKeyDisabled  = errors.New("The access key you provided is disabled")
    	errAuthentication     = errors.New("Authentication failed, check your access credentials")
    	errNoAuthToken        = errors.New("JWT token missing")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top