Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,139 for selectA (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    ----
    
    It occurs when Gradle cannot select a single variant of a dependency because an explicitly requested attribute value does not match (and is not compatible with) the value of that attribute on any of the variants of the dependency.
    
    A sub-type of this failure occurs when Gradle *successfully* selects multiple variants of the same component, but the selected variants are incompatible with *each other*.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/README.md

    We use our `iptables` wrapper lib 4 different ways across sidecar and ambient, and in each case "which iptables binary should we use" is a question with a different answer.
    
    | Usage | Using iptables Binaries From | Networking context to select correct binary against |
    | ------------- | ------------- | ------------- |
    | from CNI plugin (sidecar) | host $PATH  | pod netns context |
    | from init container  (sidecar) | init container $PATH  | pod netns context |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/dec64.rules

    		(Add32withcarry <typ.Int32>
    			(Int64Hi x)
    			(Int64Hi y)
    			(Select1 <types.TypeFlags> (Add32carry (Int64Lo x) (Int64Lo y))))
    		(Select0 <typ.UInt32> (Add32carry (Int64Lo x) (Int64Lo y))))
    
    (Sub64 x y) =>
    	(Int64Make
    		(Sub32withcarry <typ.Int32>
    			(Int64Hi x)
    			(Int64Hi y)
    			(Select1 <types.TypeFlags> (Sub32carry (Int64Lo x) (Int64Lo y))))
    		(Select0 <typ.UInt32> (Sub32carry (Int64Lo x) (Int64Lo y))))
    
    (Mul64 x y) =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/ComponentIdResolveResult.java

    import javax.annotation.Nullable;
    import java.util.Collection;
    
    /**
     * The result of resolving a module version selector to a particular component id.
     * The result may optionally include the graph resolution state for the selected component, if it is cheaply available (for example, it was used to select the component).
     */
    public interface ComponentIdResolveResult extends ResolveResult {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_version_alignment.adoc

    ====
    
    Using the rule, the versions in the example above align to whatever the selected version of `com.fasterxml.jackson:jackson-bom` defines.
    In this case, `com.fasterxml.jackson:jackson-bom:2.9.5` will be selected as `2.9.5` is the highest version of a module selected.
    In that BOM, the following versions are defined and will be used:
    `jackson-core:2.9.5`,
    `jackson-databind:2.9.5` and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultConflictHandler.java

                maybeSetReason(conflict.participants, selected);
            }
            LOGGER.debug("Selected {} from conflicting modules {}.", selected, conflict.candidates);
        }
    
        private void maybeSetReason(Set<ModuleIdentifier> partifipants, ComponentResolutionState selected) {
            for (ModuleIdentifier identifier : partifipants) {
                ModuleReplacementsData.Replacement replacement = moduleReplacements.getReplacementFor(identifier);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p384.go

    	q.x.Set(x3)
    	q.y.Set(y3)
    	q.z.Set(z3)
    	return q
    }
    
    // Select sets q to p1 if cond == 1, and to p2 if cond == 0.
    func (q *P384Point) Select(p1, p2 *P384Point, cond int) *P384Point {
    	q.x.Select(p1.x, p2.x, cond)
    	q.y.Select(p1.y, p2.y, cond)
    	q.z.Select(p1.z, p2.z, cond)
    	return q
    }
    
    // A p384Table holds the first 15 multiples of a point at offset -1, so [1]P
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 18K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p224.go

    	q.x.Set(x3)
    	q.y.Set(y3)
    	q.z.Set(z3)
    	return q
    }
    
    // Select sets q to p1 if cond == 1, and to p2 if cond == 0.
    func (q *P224Point) Select(p1, p2 *P224Point, cond int) *P224Point {
    	q.x.Select(p1.x, p2.x, cond)
    	q.y.Select(p1.y, p2.y, cond)
    	q.z.Select(p1.z, p2.z, cond)
    	return q
    }
    
    // A p224Table holds the first 15 multiples of a point at offset -1, so [1]P
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p521.go

    	q.x.Set(x3)
    	q.y.Set(y3)
    	q.z.Set(z3)
    	return q
    }
    
    // Select sets q to p1 if cond == 1, and to p2 if cond == 0.
    func (q *P521Point) Select(p1, p2 *P521Point, cond int) *P521Point {
    	q.x.Select(p1.x, p2.x, cond)
    	q.y.Select(p1.y, p2.y, cond)
    	q.z.Select(p1.z, p2.z, cond)
    	return q
    }
    
    // A p521Table holds the first 15 multiples of a point at offset -1, so [1]P
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 17K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/p256.go

    	q.x.Set(x3)
    	q.y.Set(y3)
    	q.z.Set(z3)
    	return q
    }
    
    // Select sets q to p1 if cond == 1, and to p2 if cond == 0.
    func (q *P256Point) Select(p1, p2 *P256Point, cond int) *P256Point {
    	q.x.Select(p1.x, p2.x, cond)
    	q.y.Select(p1.y, p2.y, cond)
    	q.z.Select(p1.z, p2.z, cond)
    	return q
    }
    
    // A p256Table holds the first 15 multiples of a point at offset -1, so [1]P
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top