- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 693 for Ressource (0.06 sec)
-
common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto
// namespaced indicates if a resource is namespaced or not. optional bool namespaced = 2; // group is the preferred group of the resource. Empty implies the group of the containing resource list. // For subresources, this may have a different value, for example: Scale". optional string group = 8; // version is the preferred version of the resource. Empty implies the version of the containing resource list
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 53.3K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/ResourceTest.java
import static org.junit.jupiter.api.Assertions.assertTrue; /** * Tests {@code Resource}. * */ class ResourceTest { @Test void testHashCodeNullSafe() { new Resource().hashCode(); } @Test void testEqualsNullSafe() { assertFalse(new Resource().equals(null)); new Resource().equals(new Resource()); } @Test void testEqualsIdentity() {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jConfigurationFactory.java
public static final String RESOURCE = "META-INF/maven/slf4j-configuration.properties"; public static Slf4jConfiguration getConfiguration(ILoggerFactory loggerFactory) { String slf4jBinding = loggerFactory.getClass().getCanonicalName(); try { Enumeration<URL> resources = Slf4jConfigurationFactory.class.getClassLoader().getResources(RESOURCE);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/logic/AccessContextLogic.java
import jakarta.annotation.Resource; public class AccessContextLogic { // =================================================================================== // Attribute // ========= @Resource private TimeManager timeManager;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.2K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/transfer/SimplexTransferListenerTest.java
TransferEvent transferStartedEvent = event(session, resource, TransferEvent.EventType.STARTED); TransferEvent transferProgressedEvent = event(session, resource, TransferEvent.EventType.PROGRESSED); TransferEvent transferSucceededEvent = event(session, resource, TransferEvent.EventType.SUCCEEDED); listener.transferInitiated(transferInitiatedEvent);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.9K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/path/DefaultModelPathTranslator.java
return newResources; } private Resource alignToBaseDirectory(Resource resource, Path basedir) { if (resource != null) { String newDir = mayAlignToBaseDirectoryOrNull(resource.getDirectory(), basedir); if (newDir != null) { return resource.withDirectory(newDir); } } return resource; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
cmd/erasure-common.go
import ( "context" "math/rand" "sync" "time" ) func (er erasureObjects) getOnlineDisks() (newDisks []StorageAPI) { disks := er.getDisks() var wg sync.WaitGroup var mu sync.Mutex r := rand.New(rand.NewSource(time.Now().UnixNano())) for _, i := range r.Perm(len(disks)) { i := i wg.Add(1) go func() { defer wg.Done() if disks[i] == nil { return }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Aug 12 08:38:15 UTC 2024 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/job/AllJobScheduler.java
import jakarta.annotation.Resource; public class AllJobScheduler implements LaJobScheduler { private static final Logger logger = LogManager.getLogger(AllJobScheduler.class); protected static final String APP_TYPE = "JOB"; @Resource private TimeManager timeManager; @Resource private FessConfig fessConfig; @Resource private AccessContextLogic accessContextLogic;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.8K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/transfer/ConsoleMavenTransferListenerTest.java
true)); TransferResource resource = new TransferResource(null, null, "http://maven.org/test/test-resource", new File(""), null); resource.setContentLength(size - 1); DefaultRepositorySystemSession session = new DefaultRepositorySystemSession(h -> false); // no close handle // warm up test(listener, session, resource, 0); for (int i = 1; i < size; i++) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5K bytes - Viewed (0) -
src/main/java/jcifs/CIFSContext.java
* * @author mbechler * */ public interface CIFSContext { /** * Get a resource * * @param url * @return the SMB resource at the specified location * @throws CIFSException */ SmbResource get ( String url ) throws CIFSException; /** * Get a pipe resource * * @param url * @param pipeType * the type of the pipe
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.7K bytes - Viewed (0)