Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 130 for privilege (0.21 sec)

  1. okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt

     * This class ensures that at most one thread is running at a time. This is initially the JUnit test
     * thread, which yields its execution privilege while calling [runTasks], [runNextTask], or
     * [advanceUntil]. These functions don't return until the task threads are all idle.
     *
     * Task threads release their execution privilege in these ways:
     *
     *  * By yielding in [TaskRunner.Backend.coordinatorWait].
     *  * By yielding in [BlockingQueue.poll].
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. src/net/textproto/reader_test.go

    		"Content-Language: en\r\n" +
    		"SID : 0\r\n" +
    		"Audio Mode : None\r\n" +
    		"Privilege : 127\r\n\r\n")
    	m, err := r.ReadMIMEHeader()
    	want := MIMEHeader{
    		"Foo":              {"bar"},
    		"Content-Language": {"en"},
    		"SID ":             {"0"},
    		"Audio Mode ":      {"None"},
    		"Privilege ":       {"127"},
    	}
    	if !reflect.DeepEqual(m, want) || err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. cni/pkg/repair/repaircontroller.go

    	patchBytes := fmt.Sprintf(`{"metadata":{"labels":{%q:%q}}}`, c.cfg.LabelKey, c.cfg.LabelValue)
    	// Both "pods" and "pods/status" can mutate the metadata. However, pods/status is lower privilege, so we use that instead.
    	_, err := c.client.Kube().CoreV1().Pods(pod.Namespace).Patch(context.Background(), pod.Name, types.MergePatchType,
    		[]byte(patchBytes), metav1.PatchOptions{}, "status")
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. cluster/gce/windows/testonly/install-ssh.psm1

          #
          # Just catch them and ignore them.
          Create-NewProfile $username $pw -ErrorAction Stop
    
          # Add the user to the Administrators group, otherwise we will not have
          # privilege when we ssh.
          Add-LocalGroupMember -Group Administrators -Member $username
        } catch {}
    
        $user_dir = "C:\Users\" + $username
        if (-not (Test-Path $user_dir)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 05:09:18 UTC 2021
    - 11.6K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      repeated PodSecurityPolicy items = 2;
    }
    
    // PodSecurityPolicySpec defines the policy enforced.
    message PodSecurityPolicySpec {
      // privileged determines if a pod can request to be run as privileged.
      // +optional
      optional bool privileged = 1;
    
      // defaultAddCapabilities is the default set of capabilities that will be added to the container
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. docs/sts/ldap.md

    - find accounts whose group memberships have changed; access policies available to a credential are updated to reflect the change, i.e. they will lose any privileges associated with a group they are removed from, and gain any privileges associated with a group they are added to.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. pkg/proxy/util/nfacct/nfacct_linux_test.go

    			handler: &fakeHandler{
    				errs: []error{syscall.EBUSY},
    			},
    			err: ErrObjectAlreadyExists,
    			// expected calls: NFNL_MSG_ACCT_NEW
    			netlinkCalls: 1,
    		},
    		{
    			name:        "insufficient privilege",
    			counterName: "metric-2",
    			handler: &fakeHandler{
    				errs: []error{syscall.EPERM},
    			},
    			err: ErrUnexpected,
    			// expected calls: NFNL_MSG_ACCT_NEW
    			netlinkCalls: 1,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  8. src/path/filepath/path_windows_test.go

    		} else {
    			want = target
    		}
    	} else {
    		want = dirlink
    	}
    	if got != want {
    		t.Errorf(`EvalSymlinks(%q): got %q, want %q`, dirlink, got, want)
    	}
    
    	// Make sure we have sufficient privilege to run mklink command.
    	testenv.MustHaveSymlink(t)
    
    	file := filepath.Join(tmpdir, "file")
    	err = os.WriteFile(file, []byte(""), 0666)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. cni/README.md

    ## Privileges required
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. pkg/securitycontext/accessors_test.go

    func TestContainerSecurityContextAccessor(t *testing.T) {
    	privileged := true
    	runAsUser := int64(1)
    	runAsGroup := int64(1)
    	runAsNonRoot := true
    	readOnlyRootFilesystem := true
    	allowPrivilegeEscalation := true
    
    	testcases := []*api.SecurityContext{
    		nil,
    		{},
    		{Capabilities: &api.Capabilities{Drop: []api.Capability{"test"}}},
    		{Privileged: &privileged},
    		{SELinuxOptions: &api.SELinuxOptions{User: "bob"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 16:15:27 UTC 2023
    - 27.8K bytes
    - Viewed (0)
Back to top