- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for mismatching (0.09 sec)
-
cmd/bootstrap-peer-server.go
return nil } // Report differences in environment variables. var missing []string var mismatching []string for k, v := range s1.MinioEnv { ev, ok := s2.MinioEnv[k] if !ok { missing = append(missing, k) } else if v != ev { mismatching = append(mismatching, k) } } var extra []string for k := range s2.MinioEnv { _, ok := s1.MinioEnv[k] if !ok {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 01 22:13:18 UTC 2024 - 8.4K bytes - Viewed (0) -
internal/hash/reader_test.go
src: mustReader(t, bytes.NewReader([]byte("abcd")), 4, "", "", 4), size: 4, actualSize: 4, success: true, }, { desc: "Mismatching sha256", src: mustReader(t, bytes.NewReader([]byte("abcd")), 4, "", "88d4266fd4e6338d13b845fcf289579d209c897823b9217da3e161936f031589", 4), size: 4, actualSize: 4,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 18 17:00:54 UTC 2023 - 10.3K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/amd64error.s
// TODO(quasilyte): improve error message (#21860). V4FMADDPS (AX), [Z4-Z0], K1, Z7 // ERROR "invalid instruction" V4FMADDPS (AX), [Z1-Z0], K1, Z7 // ERROR "invalid instruction" // Mismatching registers in a range. // TODO(quasilyte): improve error message (#21860). V4FMADDPS (AX), [AX-Z3], K1, Z7 // ERROR "invalid instruction" V4FMADDPS (AX), [Z0-AX], K1, Z7 // ERROR "invalid instruction"
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Jun 14 00:03:57 UTC 2023 - 8.9K bytes - Viewed (0) -
guava/src/com/google/common/eventbus/Dispatcher.java
protected Queue<Event> initialValue() { return Queues.newArrayDeque(); } }; /** Per-thread dispatch state, used to avoid reentrant event dispatching. */ private final ThreadLocal<Boolean> dispatching = new ThreadLocal<Boolean>() { @Override protected Boolean initialValue() { return false; } }; @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Dec 15 19:31:54 UTC 2023 - 7.3K bytes - Viewed (0) -
cmd/object-handlers_test.go
} contentLength = rec.Header().Get("Content-Length") } if contentLength != fmt.Sprintf("%d", objectLength(input)) { t.Errorf("Test %d: Content length is mismatching: got %s (expected: %d)", i+1, contentLength, objectLength(input)) } } } // Wrapper for calling GetObject API handler tests for both Erasure multiple disks and FS single drive setup.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 12 20:10:44 UTC 2024 - 163.2K bytes - Viewed (0) -
guava/src/com/google/common/eventbus/Subscriber.java
import java.lang.reflect.Method; import java.util.concurrent.Executor; import javax.annotation.CheckForNull; /** * A subscriber method on a specific object, plus the executor that should be used for dispatching * events to it. * * <p>Two subscribers are equivalent when they refer to the same method on the same object (not * class). This property is used to ensure that no subscriber method is registered more than once. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 06 00:47:57 UTC 2021 - 4.7K bytes - Viewed (0) -
tensorflow/c/eager/c_api_unified_experimental_internal.h
} } }; } // namespace internal using TracingOperationPtr = std::unique_ptr<TracingOperation, internal::TracingOperationDeleter>; // This holds the context for the execution: dispatching operations either to an // MLIR implementation or to a graph implementation. class TracingContext : public AbstractContext { protected: explicit TracingContext(AbstractContextKind kind) : AbstractContext(kind) {}
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 5.2K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/ListenerCallQueue.java
* * <p>Listeners are registered once via {@link #addListener} and then may be invoked by {@linkplain * #enqueue enqueueing} and then {@linkplain #dispatch dispatching} events. * * <p>The API of this class is designed to make it easy to achieve the following properties * * <ul> * <li>Multiple events for the same listener are never dispatched concurrently.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Dec 13 19:45:20 UTC 2023 - 8.2K bytes - Viewed (0) -
impl/maven-core/plugin-manager.txt
h3. Execution of the plugin
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.9K bytes - Viewed (0) -
istioctl/pkg/describe/describe.go
fmt.Fprintf(writer, "%sWARNING POD DOES NOT MATCH ANY SUBSETS. (Non matching subsets %s)\n", printSpaces(initPrintNum+printLevel1), strings.Join(nonmatchingSubsets, ",")) } fmt.Fprintf(writer, "%sMatching subsets: %s\n", printSpaces(initPrintNum+printLevel1), strings.Join(matchingSubsets, ",")) if len(nonmatchingSubsets) > 0 { fmt.Fprintf(writer, "%s(Non-matching subsets %s)\n",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 50.6K bytes - Viewed (0)