Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 117 for Eaccess (0.21 sec)

  1. cmd/server_test.go

    }
    
    func (s *TestSuiteCommon) TestCors(c *check) {
    	expectedMap := http.Header{}
    	expectedMap.Set("Access-Control-Allow-Credentials", "true")
    	expectedMap.Set("Access-Control-Allow-Origin", "http://foobar.com")
    	expectedMap["Access-Control-Expose-Headers"] = []string{
    		"Date",
    		"Etag",
    		"Server",
    		"Connection",
    		"Accept-Ranges",
    		"Content-Range",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	}
    	return
    }
    
    func OpenProcessToken(process Handle, access uint32, token *Token) (err error) {
    	r1, _, e1 := syscall.Syscall(procOpenProcessToken.Addr(), 3, uintptr(process), uintptr(access), uintptr(unsafe.Pointer(token)))
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func OpenSCManager(machineName *uint16, databaseName *uint16, access uint32) (handle Handle, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  3. pkg/ctrlz/assets/static/css/bootstrap-4.0.0.min.css

    r:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 141.5K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    	case _Gscanrunnable,
    		_Gscanwaiting,
    		_Gscanrunning,
    		_Gscansyscall,
    		_Gscanpreempted:
    		if newval == oldval&^_Gscan {
    			success = gp.atomicstatus.CompareAndSwap(oldval, newval)
    		}
    	}
    	if !success {
    		print("runtime: casfrom_Gscanstatus failed gp=", gp, ", oldval=", hex(oldval), ", newval=", hex(newval), "\n")
    		dumpgstatus(gp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. pkg/apis/apps/validation/validation_test.go

    	for _, testCase := range append(successCases, errorCases...) {
    		name := testCase.name
    		var testTitle string
    		if len(testCase.errs) == 0 {
    			testTitle = fmt.Sprintf("success case %s", name)
    		} else {
    			testTitle = fmt.Sprintf("error case %s", name)
    		}
    
    		t.Run(testTitle, func(t *testing.T) {
    			if strings.Contains(name, enableStatefulSetAutoDeletePVC) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            def outputDir2 = immutableOutputDir("lib2-1.0.jar", "lib2-1.0.jar.txt").assertExists()
            journal.assertExists()
    
            when:
            run '--stop' // ensure daemon does not cache file access times in memory
            def beforeCleanup = MILLISECONDS.toSeconds(System.currentTimeMillis())
            writeLastTransformationAccessTimeToJournal(outputDir1.parentFile, daysAgo(DEFAULT_MAX_AGE_IN_DAYS_FOR_CREATED_CACHE_ENTRIES + 1))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.5.md

    - **Auth**
      - [alpha] Further polishing of the Role-based access control alpha API including a default set of cluster roles. ([docs](http://kubernetes.io/docs/admin/authorization/)) ([kubernetes/features#2](https://github.com/kubernetes/enhancements/issues/2))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  8. tests/integration/pilot/common/routing.go

    						},
    						Count: 1,
    						Check: check.And(
    							check.OK(),
    							check.ResponseHeaders(map[string]string{
    								"Access-Control-Allow-Origin":  "cors.com",
    								"Access-Control-Allow-Methods": "POST,GET",
    								"Access-Control-Allow-Headers": "X-Foo-Bar,X-Foo-Baz",
    								"Access-Control-Max-Age":       "86400",
    							})),
    					}
    				}(),
    			},
    			{
    				name: "get",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CallTest.kt

        }
        server.enqueue(MockResponse(body = "Success!"))
        val credential = basic("jesse", "secret")
        client =
          client.newBuilder()
            .authenticator(RecordingOkAuthenticator(credential, null))
            .build()
        executeSynchronously("/")
          .assertCode(200)
          .assertBody("Success!")
      }
    
      @Test
      fun doesNotAttemptAuthorization21Times() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  10. pkg/volume/util/operationexecutor/operation_generator.go

    			return volumetypes.NewOperationContext(eventErr, detailedErr, migrated)
    		}
    
    		// Enforce ReadWriteOncePod access mode if it is the only one present. This is also enforced during scheduling.
    		if actualStateOfWorld.IsVolumeMountedElsewhere(volumeToMount.VolumeName, volumeToMount.PodName) &&
    			// Because we do not know what access mode the pod intends to use if there are multiple.
    			len(volumeToMount.VolumeSpec.PersistentVolume.Spec.AccessModes) == 1 &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
Back to top