- Sort Score
- Result 10 results
- Languages All
Results 471 - 480 of 720 for resource2 (0.09 sec)
-
internal/config/lambda/event/arn.go
- //
- // You should have received a copy of the GNU Affero General Public License
- // along with this program. If not, see <http://www.gnu.org/licenses/>.
- package event
- import (
- "strings"
- )
- // ARN - SQS resource name representation.
- type ARN struct {
- TargetID
- region string
- }
- // String - returns string representation.
- func (arn ARN) String() string {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Mar 07 16:12:41 UTC 2023 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
- }
- return connectHost(loc, loc.getServerWithDfs());
- }
- }
- /**
- * @return whether we have a valid tree connection
- */
- @SuppressWarnings ( "resource" )
- public synchronized boolean isConnected () {
- SmbTreeImpl t = getTreeInternal();
- return t != null && t.isConnected();
- }
- /**
- *
- * @param loc
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 31K bytes - Viewed (0) -
istioctl/pkg/proxyconfig/proxyconfig_test.go
- // limitations under the License.
- package proxyconfig
- import (
- "bytes"
- "fmt"
- "net/http"
- "strings"
- "testing"
- "github.com/spf13/cobra"
- "k8s.io/cli-runtime/pkg/resource"
- "k8s.io/client-go/rest/fake"
- cmdtesting "k8s.io/kubectl/pkg/cmd/testing"
- cmdutil "k8s.io/kubectl/pkg/cmd/util"
- "istio.io/istio/istioctl/pkg/cli"
- "istio.io/istio/pilot/test/util"
- "istio.io/istio/pkg/kube"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Apr 10 21:51:29 UTC 2024 - 8.9K bytes - Viewed (0) -
istioctl/pkg/cli/context.go
- // InferPodInfoFromTypedResource returns the pod name and namespace for the given typed resource
- InferPodInfoFromTypedResource(name, namespace string) (pod string, ns string, err error)
- // InferPodsFromTypedResource returns the pod names and namespace for the given typed resource
- InferPodsFromTypedResource(name, namespace string) ([]string, string, error)
- // Namespace returns the namespace specified by the user
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 23 19:31:32 UTC 2024 - 8.9K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/RemovalListener.java
- *
- * <p>An instance may be called concurrently by multiple threads to process different entries.
- * Implementations of this interface should avoid performing blocking calls or synchronizing on
- * shared resources.
- *
- * @param <K> the most general type of keys this listener can listen for; for example {@code Object}
- * if any key is acceptable
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 18:00:07 UTC 2021 - 2K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.19.md
- and specified for [deprecated versions of custom resources](https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definition-versioning/#version-deprecation).
- ### Avoiding permanent beta
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Wed Jan 05 05:42:32 UTC 2022 - 489.7K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/RateLimiter.java
- * all threads. Note, however, that it does not guarantee fairness.
- *
- * <p>Rate limiters are often used to restrict the rate at which some physical or logical resource
- * is accessed. This is in contrast to {@link java.util.concurrent.Semaphore} which restricts the
- * number of concurrent accesses instead of the rate (note though that concurrency and rate are
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:51:36 UTC 2024 - 21.6K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/building/DefaultModelBuilderFactoryTest.java
- import static org.junit.jupiter.api.Assertions.assertTrue;
- /**
- */
- class DefaultModelBuilderFactoryTest {
- private static final String BASE_DIR =
- Paths.get("src", "test", "resources", "poms", "factory").toString();
- private File getPom(String name) {
- return new File(Paths.get(BASE_DIR, name + ".xml").toString()).getAbsoluteFile();
- }
- @Test
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.6K bytes - Viewed (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts
- componentFilter {
- externalComponents.contains(it)
- }
- }.files)
- this.manifestFile = moduleIdentity.baseName.map { layout.buildDirectory.file("generated-resources/$it-classpath/$it-classpath.properties").get() }
- }
- sourceSets["main"].output.dir(classpathManifest.map { it.manifestFile.get().asFile.parentFile })
- }
- /**
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed May 01 08:59:48 UTC 2024 - 4.4K bytes - Viewed (0) -
tensorflow/c/eager/abstract_context.h
- explicit AbstractContext(AbstractContextKind kind) : kind_(kind) {}
- virtual ~AbstractContext() {}
- public:
- AbstractContextKind getKind() const { return kind_; }
- // Release any underlying resources, including the interface object.
- //
- // WARNING: The destructor of this class is marked as protected to disallow
- // clients from directly destroying this object since it may manage its own
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 3K bytes - Viewed (0)