- Sort Score
- Num 10 results
- Language All
Results 301 - 310 of 410 for hostname (0.05 seconds)
-
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/rest/compat/RestCompatTestTransformTask.java
* @param testName the testName to apply addition */ public void addMatch(String subKey, Object value, String testName) { transformations.add(new AddMatch(subKey, MAPPER.convertValue(value, JsonNode.class), testName)); } /** * Adds one or more warnings to the given test * * @param testName the test name to add the warningCreated: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Sep 30 16:30:48 GMT 2021 - 22.3K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/text/ReplaceTextual.java
this.keyToReplaceName = keyToReplaceName; this.valueToBeReplaced = valueToBeReplaced; this.replacementNode = replacementNode; this.testName = testName; } @Override @Internal public String getKeyToFind() { return keyToReplaceName; } @Override public String requiredChildKey() { return valueToBeReplaced;Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jul 27 10:37:15 GMT 2021 - 2.6K bytes - Click Count (0) -
cmd/metrics-realtime.go
if types == madmin.MetricsNone { return m } byHostName := globalMinioAddr if len(opts.hosts) > 0 { server := getLocalServerProperty(globalEndpoints, &http.Request{ Host: globalLocalNodeName, }, false) if _, ok := opts.hosts[server.Endpoint]; ok { byHostName = server.Endpoint } else { return m } } if strings.HasPrefix(byHostName, ":") && !strings.HasPrefix(globalLocalNodeName, ":") {Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 6.3K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/ReplaceByKey.java
private final JsonNode replacementNode; private final String testName; public ReplaceByKey(String requiredChildKey, JsonNode replacementNode) { this(requiredChildKey, replacementNode, null); } public ReplaceByKey(String requiredChildKey, JsonNode replacementNode, String testName) { this(requiredChildKey, requiredChildKey, replacementNode, testName); }Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 2.2K bytes - Click Count (0) -
docs/distributed/CONFIG.md
'--address', '--console-address' and command line arguments for the MinIO server. Historically everything to MinIO was provided via command arguments for the hostnames and the drives via an ellipses syntax such as `minio server http://host{1...4}/disk{1...4}` this requirement added an additional burden to have sequential hostnames for us to make sure that we can provide horizontal distribution, however we have come across situations where sometimes this is not feasible and there are no easier...Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Jun 25 02:30:18 GMT 2024 - 4.2K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/RestTestContext.java
/** * A place to stash information about a test that is being transformed. */ public class RestTestContext { private final String testName; public RestTestContext(String testName) { this.testName = testName; } public String getTestName() { return testName; }Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 721 bytes - Click Count (0) -
src/test/java/jcifs/NetbiosNameTest.java
// Given String testName = "TESTNAME"; String testScope = "TESTSCOPE"; int testType = 0x20; when(mockNetbiosName.getName()).thenReturn(testName); when(mockNetbiosName.getScope()).thenReturn(testScope); when(mockNetbiosName.getNameType()).thenReturn(testType); // When/Then assertEquals(testName, mockNetbiosName.getName());Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 8K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/net/NetServerEnum2Test.java
@DisplayName("Test reset method with lastName") void testReset() { String domain = "WORKGROUP"; int serverTypes = NetServerEnum2.SV_TYPE_ALL; netServerEnum2 = new NetServerEnum2(realConfig, domain, serverTypes); String lastName = "LASTSERVER"; netServerEnum2.reset(1, lastName); assertEquals(lastName, getFieldValue(netServerEnum2, "lastName")); } @TestCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 19.7K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/warnings/InjectWarnings.java
private final List<String> warnings; private final String testName; private final boolean isRegex; /** * @param warnings The warnings to inject * @param testName The testName to inject */ public InjectWarnings(List<String> warnings, String testName) { this(false, warnings, testName); } /**Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 3K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/match/RemoveMatch.java
private final String removeKey; private final String testName; public RemoveMatch(String removeKey) { this.removeKey = removeKey; this.testName = null; } public RemoveMatch(String removeKey, String testName) { this.removeKey = removeKey; this.testName = testName; } @Override @Internal public String getKeyToFind() {Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 2K bytes - Click Count (0)