- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 100 for subresources (0.14 sec)
-
CHANGELOG/CHANGELOG-1.23.md
- Kube-apiserver: requests to node, Service, and Pod `/proxy` subresources with no additional URL path now only automatically redirect GET and HEAD requests. ([#95128](https://github.com/kubernetes/kubernetes/pull/95128), [@Riaankl](https://github.com/Riaankl))
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Tue Feb 28 21:06:52 UTC 2023 - 424.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java
*/ package jcifs.smb; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.CIFSException; import jcifs.CloseableIterator; import jcifs.ResourceNameFilter; import jcifs.SmbResource; /** * @author mbechler * */ public abstract class DirFileEntryEnumIteratorBase implements CloseableIterator<FileEntry> {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.8K bytes - Viewed (0) -
src/test/java/jcifs/tests/TimeoutTest.java
import org.junit.runners.Parameterized.Parameters; import jcifs.Address; import jcifs.CIFSContext; import jcifs.CIFSException; import jcifs.NameServiceClient; import jcifs.NetbiosAddress; import jcifs.SmbResource; import jcifs.config.DelegatingConfiguration; import jcifs.context.CIFSContextWrapper; import jcifs.netbios.UniAddress; import jcifs.smb.SmbException; import jcifs.smb.SmbFile; import jcifs.smb.SmbSessionInternal;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 12.4K bytes - Viewed (0) -
src/test/java/jcifs/tests/BaseCIFSTest.java
return new SmbFile(getTestShareURL(), withTestNTLMCredentials(getContext())); } protected SmbResource getDefaultShareRoot ( CIFSContext ctx ) throws MalformedURLException { return new SmbFile(getTestShareURL(), withTestNTLMCredentials(ctx)); } protected void checkConnection ( SmbResource f ) throws CIFSException { assertNotNull(f); f.exists(); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.1K bytes - Viewed (0) -
src/main/java/jcifs/EmptyIterator.java
*/ public class EmptyIterator implements CloseableIterator<SmbResource> { /** * {@inheritDoc} * * @see java.util.Iterator#hasNext() */ @Override public boolean hasNext () { return false; } /** * {@inheritDoc} * * @see java.util.Iterator#next() */ @Override public SmbResource next () { return null; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Oct 16 10:32:35 UTC 2018 - 1.5K bytes - Viewed (0) -
src/test/java/jcifs/tests/KerberosTest.java
import org.junit.runners.Parameterized.Parameters; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.CIFSContext; import jcifs.CIFSException; import jcifs.ResolverType; import jcifs.SmbResource; import jcifs.SmbTreeHandle; import jcifs.smb.JAASAuthenticator; import jcifs.smb.Kerb5Authenticator; import jcifs.smb.SmbException; import jcifs.smb.SmbFile; import jcifs.smb.SmbSessionInternal;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 01 09:46:04 UTC 2020 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRoot.java
*/ package org.codelibs.fess.tomcat.webresources; import java.util.jar.Attributes; import java.util.jar.JarFile; import java.util.jar.Manifest; import java.util.logging.Level; import java.util.logging.Logger; import org.apache.catalina.Context; import org.apache.catalina.LifecycleException; import org.apache.catalina.WebResource; import org.apache.catalina.webresources.StandardRoot;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.5K bytes - Viewed (0) -
common-protos/k8s.io/api/certificates/v1/generated.proto
// // An "Approved" condition is added via the /approval subresource, // indicating the request was approved and should be issued by the signer. // // A "Denied" condition is added via the /approval subresource, // indicating the request was denied and should not be issued by the signer. // // A "Failed" condition is added via the /status subresource, // indicating the signer failed to issue the certificate. //
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 11.6K bytes - Viewed (0) -
src/test/java/jcifs/tests/NamingTest.java
import org.junit.runners.Parameterized; import org.junit.runners.Parameterized.Parameters; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.CIFSException; import jcifs.SmbResource; import jcifs.config.PropertyConfiguration; import jcifs.context.BaseContext; import jcifs.smb.SmbFile; /** * @author mbechler * */ @RunWith ( Parameterized.class )
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jun 06 10:48:05 UTC 2020 - 7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
} /** * List the contents of this SMB resource as an array of * <code>SmbResource</code> objects. This method is much more efficient than * the regular <code>list</code> method when querying attributes of each * file in the result set. * <p> * The list of <code>SmbResource</code>s returned by this method will be; * * <ul>
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0)