Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 83 for adaptive (0.14 sec)

  1. staging/src/k8s.io/api/authorization/v1beta1/types.go

    // the set of authorizers the server is configured with and any errors experienced during evaluation.
    // Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission,
    // even if that list is incomplete.
    type SubjectRulesReviewStatus struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  2. maven-core/plugin-manager.txt

    * The repository model where plugins can be stored and cataloged
    * Bridging this into an OSGi system: if this could be done then we can basically take over p2
    
    TODO
    
    - dealing with processing of input and adapting GAVs before searching i.e. plugin groups in Maven and default searching
    - how to deal with resolution from different places like local/remote/workspace
    - how to incorporate the metadata processor to start with
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    Modifications to your build that would impact the resolved set of dependencies will cause it to fail.
    This makes sure that changes, either in published dependencies or build definitions, do not alter resolution without adapting the lock state.
    
    [NOTE]
    ====
    Dependency locking makes sense only with <<dynamic_versions.adoc#sub:declaring_dependency_with_dynamic_version,dynamic versions>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. pkg/config/analysis/local/istiod_analyze.go

    	// Hook function called when a collection is used in analysis
    	collectionReporter CollectionReporterFn
    
    	clientsToRun []kubelib.Client
    }
    
    // NewSourceAnalyzer is a drop-in replacement for the galley function, adapting to istiod analyzer.
    func NewSourceAnalyzer(analyzer analysis.CombinedAnalyzer, namespace, istioNamespace resource.Namespace, cr CollectionReporterFn) *IstiodAnalyzer {
    	return NewIstiodAnalyzer(analyzer, namespace, istioNamespace, cr)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/magic.go

    type sdivisibleData struct {
    	k   int64  // trailingZeros(c)
    	m   uint64 // m * (c>>k) mod 2^n == 1 multiplicative inverse of odd portion modulo 2^n
    	a   uint64 // ⎣(2^(n-1) - 1)/ (c>>k)⎦ & -(1<<k) additive constant
    	max uint64 // ⎣(2 a) / (1<<k)⎦ max value to for divisibility
    }
    
    func sdivisible(n uint, c int64) sdivisibleData {
    	d := uint64(c)
    	k := bits.TrailingZeros64(d)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/math/IntMath.java

          // Both a and b are odd. Assume a > b; then gcd(a - b, b) = gcd(a, b).
          // But in gcd(a - b, b), a - b is even and b is odd, so we can divide out powers of two.
    
          // We bend over backwards to avoid branching, adapting a technique from
          // http://graphics.stanford.edu/~seander/bithacks.html#IntegerMinOrMax
    
          int delta = a - b; // can't overflow, since a and b are nonnegative
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/math/IntMath.java

          // Both a and b are odd. Assume a > b; then gcd(a - b, b) = gcd(a, b).
          // But in gcd(a - b, b), a - b is even and b is odd, so we can divide out powers of two.
    
          // We bend over backwards to avoid branching, adapting a technique from
          // http://graphics.stanford.edu/~seander/bithacks.html#IntegerMinOrMax
    
          int delta = a - b; // can't overflow, since a and b are nonnegative
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/NodeBackedModelMapSpec.groovy

                it.create("specialItem", specialItemClass)
            }
            def map = realizeAsModelMap()
            expect:
            map.is(map.withType(itemClass))
        }
    
        def "withType() filtering is additive"() {
            mutateWithoutDelegation {
                it.create("item", itemClass)
                it.create("specialItem", specialItemClass)
            }
            def map = realizeAsModelMap()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/css/base.css

    .content {
        flex: 1 1 auto;
        overflow: auto;
        padding-left: 0;
        padding-right: 0;
    }
    
    .content .chapter,
    .content .book {
        padding: 2rem 2.4rem;
    }
    
    .toc a:active {
        font-weight: 500;
    }
    
    .site-header  {
        margin-bottom: 1rem;
    }
    
    .site-header__navigation-submenu-item {
        padding: 2px 0;
    }
    
    .site-footer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/fieldmanager_test.go

    	}
    
    	// Agent A applies initial configuration
    	if err := f.Apply(newObj.DeepCopyObject(), "fieldmanager_z", false); err != nil {
    		t.Fatalf("failed to apply object: %v", err)
    	}
    
    	// Agent B applies additive configuration
    	if err := f.Apply(appliedObj, "fieldmanager_b", false); err != nil {
    		t.Fatalf("failed to apply object %v", err)
    	}
    
    	// Next, agent A applies the initial configuration again, but we expect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 32.5K bytes
    - Viewed (0)
Back to top