Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 80 for abcabc (0.12 sec)

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

    limitations under the License.
    */
    
    package abac
    
    import (
    	"context"
    	"io/ioutil"
    	"os"
    	"reflect"
    	"testing"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apiserver/pkg/authentication/user"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/kubernetes/pkg/apis/abac"
    	"k8s.io/kubernetes/pkg/apis/abac/v0"
    	"k8s.io/kubernetes/pkg/apis/abac/v1beta1"
    )
    
    func TestEmptyFile(t *testing.T) {
    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/apis/abac/v0/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // +k8s:conversion-gen=false
    // +k8s:deepcopy-gen=package
    
    // +groupName=abac.authorization.kubernetes.io
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 28 20:14:20 UTC 2019
    - 736 bytes
    - Viewed (0)
  3. pkg/apis/abac/v1beta1/conversion.go

    import (
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/kubernetes/pkg/apis/abac"
    )
    
    // allAuthenticated matches k8s.io/apiserver/pkg/authentication/user.AllAuthenticated,
    // but we don't want an client library (which must include types), depending on a server library
    const allAuthenticated = "system:authenticated"
    
    func Convert_v1beta1_Policy_To_abac_Policy(in *Policy, out *abac.Policy, s conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 28 20:14:20 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  4. hack/verify-api-groups.sh

    # groups_without_codegen is the list of group we EXPECT to not have the client generated for
    # them.  This happens for types that aren't served from the API server
    groups_without_codegen=(
    	"abac"
    	"imagepolicy"
    	"admission"
    )
    client_gen_file="${KUBE_ROOT}/staging/src/k8s.io/code-generator/cmd/client-gen/main.go"
    
    for group_dirname in "${group_dirnames[@]}"; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 13 09:26:16 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. pkg/kubeapiserver/authorizer/config.go

    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	versionedinformers "k8s.io/client-go/informers"
    	resourcev1alpha2informers "k8s.io/client-go/informers/resource/v1alpha2"
    	"k8s.io/kubernetes/pkg/auth/authorizer/abac"
    	"k8s.io/kubernetes/pkg/auth/nodeidentifier"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubeapiserver/authorizer/modes"
    	"k8s.io/kubernetes/plugin/pkg/auth/authorizer/node"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/PatternStepFactoryTest.groovy

            step1.matches("ac")
            step1.matches("abac")
            !step1.matches("bc")
            !step1.matches("ab")
            !step1.matches("a")
            !step1.matches("c")
    
            and:
            def step2 = PatternStepFactory.getStep("a**c", true);
            step2 instanceof HasPrefixAndSuffixPatternStep
    
            step2.matches("ac")
            step2.matches("abac")
            !step2.matches("bc")
            !step2.matches("ab")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess/tr/stopwords.txt

    # https://github.com/apache/lucene-solr/blob/master/lucene/analysis/common/src/resources/org/apache/lucene/analysis/tr/stopwords.txt
    acaba
    altmış
    altı
    ama
    ancak
    arada
    aslında
    ayrıca
    bana
    bazı
    belki
    ben
    benden
    beni
    benim
    beri
    beş
    bile
    bin
    bir
    birçok
    biri
    birkaç
    birkez
    birşey
    birşeyi
    biz
    bize
    bizden
    bizi
    bizim
    böyle
    böylece
    bu
    buna
    bunda
    bundan
    bunlar
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  8. pkg/apis/abac/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package abac
    
    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
    
    	// Spec describes the policy rule
    	Spec PolicySpec
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 07:28:47 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  9. pkg/apis/abac/v0/conversion.go

    import (
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/kubernetes/pkg/apis/abac"
    )
    
    // allAuthenticated matches k8s.io/apiserver/pkg/authentication/user.AllAuthenticated,
    // but we don't want a client library (which must include types), depending on a server library
    const allAuthenticated = "system:authenticated"
    
    func Convert_v0_Policy_To_abac_Policy(in *Policy, out *abac.Policy, s conversion.Scope) error {
    	out.Spec.User = in.User
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 28 20:14:20 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/RegExpPatternStepTest.java

        }
    
        @Test public void testMultiCharWildcard() {
            RegExpPatternStep step = new RegExpPatternStep("a*c", true);
            assertTrue(step.matches("abc"));
            assertTrue(step.matches("abrac"));
            assertFalse(step.matches("abcd"));
            assertFalse(step.matches("ab"));
            assertFalse(step.matches("a"));
    
            step = new RegExpPatternStep("*", true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top