Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for determinant (0.2 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java

    @Experimental
    public interface DependencyResolver extends Service {
    
        /**
         * Collects the transitive dependencies of some artifacts and builds a dependency graph. Note that this operation is
         * only concerned about determining the coordinates of the transitive dependencies and does not actually resolve the
         * artifact files.
         *
         * @param session the {@link Session}, must not be {@code null}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

      /** A typical timeout value we'll use in the tests. */
      private static final long SMALL_TIMEOUT_MILLIS = 10;
    
      /** How long to wait when determining that a thread is blocked if we expect it to be blocked. */
      private static final long EXPECTED_HANG_DELAY_MILLIS = 75;
    
      /**
       * How long to wait when determining that a thread is blocked if we DON'T expect it to be blocked.
       */
      private static final long UNEXPECTED_HANG_DELAY_MILLIS = 10000;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

      /** A typical timeout value we'll use in the tests. */
      private static final long SMALL_TIMEOUT_MILLIS = 10;
    
      /** How long to wait when determining that a thread is blocked if we expect it to be blocked. */
      private static final long EXPECTED_HANG_DELAY_MILLIS = 75;
    
      /**
       * How long to wait when determining that a thread is blocked if we DON'T expect it to be blocked.
       */
      private static final long UNEXPECTED_HANG_DELAY_MILLIS = 10000;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. pkg/volume/util/atomic_writer.go

    		pathsToRemove, err = w.pathsToRemove(cleanPayload, oldTsPath)
    		if err != nil {
    			klog.Errorf("%s: error determining user-visible files to remove: %v", w.logContext, err)
    			return err
    		}
    
    		// (4)
    		if should, err := shouldWritePayload(cleanPayload, oldTsPath); err != nil {
    			klog.Errorf("%s: error determining whether payload should be written to disk: %v", w.logContext, err)
    			return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. hack/ginkgo-e2e.sh

    # is not used.
    suite_args+=(--report-complete-ginkgo --report-complete-junit)
    
    # The following invocation is fairly complex. Let's dump it to simplify
    # determining what the final options are. Enabled by default in CI
    # environments like Prow.
    case "${GINKGO_SHOW_COMMAND:-${CI:-no}}" in y|yes|true) set -x ;; esac
    
    "${program[@]}" "${e2e_test}" -- \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. src/html/template/doc.go

    	<a data-href="{{.}}"></a>
    
    At parse time this becomes
    
    	<a data-href="{{. | urlescaper | attrescaper}}"></a>
    
    If an attribute has both a namespace and a "data-" prefix, only the namespace
    will be removed when determining the context. For example
    
    	<a my:data-href="{{.}}"></a>
    
    This is handled as if "my:data-href" was just "data-href" and not "href" as
    it would be if the "data-" prefix were to be ignored too. Thus at parse
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/wrapper-main/src/executable/resources/META-INF/LICENSE

          implied, including, without limitation, any warranties or conditions
          of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
          PARTICULAR PURPOSE. You are solely responsible for determining the
          appropriateness of using or redistributing the Work and assume any
          risks associated with Your exercise of permissions under this License.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. pkg/config/constants/constants.go

    	ListenerModeOption          = "gateway.istio.io/listener-protocol"
    	ListenerModeAutoPassthrough = "auto-passthrough"
    
    	// DataplaneMode namespace label for determining ambient mesh behavior
    	DataplaneModeLabel = "istio.io/dataplane-mode"
    	// Set by users to indicate that the (namespace|pod) should be captured for ambient
    	DataplaneModeAmbient = "ambient"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. pkg/istio-agent/agent.go

    		} else {
    			rootCAPath = k8sCAPath
    		}
    	} else if a.secOpts.ProvCert != "" {
    		// This was never completely correct - PROV_CERT are only intended for auth with CA_ADDR,
    		// and should not be involved in determining the root CA.
    		// For VMs, the root cert file used to auth may be populated afterwards.
    		// Thus, return directly here and skip checking for existence.
    		return a.secOpts.ProvCert + "/root-cert.pem", nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Equivalence.java

    import java.io.Serializable;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.NonNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A strategy for determining whether two instances are considered equivalent, and for computing
     * hash codes in a manner consistent with that equivalence. Two examples of equivalences are the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 16 14:34:47 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top