Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 218 for oris (0.05 sec)

  1. pilot/pkg/security/authz/builder/testdata/http/extended-simple-policy-multiple-td-aliases-out.yaml

        policies:
          ns[foo]-policy[httpbin]-rule[0]:
            permissions:
            - andRules:
                rules:
                - any: true
            principals:
            - andIds:
                ids:
                - orIds:
                    ids:
                    - authenticated:
                        principalName:
                          exact: spiffe://td1/ns/rule[0]/sa/from[0]-principal[0]
                    - authenticated:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/testdata/http/td-aliases-source-principal-out.yaml

                rules:
                - any: true
            principals:
            - andIds:
                ids:
                - orIds:
                    ids:
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: .*/ns/istio-system/.*
                - orIds:
                    ids:
                    - authenticated:
                        principalName:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/http/simple-policy-principal-with-wildcard-out.yaml

                - any: true
            principals:
            - andIds:
                ids:
                - orIds:
                    ids:
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: .+
            - andIds:
                ids:
                - orIds:
                    ids:
                    - authenticated:
                        principalName:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. src/math/big/prime_test.go

    		// https://oeis.org/A001262
    		[]int{2047, 3277, 4033, 4681, 8321, 15841, 29341, 42799, 49141, 52633, 65281, 74665, 80581, 85489, 88357, 90751})
    }
    
    func TestLucasPseudoprimes(t *testing.T) {
    	testPseudoprimes(t, "probablyPrimeLucas",
    		func(n nat) bool { return n.probablyPrimeLucas() && !n.probablyPrimeMillerRabin(1, true) },
    		// https://oeis.org/A217719
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 7.1K bytes
    - Viewed (0)
  5. .github/workflows/issues.yaml

          - opened
    
    jobs:
      add-to-project:
        name: Add issue to project
        runs-on: ubuntu-latest
        steps:
          - uses: actions/add-to-project@v0.5.0
            with:
              project-url: https://github.com/orgs/miniohq/projects/2
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 11 07:02:00 UTC 2024
    - 338 bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/testdata/http/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: Tue Oct 17 16:35:46 UTC 2023
    - 524 bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/testdata/tcp/allow-both-http-tcp-out.yaml

            permissions:
            - andRules:
                rules:
                - orRules:
                    rules:
                    - destinationPort: 80
            principals:
            - andIds:
                ids:
                - orIds:
                    ids:
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: .*/ns/ns-1/.*
      shadowRulesStatPrefix: istio_dry_run_allow_
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 642 bytes
    - Viewed (0)
  8. ci/devinfra/README.md

    > directory are stable and appropriate documentation around its usage is in
    > place.
    
    Maintainer: TensorFlow DevInfra
    
    Issue Reporting: File an issue against this repo and tag
    [@devinfra](https://github.com/orgs/tensorflow/teams/devinfra)
    
    ********************************************************************************
    
    A directory for build and CI related scripts and jobs managed by the TensorFlow
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 21:00:01 UTC 2023
    - 732 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/subr.go

    	return types.LocalPkg.LookupNum(prefix, n)
    }
    
    // Given funarg struct list, return list of fn args.
    func NewFuncParams(origs []*types.Field) []*types.Field {
    	res := make([]*types.Field, len(origs))
    	for i, orig := range origs {
    		p := types.NewField(orig.Pos, orig.Sym, orig.Type)
    		p.SetIsDDD(orig.IsDDD())
    		res[i] = p
    	}
    	return res
    }
    
    // NodAddr returns a node representing &n at base.Pos.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  10. src/math/big/prime.go

    // March 2000, pp. 873-891.
    // https://www.ams.org/journals/mcom/2001-70-234/S0025-5718-00-01197-2/S0025-5718-00-01197-2.pdf
    //
    // Baillie, "Extra strong Lucas pseudoprimes", OEIS A217719, https://oeis.org/A217719.
    //
    // Jacobsen, "Pseudoprime Statistics, Tables, and Data", http://ntheory.org/pseudoprimes.html.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
Back to top