Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for abcabc (0.12 sec)

  1. src/regexp/all_test.go

    	// of a character.
    	{"[a-c]*", "x", "\u65e5", "x\u65e5x"},
    	{"[^\u65e5]", "x", "abc\u65e5def", "xxx\u65e5xxx"},
    
    	// Start and end of a string.
    	{"^[a-c]*", "x", "abcdabc", "xdabc"},
    	{"[a-c]*$", "x", "abcdabc", "abcdx"},
    	{"^[a-c]*$", "x", "abcdabc", "abcdabc"},
    	{"^[a-c]*", "x", "abc", "x"},
    	{"[a-c]*$", "x", "abc", "x"},
    	{"^[a-c]*$", "x", "abc", "x"},
    	{"^[a-c]*", "x", "dabce", "xdabce"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. tests/integration/security/normalization_test.go

    						{"/xyz%30..//abc", "/xyz%30..//abc"},
    						{"/app/%2E./admin", "/app/%2E./admin"},
    						{`/app\admin`, `/app\admin`},
    						{`/app/\/\/\admin`, `/app/\/\/\admin`},
    						{`/%2Fapp%5cadmin%5Cabc`, `/%2Fapp%5cadmin%5Cabc`},
    						{`/%5Capp%2f%5c%2F%2e%2e%2fadmin%5c\abc`, `/%5Capp%2f%5c%2F%2e%2e%2fadmin%5c\abc`},
    						{`/app//../admin`, `/app//../admin`},
    						{`/app//../../admin`, `/app//../../admin`},
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. 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)
  4. cluster/gce/gci/configure-kubeapiserver.sh

      local -r src_dir="${KUBE_HOME}/kube-manifests/kubernetes/gci-trusty"
    
      # Enable ABAC mode unless the user explicitly opts out with ENABLE_LEGACY_ABAC=false
      if [[ "${ENABLE_LEGACY_ABAC:-}" != "false" ]]; then
        echo "Warning: Enabling legacy ABAC policy. All service accounts will have superuser API access. Set ENABLE_LEGACY_ABAC=false to disable this."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/CharSourceTest.java

        CharSource source = CharSource.wrap("abcd");
        Iterable<CharSource> cycle = Iterables.cycle(ImmutableList.of(source));
        CharSource concatenated = CharSource.concat(cycle);
    
        String expected = "abcdabcd";
    
        // read the first 8 chars manually, since there's no equivalent to ByteSource.slice
        // TODO(cgdecker): Add CharSource.slice?
        StringBuilder builder = new StringBuilder();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. cluster/gce/upgrade.sh

      # kubeconfig:username, and then under kubeconfig:username-basic-auth.
      # TODO: KUBE_USER is used in generating ABAC policy which the
      # apiserver may not have enabled. If it's enabled, we must have a user
      # to generate a valid ABAC policy. If the username changes, should
      # the script fail? Should we generate a default username and password
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. cluster/gce/config-default.sh

    ENABLE_DEFAULT_STORAGE_CLASS="${ENABLE_DEFAULT_STORAGE_CLASS:-false}"
    
    # Optional: install volume snapshot CRDs
    ENABLE_VOLUME_SNAPSHOTS="${ENABLE_VOLUME_SNAPSHOTS:-true}"
    
    # Optional: Enable legacy ABAC policy that makes all service accounts superusers.
    ENABLE_LEGACY_ABAC="${ENABLE_LEGACY_ABAC:-false}" # true, false
    
    # Indicates if the values (i.e. KUBE_USER and KUBE_PASSWORD for basic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. build/lib/release.sh

      cp "${src_dir}/etcd.manifest" "${dst_dir}"
      cp "${src_dir}/kube-scheduler.manifest" "${dst_dir}"
      cp "${src_dir}/kube-apiserver.manifest" "${dst_dir}"
      cp "${src_dir}/konnectivity-server.yaml" "${dst_dir}"
      cp "${src_dir}/abac-authz-policy.jsonl" "${dst_dir}"
      cp "${src_dir}/cloud-controller-manager.manifest" "${dst_dir}"
      cp "${src_dir}/kube-controller-manager.manifest" "${dst_dir}"
      cp "${src_dir}/kube-addon-manager.yaml" "${dst_dir}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top