Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,177 for Invert (0.11 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    	"source.ip",
    	"source.namespace",
    	"source.principal",
    	"destination.ip",
    	"destination.port",
    )
    
    func whenMatch[T any](s string, when *v1beta1.Condition, invert bool, f func(v []string) []T) []T {
    	if when.Key != s {
    		return nil
    	}
    	if invert {
    		return f(when.NotValues)
    	}
    	return f(when.Values)
    }
    
    func stringToMatch(rules []string) []*security.StringMatch {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableListMultimap.java

       * @since 11.0
       */
      @Override
      public ImmutableListMultimap<V, K> inverse() {
        ImmutableListMultimap<V, K> result = inverse;
        return (result == null) ? (inverse = invert()) : result;
      }
    
      private ImmutableListMultimap<V, K> invert() {
        Builder<V, K> builder = builder();
        for (Entry<K, V> entry : entries()) {
          builder.put(entry.getValue(), entry.getKey());
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableListMultimap.java

       * @since 11.0
       */
      @Override
      public ImmutableListMultimap<V, K> inverse() {
        ImmutableListMultimap<V, K> result = inverse;
        return (result == null) ? (inverse = invert()) : result;
      }
    
      private ImmutableListMultimap<V, K> invert() {
        Builder<V, K> builder = builder();
        for (Entry<K, V> entry : entries()) {
          builder.put(entry.getValue(), entry.getKey());
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 24 01:40:03 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/arg.go

    //
    // - arg_immediate_shift_32_implicit_inverse_imm16_hw:
    //     a 32-bit immediate of the bitwise inverse of which can be encoded in "imm16:hw"
    //
    // - arg_cond_[Not]AllowALNV_[Invert|Normal]:
    //     a standard condition, encoded in the "cond" field, excluding (NotAllow) AL and NV with
    //     its least significant bit [Yes|No] inverted, e.g.
    //       arg_cond_AllowALNV_Normal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 20K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableSetMultimap.java

       */
      @Override
      public ImmutableSetMultimap<V, K> inverse() {
        ImmutableSetMultimap<V, K> result = inverse;
        return (result == null) ? (inverse = invert()) : result;
      }
    
      private ImmutableSetMultimap<V, K> invert() {
        Builder<V, K> builder = builder();
        for (Entry<K, V> entry : entries()) {
          builder.put(entry.getValue(), entry.getKey());
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableSetMultimap.java

       */
      @Override
      public ImmutableSetMultimap<V, K> inverse() {
        ImmutableSetMultimap<V, K> result = inverse;
        return (result == null) ? (inverse = invert()) : result;
      }
    
      private ImmutableSetMultimap<V, K> invert() {
        Builder<V, K> builder = builder();
        for (Entry<K, V> entry : entries()) {
          builder.put(entry.getValue(), entry.getKey());
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. src/runtime/mpallocbits_test.go

    	for name, v := range tests {
    		v := v
    		t.Run(name, func(t *testing.T) {
    			b := makePallocBits(v.free)
    			// In the PallocBits we create 1's represent free spots, but in our actual
    			// PallocBits 1 means not free, so invert.
    			invertPallocBits(b)
    			for _, h := range v.hits {
    				checkPallocSum(t, b.Summarize(), h)
    			}
    		})
    	}
    }
    
    // Benchmarks how quickly we can summarize a PallocBits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 17 22:00:17 UTC 2020
    - 13.7K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conditions.go

    			successCount[incoming.OriginalReference]++
    		}
    		seen[incoming.OriginalReference] = append(seen[incoming.OriginalReference], incoming)
    		if incoming.DeniedReason != nil {
    			seenReasons.Insert(incoming.DeniedReason.Reason)
    		} else {
    			seenReasons.Insert(ParentNoError)
    		}
    	}
    	reasonRanking := []ParentErrorReason{
    		// No errors is preferred
    		ParentNoError,
    		// All route level errors
    		ParentErrorNotAllowed,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. test/chan/powser1.go

    	r.den = (u.den / g2) * (v.den / g1)
    	return r
    }
    
    func neg(u rat) rat {
    	return i2tor(-u.num, u.den)
    }
    
    func sub(u, v rat) rat {
    	return add(u, neg(v))
    }
    
    func inv(u rat) rat { // invert a rat
    	if u.num == 0 {
    		panic("zero divide in inv")
    	}
    	return i2tor(u.den, u.num)
    }
    
    // print eval in floating point of PS at x=c to n terms
    func evaln(c rat, U PS, n int) {
    	xn := float64(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 12.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    // enabled but fails with no changes enabled. In this case, bisect
    // searches for minimal sets of changes to disable.
    // Put another way, the leading “!” inverts the result from [Matcher.ShouldEnable]
    // but does not invert the result from [Matcher.ShouldReport].
    //
    // As a convenience for manual debugging, “n” is an alias for “!y”,
    // meaning to disable and report all changes.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
Back to top