Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 507 for Pids (0.03 sec)

  1. pilot/pkg/security/authz/builder/testdata/http/extended-dry-run-mix-out.yaml

                rules:
                - orRules:
                    rules:
                    - urlPath:
                        path:
                          exact: /another
            principals:
            - andIds:
                ids:
                - any: true
      shadowRules:
        policies:
          ns[foo]-policy[httpbin-1]-rule[0]:
            permissions:
            - andRules:
                rules:
                - orRules:
                    rules:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 847 bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/testdata/http/extended-deny-and-allow-out1.yaml

        policies:
          ns[foo]-policy[httpbin-deny]-rule[0]:
            permissions:
            - andRules:
                rules:
                - any: true
            principals:
            - andIds:
                ids:
                - orIds:
                    ids:
                    - authenticated:
                        principalName:
                          exact: spiffe://deny
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 539 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/DependencyHandlerApiResolveIntegrationTest.groovy

                        println "gradleApi() ids: " + idsA.get()
                        println "gradleTestKit() files: " + filesB.collect { it.name }
                        println "gradleTestKit() ids: " + idsB.get()
                        println "localGroovy() files: " + filesC.collect { it.name }
                        println "localGroovy() ids: " + idsC.get()
                    }
                }
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 06:59:30 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. cmd/local-locker.go

    				lris, ok := l.lockMap[resource]
    				if !ok {
    					continue
    				}
    				// Collect uids, so we don't mutate while we delete
    				uids := make([]string, 0, len(lris))
    				for _, lri := range lris {
    					uids = append(uids, lri.UID)
    				}
    
    				// Delete collected uids:
    				for _, uid := range uids {
    					lris, ok := l.lockMap[resource]
    					if !ok {
    						// Just to be safe, delete uuids.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 19 22:54:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/testdata/http/extended-custom-grpc-provider-no-namespace-out1.yaml

            - andIds:
                ids:
                - any: true
          istio-ext-authz-ns[foo]-policy[httpbin-2]-rule[0]:
            permissions:
            - andRules:
                rules:
                - orRules:
                    rules:
                    - urlPath:
                        path:
                          exact: /httpbin2
            principals:
            - andIds:
                ids:
                - any: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 873 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testsanitizers/testdata/tsan13.go

    			break;
    		}
    	}
    
    	free(prev);
    
    	return NULL;
    }
    
    static void runThreads(int n) {
    	pthread_t ids[64];
    	int i;
    
    	if (n > 64) {
    		n = 64;
    	}
    	for (i = 0; i < n; i++) {
    		pthread_create(&ids[i], NULL, spin, NULL);
    	}
    	for (i = 0; i < n; i++) {
    		pthread_join(ids[i], NULL);
    	}
    }
    */
    import "C"
    
    import (
    	"io"
    	"runtime"
    	"runtime/pprof"
    	"unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. security/pkg/server/ca/authenticate/cert_authenticator.go

    	if len(chains) == 0 || len(chains[0]) == 0 {
    		return nil, fmt.Errorf("no verified chain is found")
    	}
    
    	ids, err := util.ExtractIDs(chains[0][0].Extensions)
    	if err != nil {
    		return nil, err
    	}
    
    	return &security.Caller{
    		AuthSource: security.AuthSourceClientCertificate,
    		Identities: ids,
    	}, nil
    }
    
    // authenticateHTTP performs mTLS authentication for http requests. Requires having the endpoints on a listener
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 19 02:12:12 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerSpec.groovy

            setupContainerDefaults()
            UserCodeApplicationId id1 = null
            UserCodeApplicationId id2 = null
            List<UserCodeApplicationId> ids = []
            userCodeApplicationContext.apply(Stub(UserCodeSource)) {
                id1 = it
                container.register("a") {
                    ids << userCodeApplicationContext.current()
                }
            }
            userCodeApplicationContext.apply(Stub(UserCodeSource)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/builder/testdata/http/extended-deny-and-allow-out2.yaml

        policies:
          ns[foo]-policy[httpbin-allow]-rule[0]:
            permissions:
            - andRules:
                rules:
                - any: true
            principals:
            - andIds:
                ids:
                - orIds:
                    ids:
                    - authenticated:
                        principalName:
                          exact: spiffe://allow
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 524 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/DependencyGraphBuilderTest.groovy

            traverses root, b
            traverses a, c
            doesNotResolve b, c
    
            when:
            def result = resolve()
            result.rethrowFailure()
    
            then:
            result.components == ids(root, a, b, c)
        }
    
        def "honors component replacements"() {
            given:
            def a = revision('a') // a->c
            def b = revision('b') // b->d, replaces a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 45.1K bytes
    - Viewed (0)
Back to top