Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 385 for anyone (0.12 sec)

  1. pkg/auth/authorizer/abac/abac_test.go

    		{User: uAlice, Verb: "get", Resource: "", NS: "ns1", ExpectDecision: authorizer.DecisionNoOpinion},
    
    		// Chuck can read events, since anyone can.
    		{User: uChuck, Verb: "get", Resource: "events", NS: "ns1", ExpectDecision: authorizer.DecisionAllow},
    		{User: uChuck, Verb: "get", Resource: "events", NS: "", ExpectDecision: authorizer.DecisionAllow},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 40K bytes
    - Viewed (0)
  2. pkg/registry/core/service/strategy.go

    //
    // As a rule, we almost never change user input.  This can get tricky when APIs
    // evolve and new dependent fields are added.  This specific case includes
    // fields that are allocated from a pool and need to be released.  Anyone who
    // is contemplating copying this pattern should think REALLY hard about almost
    // any other option.
    func dropTypeDependentFields(newSvc *api.Service, oldSvc *api.Service) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/security/oauth2-jwt.md

    ```
    eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c
    ```
    
    It is not encrypted, so, anyone could recover the information from the contents.
    
    But it's signed. So, when you receive a token that you emitted, you can verify that you actually emitted it.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. src/runtime/chan.go

    	mysg.elem = ep
    	mysg.waitlink = nil
    	mysg.g = gp
    	mysg.isSelect = false
    	mysg.c = c
    	gp.waiting = mysg
    	gp.param = nil
    	c.sendq.enqueue(mysg)
    	// Signal to anyone trying to shrink our stack that we're about
    	// to park on a channel. The window between when this G's status
    	// changes and when we set gp.activeStackChans is not safe for
    	// stack shrinking.
    	gp.parkingOnChan.Store(true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. pkg/controller/replicaset/replica_set.go

    		rsc.expectations.CreationObserved(logger, rsKey)
    		rsc.queue.Add(rsKey)
    		return
    	}
    
    	// Otherwise, it's an orphan. Get a list of all matching ReplicaSets and sync
    	// them to see if anyone wants to adopt it.
    	// DO NOT observe creation because no controller should be waiting for an
    	// orphan.
    	rss := rsc.getPodReplicaSets(pod)
    	if len(rss) == 0 {
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    		if (!IsPodRunning(p) && !IsPodPending(p)) || p.Spec.HostNetwork {
    			return nil
    		}
    		podIP, err := netip.ParseAddr(p.Status.PodIP)
    		if err != nil {
    			// Is this possible? Probably not in typical case, but anyone could put garbage there.
    			return nil
    		}
    		meshCfg := krt.FetchOne(ctx, MeshConfig.AsCollection())
    		policies := a.buildWorkloadPolicies(ctx, AuthorizationPolicies, PeerAuths, meshCfg, p.Labels, p.Namespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. pilot/pkg/model/virtualservice.go

    func mergeHTTPRoute(root *networking.HTTPRoute, delegate *networking.HTTPRoute) *networking.HTTPRoute {
    	// suppose there are N1 match conditions in root, N2 match conditions in delegate
    	// if match condition of N2 is a subset of anyone in N1, this is a valid matching conditions
    	merged, conflict := mergeHTTPMatchRequests(root.Match, delegate.Match)
    	if conflict {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. src/runtime/select.go

    			c.sendq.enqueue(sg)
    		} else {
    			c.recvq.enqueue(sg)
    		}
    
    		if c.timer != nil {
    			blockTimerChan(c)
    		}
    	}
    
    	// wait for someone to wake us up
    	gp.param = nil
    	// Signal to anyone trying to shrink our stack that we're about
    	// to park on a channel. The window between when this G's status
    	// changes and when we set gp.activeStackChans is not safe for
    	// stack shrinking.
    	gp.parkingOnChan.Store(true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. licenses/github.com/hashicorp/hcl/LICENSE

       except under this disclaimer.
    
    7. Limitation of Liability
    
       Under no circumstances and under no legal theory, whether tort (including
       negligence), contract, or otherwise, shall any Contributor, or anyone who
       distributes Covered Software as permitted above, be liable to You for any
       direct, indirect, special, incidental, or consequential damages of any
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 15.6K bytes
    - Viewed (0)
  10. src/cmd/internal/test2json/test2json.go

    //
    // The input buffer needs to be able to hold any single test
    // directive line we want to recognize, like:
    //
    //	<many spaces> --- PASS: very/nested/s/u/b/t/e/s/t
    //
    // If anyone reports a test directive line > 4k not working, it will
    // be defensible to suggest they restructure their test or test names.
    //
    // The output buffer must be >= utf8.UTFMax, so that it can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
Back to top