Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 80 for abcabc (0.15 sec)

  1. pkg/apis/abac/v1beta1/types.go

    // +k8s:openapi-gen=true
    
    package v1beta1
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Policy contains a single ABAC policy rule
    type Policy struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Spec describes the policy rule
    	Spec PolicySpec `json:"spec"`
    }
    
    // PolicySpec contains the attributes for a policy rule
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 18 16:05:04 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  2. hack/lib/init.sh

    }"
    
    # not all group versions are exposed by the server.  This list contains those
    # which are not available so we don't generate clients or swagger for them
    KUBE_NONSERVER_GROUP_VERSIONS="
     abac.authorization.kubernetes.io/v0 \
     abac.authorization.kubernetes.io/v1beta1 \
     apidiscovery.k8s.io/v2beta1 \
     apidiscovery.k8s.io/v2 \
     componentconfig/v1alpha1 \
     imagepolicy.k8s.io/v1alpha1\
     admission.k8s.io/v1\
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. internal/s3select/sql/parser_test.go

    		}
    		if string(*k.Lit) == "" {
    			t.Fatalf("Incorrect parse %#v", k)
    		}
    		// repr.Println(k, repr.Indent("  "), repr.OmitEmpty(true))
    	}
    
    	invalidCases := []string{
    		"['abc'']",
    		"['-abc'sc']",
    		"[abc']",
    		"['ac]",
    	}
    	for i, tc := range invalidCases {
    		err := p.ParseString(tc, &k)
    		if err == nil {
    			t.Fatalf("%d: %v", i, err)
    		}
    		// fmt.Println(tc, err)
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. docs/sts/casdoor.md

    Casdoor is a UI-first centralized authentication / Single-Sign-On (SSO) platform supporting OAuth 2.0, OIDC and SAML, integrated with Casbin RBAC and ABAC permission management. This document covers configuring Casdoor identity provider support with MinIO.
    
    ## Prerequisites
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/extra-models.md

    E, então, adicionando o argumento de palavra-chave extra `hashed_password=hashed_password`, como em:
    
    ```Python
    UserInDB(**user_in.dict(), hashed_password=hashed_password)
    ```
    
    ...acaba sendo como:
    
    ```Python
    UserInDB(
        username = user_dict["username"],
        password = user_dict["password"],
        email = user_dict["email"],
        full_name = user_dict["full_name"],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/options/authorization.go

    		}
    	}
    
    	if o.PolicyFile != "" && !modes.Has(authzmodes.ModeABAC) {
    		allErrors = append(allErrors, fmt.Errorf("cannot specify --authorization-policy-file without mode ABAC"))
    	}
    
    	if o.WebhookConfigFile != "" && !modes.Has(authzmodes.ModeWebhook) {
    		allErrors = append(allErrors, fmt.Errorf("cannot specify --authorization-webhook-config-file without mode Webhook"))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. src/regexp/find_test.go

    	// fixed bugs
    	{`ab$`, "cab", build(1, 1, 3)},
    	{`axxb$`, "axxcb", nil},
    	{`data`, "daXY data", build(1, 5, 9)},
    	{`da(.)a$`, "daXY data", build(1, 5, 9, 7, 8)},
    	{`zx+`, "zzx", build(1, 1, 3)},
    	{`ab$`, "abcab", build(1, 3, 5)},
    	{`(aa)*$`, "a", build(1, 1, 1, -1, -1)},
    	{`(?:.|(?:.a))`, "", nil},
    	{`(?:A(?:A|a))`, "Aa", build(1, 0, 2)},
    	{`(?:A|(?:A|a))`, "a", build(1, 0, 1)},
    	{`(a){0}`, "", build(1, 0, 0, -1, -1)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 15:28:50 UTC 2021
    - 16.3K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/arch/arm.go

    	case arm.AMULA, arm.AMULS, arm.AMMULA, arm.AMMULS, arm.AMULABB, arm.AMULAWB, arm.AMULAWT:
    		return true
    	}
    	return false
    }
    
    var bcode = []obj.As{
    	arm.ABEQ,
    	arm.ABNE,
    	arm.ABCS,
    	arm.ABCC,
    	arm.ABMI,
    	arm.ABPL,
    	arm.ABVS,
    	arm.ABVC,
    	arm.ABHI,
    	arm.ABLS,
    	arm.ABGE,
    	arm.ABLT,
    	arm.ABGT,
    	arm.ABLE,
    	arm.AB,
    	obj.ANOP,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  9. src/image/png/testdata/pngsuite/ftbwn0g16.sng

    ffff ffff ffff 9292 69ae 6f4d 8fb1 8f6d 9191 9494 9797 9999 9b9b 9999 8b8b 7f7f 7e7e 7e7e 7d7d 7777 6262 54d2 25d7 1773 10c8 0c12 0bd7 2f1b acac ffff ffff ffff 
    ffff ffff ffff 9494 67f1 6a00 8517 8fb1 905f 9393 9371 7a19 7f65 97fa 9e9e 9c9c 8e8e 7e7e 6a6a 5a5a 57af 2ce6 1b97 1264 0cd0 07e7 0b27 2403 d6d6 ffff ffff ffff 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 28 02:10:13 UTC 2016
    - 5.2K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm/a.out.go

    	ACMP
    	ACMN
    	AORR
    	ABIC
    
    	AMVN
    
    	/*
    	 * Do not reorder or fragment the conditional branch
    	 * opcodes, or the predication code will break
    	 */
    	ABEQ
    	ABNE
    	ABCS
    	ABHS
    	ABCC
    	ABLO
    	ABMI
    	ABPL
    	ABVS
    	ABVC
    	ABHI
    	ABLS
    	ABGE
    	ABLT
    	ABGT
    	ABLE
    
    	AMOVWD
    	AMOVWF
    	AMOVDW
    	AMOVFW
    	AMOVFD
    	AMOVDF
    	AMOVF
    	AMOVD
    
    	ACMPF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 05 16:22:12 UTC 2021
    - 7K bytes
    - Viewed (0)
Back to top