Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 114 for oids (0.05 sec)

  1. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

            binFile.text = """#!/usr/bin/env sh
    echo Script PID: \$\$
    
    $binFile.text
    """
    
            when:
            runViaStartScript()
            def pids = result.output.findAll(/PID: \d+/)
    
            then:
            assert pids.size() == 2
            assert pids[0] == pids[1]
        }
    
        @Requires(UnitTestPreconditions.Windows)
        def "can execute generated Windows start script"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. Makefile

    	@(env bash $(PWD)/docs/site-replication/run-multi-site-ldap.sh)
    
    test-site-replication-oidc: install-race ## verify automatic site replication
    	@echo "Running tests for automatic site replication of IAM (with OIDC)"
    	@(env bash $(PWD)/docs/site-replication/run-multi-site-oidc.sh)
    
    test-site-replication-minio: install-race ## verify automatic site replication
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/deadness_analysis.h

        void* pred_;
    
        friend class DeadnessAnalysis;
      };
    
      virtual absl::StatusOr<DeadnessPredicate> GetPredicateFor(Node* n,
                                                                int oidx) const = 0;
    
      // Prints out the internal state of this instance.  For debugging purposes
      // only.
      virtual void Print() const = 0;
      virtual ~DeadnessAnalysis();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/metrics.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package oidc
    
    import (
    	"context"
    	"crypto/sha256"
    	"fmt"
    	"sync"
    	"time"
    
    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	"k8s.io/component-base/metrics"
    	"k8s.io/component-base/metrics/legacyregistry"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/cases/info.go

    //
    // 2) Mid:
    //    MidLetter, MidNumLet, Single_Quote.
    //    (Cf. case-ignorable: MidLetter, MidNumLet, Single_Quote or cat is Mn,
    //    Me, Cf, Lm or Sk).
    //    Rule: Don't break between Letter and Mid, but break between two Mids.
    //
    // 3) Break:
    //    Any other category: NewLine, MidNum, CR, LF, Double_Quote, Katakana, and
    //    Other.
    //    These categories should always result in a break between two cased letters.
    //    Rule: Always break.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. src/syscall/syscall_linux.go

    	a := make([]_Gid_t, n)
    	n, err = getgroups(n, &a[0])
    	if err != nil {
    		return nil, err
    	}
    	gids = make([]int, n)
    	for i, v := range a[0:n] {
    		gids[i] = int(v)
    	}
    	return
    }
    
    var cgo_libc_setgroups unsafe.Pointer // non-nil if cgo linked.
    
    func Setgroups(gids []int) (err error) {
    	n := uintptr(len(gids))
    	if n == 0 {
    		if cgo_libc_setgroups == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/metrics_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package oidc
    
    import (
    	"context"
    	"fmt"
    	"strings"
    	"testing"
    	"time"
    
    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	"k8s.io/component-base/metrics/legacyregistry"
    	"k8s.io/component-base/metrics/testutil"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. internal/config/identity/openid/providercfg.go

    func (p *providerCfg) GetRoleArn() string {
    	if p.RolePolicy == "" {
    		return ""
    	}
    	return p.roleArn.String()
    }
    
    // UserInfo returns claims for authenticated user from userInfo endpoint.
    //
    // Some OIDC implementations such as GitLab do not support
    // claims as part of the normal oauth2 flow, instead rely
    // on service providers making calls to IDP to fetch additional
    // claims available from the UserInfo endpoint
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. pkg/kube/util.go

    		if ap := auths.AuthProvider; ap != nil {
    			// We currently are importing 5 authenticators: gcp, azure, exec, and openstack
    			switch ap.Name {
    			case "oidc":
    				// OIDC is safe as it doesn't read files or execute code.
    				// create-remote-secret specifically supports OIDC so its probably important to not break this.
    			default:
    				if !allowlist.Contains(ap.Name) {
    					// All the others - gcp, azure, exec, and openstack - are unsafe
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. src/cmd/internal/dwarf/dwarf.go

    func inlChildren(slot int, calls *InlCalls) []int {
    	var kids []int
    	if slot != -1 {
    		for _, k := range calls.Calls[slot].Children {
    			if !isEmptyInlinedCall(k, calls) {
    				kids = append(kids, k)
    			}
    		}
    	} else {
    		for k := 0; k < len(calls.Calls); k += 1 {
    			if calls.Calls[k].Root && !isEmptyInlinedCall(k, calls) {
    				kids = append(kids, k)
    			}
    		}
    	}
    	return kids
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
Back to top