Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,562 for behaviors (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_strategy_tuning.adoc

    Similarly, test dependencies could end up bumping the version of production dependencies, causing some surprising results when executing tests.
    
    These surprising behaviors can be mitigated by enabling dependency resolution consistency.
    
    [[sec::project_dependency_resolution_consistency]]
    === Enabling project-local dependency resolution consistency
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. src/time/sleep.go

    // As of Go 1.23, the channel is synchronous (unbuffered, capacity 0),
    // eliminating the possibility of those stale values.
    //
    // The GODEBUG setting asynctimerchan=1 restores both pre-Go 1.23
    // behaviors: when set, unexpired timers won't be garbage collected, and
    // channels will have buffered capacity. This setting may be removed
    // in Go 1.27 or later.
    func NewTimer(d Duration) *Timer {
    	c := make(chan Time, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. maven-core/src/site/apt/offline-mode.apt

      reached or started.
    
      All of these operations will produce their own unique errors in the absence of
      a coordinated offline strategy. In addition, efforts to unite these failing
      behaviors behind a consistent user interface is much, much more difficult if
      the system can't tell whether it has access to the network required by these
      operations.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/proxy.go

    				// For now, "direct" is the end of the line. We may decide to add some
    				// sort of fallback behavior for them in the future, so ignore
    				// subsequent entries for forward-compatibility.
    				break
    			}
    
    			// Single-word tokens are reserved for built-in behaviors, and anything
    			// containing the string ":/" or matching an absolute file path must be a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 15:21:05 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. src/cmd/go/script_test.go

    		// If the actual CGO_ENABLED might not match the cmd/go default, set it
    		// explicitly in the environment. Otherwise, leave it unset so that we also
    		// cover the default behaviors.
    		env = append(env, "CGO_ENABLED="+cgoEnabled)
    	}
    
    	for _, key := range extraEnvKeys {
    		if val, ok := os.LookupEnv(key); ok {
    			env = append(env, key+"="+val)
    		}
    	}
    
    	return env, nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modindex/build.go

    	// to read directories and files. To read from other sources,
    	// callers can set the following functions. They all have default
    	// behaviors that use the local file system, so clients need only set
    	// the functions whose behaviors they wish to change.
    
    	// JoinPath joins the sequence of path fragments into a single path.
    	// If JoinPath is nil, Import uses filepath.Join.
    	JoinPath func(elem ...string) string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  7. pkg/config/analysis/msg/messages.gen.go

    	MultiClusterInconsistentService = diag.NewMessageType(diag.Warning, "IST0170", "The service %v in namespace %q is inconsistent across clusters %q, which can lead to undefined behaviors. The inconsistent behaviors are: %v.")
    )
    
    // All returns a list of all known message types.
    func All() []*diag.MessageType {
    	return []*diag.MessageType{
    		InternalError,
    		Deprecated,
    		ReferencedResourceNotFound,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MultimapBuilder.java

    import java.util.TreeMap;
    import java.util.TreeSet;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An immutable builder for {@link Multimap} instances, letting you independently select the desired
     * behaviors (for example, ordering) of the backing map and value-collections. Example:
     *
     * <pre>{@code
     * ListMultimap<UserId, ErrorResponse> errorsByUser =
     *     MultimapBuilder.linkedHashKeys().arrayListValues().build();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/MultimapBuilder.java

    import java.util.TreeMap;
    import java.util.TreeSet;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An immutable builder for {@link Multimap} instances, letting you independently select the desired
     * behaviors (for example, ordering) of the backing map and value-collections. Example:
     *
     * <pre>{@code
     * ListMultimap<UserId, ErrorResponse> errorsByUser =
     *     MultimapBuilder.linkedHashKeys().arrayListValues().build();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. pkg/controller/testutil/test_utils.go

    )
    
    var (
    	keyFunc = cache.DeletionHandlingMetaNamespaceKeyFunc
    )
    
    // FakeNodeHandler is a fake implementation of NodesInterface and NodeInterface. It
    // allows test cases to have fine-grained control over mock behaviors. We also need
    // PodsInterface and PodInterface to test list & delete pods, which is implemented in
    // the embedded client.Fake field.
    type FakeNodeHandler struct {
    	*fake.Clientset
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top