Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 363 for fdct (0.04 sec)

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

    import java.util.List;
    
    import org.apache.maven.api.model.InputLocation;
    
    /**
     * Collects problems that are encountered during model building. The primary purpose of this component is to account for
     * the fact that the problem reporter has/should not have information about the calling context and hence cannot provide
     * an expressive source hint for the model problem. Instead, the source hint is configured by the model builder before
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/MavenImmutableAttributesFactory.java

    import org.gradle.api.internal.attributes.ImmutableAttributesFactory;
    
    /**
     * A specialized attributes factory for Maven metadata. The specialized methods take advantage
     * of the fact we know that for derived variants, we're going to see almost always the same input
     * attributes, and the same mutations to make on them, so it's more efficient to map them, than
     * recomputing each time.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/prove.go

    type pair struct {
    	// a pair of values, ordered by ID.
    	// v can be nil, to mean the zero value.
    	// for booleans the zero value (v == nil) is false.
    	v, w *Value
    	d    domain
    }
    
    // fact is a pair plus a relation for that pair.
    type fact struct {
    	p pair
    	r relation
    }
    
    // a limit records known upper and lower bounds for a value.
    type limit struct {
    	min, max   int64  // min <= value <= max, signed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/JdkFutureAdapters.java

       * ListenableFutureTask}, {@link AbstractFuture}, and other utilities over creating plain {@code
       * Future} instances to be upgraded to {@code ListenableFuture} after the fact.
       */
      public static <V extends @Nullable Object> ListenableFuture<V> listenInPoolThread(
          Future<V> future) {
        if (future instanceof ListenableFuture) {
          return (ListenableFuture<V>) future;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.h

    //   and the preset's configs are ignored.
    //   - For `QuantizationSpecs`, the expanded `QuantizationSpec`s will be
    //   populated first and user-provided `QuantizationSpec`s, if any, will be
    //   appended. This expresses the fact that user-provided specs take precedence.
    // * Preset unspecified
    //   - No-op.
    QuantizationConfig ExpandPresets(const QuantizationConfig& config);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. pkg/config/analysis/diag/messages.go

    	})
    }
    
    // SortedDedupedCopy returns a different sorted (and deduped) Messages struct.
    func (ms *Messages) SortedDedupedCopy() Messages {
    	newMs := append((*ms)[:0:0], *ms...)
    	newMs.Sort()
    
    	// Take advantage of the fact that the list is already sorted to dedupe
    	// messages (any duplicates should be adjacent).
    	var deduped Messages
    	for _, m := range newMs {
    		// Two messages are duplicates if they have the same string representation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 02:47:46 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/path-operation-advanced-configuration.md

    You could do that with `openapi_extra`:
    
    ```Python hl_lines="20-37  39-40"
    {!../../../docs_src/path_operation_advanced_configuration/tutorial006.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Function.java

       *
       * <p>Historically, {@code Function} instances in this library have implemented this method to
       * recognize certain cases where distinct {@code Function} instances would in fact behave
       * identically. However, as code migrates to {@code java.util.function}, that behavior will
       * disappear. It is best not to depend on it.
       */
      @Override
      boolean equals(@CheckForNull Object object);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Mar 20 18:30:19 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/proxy/translatinghandler_test.go

    	"github.com/stretchr/testify/require"
    	"k8s.io/apimachinery/pkg/util/httpstream/wsstream"
    )
    
    // fakeHandler implements http.Handler interface
    type fakeHandler struct {
    	served bool
    }
    
    // ServeHTTP stores the fact that this fake handler was called.
    func (fh *fakeHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
    	fh.served = true
    }
    
    func TestTranslatingHandler(t *testing.T) {
    	tests := map[string]struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. build-logic/packaging/src/main/kotlin/gradlebuild.public-api-jar.gradle.kts

    }
    
    // Defines configurations used to resolve external dependencies
    // that the public API depends on.
    // TODO: We should be able to derive these dependencies automatically.
    //       In fact, our public API should have no external dependencies.
    val externalApi = configurations.dependencyScope("externalApi") {
        description = "External dependencies that the public Gradle API depends on"
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top