- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 321 for authz (0.03 sec)
-
src/main/java/org/codelibs/fess/es/config/exentity/FileConfig.java
final Map<String, String> clientConfigMap = getConfigParameterMap(ConfigName.CLIENT); if (clientConfigMap != null) { paramMap.putAll(clientConfigMap); } // auth params final List<FileAuthentication> fileAuthList = fileAuthenticationService.getFileAuthenticationList(getId()); final List<SmbAuthentication> smbAuthList = new ArrayList<>();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.8K bytes - Viewed (0) -
bin/init.sh
# If we are not using the default, assume its private and we need to authenticate if [[ "${ISTIO_ENVOY_BASE_URL}" != "https://storage.googleapis.com/istio-build/proxy" ]]; then AUTH_HEADER="Authorization: Bearer $(gcloud auth print-access-token)" export AUTH_HEADER fi SIDECAR="${SIDECAR:-envoy}" # OS-neutral vars. These currently only work for linux. ISTIO_ENVOY_VERSION="${ISTIO_ENVOY_VERSION:-${PROXY_REPO_SHA}}"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jan 25 19:11:31 UTC 2024 - 6.1K bytes - Viewed (0) -
ci/official/utilities/setup_macos.sh
# Python 3.12 removed the module `imp` which is needed by gcloud CLI so we set # `CLOUDSDK_PYTHON` to Python 3.11 which is the system Python on TFCI Mac # VMs. export CLOUDSDK_PYTHON=$(which python3.11) gcloud auth activate-service-account --key-file="${GOOGLE_APPLICATION_CREDENTIALS}" fi set -x # When cross-compiling with RBE, we need to copy the macOS sysroot to be
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Feb 15 15:23:28 UTC 2024 - 6.2K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http/RetryAndFollowUpInterceptor.kt
if (header.matches("\\d+".toRegex())) { return Integer.valueOf(header) } return Integer.MAX_VALUE } companion object { /** * How many redirects and auth challenges should we attempt? Chrome follows 21 redirects; Firefox, * curl, and wget follow 20; Safari follows 16; and HTTP/1.0 recommends 5. */ private const val MAX_FOLLOW_UPS = 20 }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 15 13:24:48 UTC 2024 - 12.1K bytes - Viewed (0) -
docs/em/docs/tutorial/security/simple-oauth2.md
đš đ đ `scope` (â), âïž â«ïž đ€ đ đ» âźïž "â" đ đ. đ "â" đ» (đ” đ). đ« đ âïž đŁ đŻ đââ â, đŒ: * `users:read` âïž `users:write` â đŒ. * `instagram_basic` âïž đ±đ / đ±đ. * `https://www.googleapis.com/auth/drive` âïž đșđžđ. /// info Oauth2ïžâŁ "â" đ» đ đŁ đŻ â â. â«ïž đ« đ€ đ„ â«ïž âïž đ đŠč đ `:` âïž đ„ â«ïž đ. đ âč đ ïž đŻ. Oauth2ïžâŁ đ« đ». /// ## đ đ€ `username` & `password`
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java
this.lmHash = a.getAnsiHash(tc, server.encryptionKey); this.ntHash = a.getUnicodeHash(tc, server.encryptionKey); // prohibit HTTP auth attempts for the null session if ( this.lmHash.length == 0 && this.ntHash.length == 0 ) { throw new RuntimeException("Null setup prohibited."); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 17 10:20:23 UTC 2019 - 8.8K bytes - Viewed (0) -
istioctl/pkg/describe/describe.go
"istio.io/istio/pilot/pkg/config/kube/crdclient" "istio.io/istio/pilot/pkg/model" "istio.io/istio/pilot/pkg/networking/util" "istio.io/istio/pilot/pkg/security/authn" pilotcontroller "istio.io/istio/pilot/pkg/serviceregistry/kube/controller" v3 "istio.io/istio/pilot/pkg/xds/v3" "istio.io/istio/pkg/config" analyzerutil "istio.io/istio/pkg/config/analysis/analyzers/util"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 50.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/WebConfig.java
import java.util.Arrays; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.function.Supplier; import java.util.regex.Pattern; import org.apache.http.auth.UsernamePasswordCredentials; import org.codelibs.core.lang.StringUtil; import org.codelibs.fess.Constants; import org.codelibs.fess.app.service.RequestHeaderService; import org.codelibs.fess.app.service.WebAuthenticationService;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
* 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 org.codelibs.fess.auth.chain; import static org.codelibs.core.stream.StreamUtil.stream; import java.io.BufferedReader; import java.io.File; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.3K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosEncData.java
import javax.crypto.Mac; import javax.crypto.NoSuchPaddingException; import javax.crypto.SecretKey; import javax.crypto.spec.IvParameterSpec; import javax.crypto.spec.SecretKeySpec; import javax.security.auth.kerberos.KerberosKey; import org.bouncycastle.asn1.*; import jcifs.pac.ASN1Util; import jcifs.pac.PACDecodingException; import jcifs.util.Encdec; @SuppressWarnings ( "javadoc" )
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Oct 02 12:02:06 UTC 2023 - 11.4K bytes - Viewed (0)