Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for setIws (0.34 sec)

  1. android/guava/src/com/google/common/collect/Sets.java

        return CartesianSet.create(sets);
      }
    
      /**
       * Returns every possible list that can be formed by choosing one element from each of the given
       * sets in order; the "n-ary <a href="http://en.wikipedia.org/wiki/Cartesian_product">Cartesian
       * product</a>" of the sets. For example:
       *
       * <pre>{@code
       * Sets.cartesianProduct(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Sets.java

        return CartesianSet.create(sets);
      }
    
      /**
       * Returns every possible list that can be formed by choosing one element from each of the given
       * sets in order; the "n-ary <a href="http://en.wikipedia.org/wiki/Cartesian_product">Cartesian
       * product</a>" of the sets. For example:
       *
       * <pre>{@code
       * Sets.cartesianProduct(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  3. src/go/printer/nodes.go

    		if len(list) == 0 {
    			// no blank between keyword and {} in this case
    			p.setPos(lbrace)
    			p.print(token.LBRACE)
    			p.setPos(rbrace)
    			p.print(token.RBRACE)
    			return
    		} else if p.isOneLineFieldList(list) {
    			// small enough - print on one line
    			// (don't use identList and ignore source line breaks)
    			p.setPos(lbrace)
    			p.print(token.LBRACE, blank)
    			f := list[0]
    			if isStruct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/S390X.rules

      && setPos(v, x.Pos)
      && clobber(x)
      => (STMG2 [i-8] {s} p w0 w1 mem)
    (MOVDstore [i] {s} p w2 x:(STMG2 [i-16] {s} p w0 w1 mem))
      && x.Uses == 1
      && is20Bit(int64(i)-16)
      && setPos(v, x.Pos)
      && clobber(x)
      => (STMG3 [i-16] {s} p w0 w1 w2 mem)
    (MOVDstore [i] {s} p w3 x:(STMG3 [i-24] {s} p w0 w1 w2 mem))
      && x.Uses == 1
      && is20Bit(int64(i)-24)
      && setPos(v, x.Pos)
      && clobber(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/SetsTest.java

        checkHashCode(Sets.cartesianProduct(set(num), mt));
        checkHashCode(Sets.cartesianProduct(set(num), set(1)));
        checkHashCode(Sets.cartesianProduct(set(1), set(2, num)));
        checkHashCode(Sets.cartesianProduct(set(1, num), set(2, num - 1)));
        checkHashCode(Sets.cartesianProduct(set(1, num), set(2, num - 1), set(3, num + 1)));
    
        // a bigger one
        checkHashCode(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/validation/validation.go

    type preexistingExpressions struct {
    	matchConditionExpressions        sets.Set[string]
    	validationExpressions            sets.Set[string]
    	validationMessageExpressions     sets.Set[string]
    	auditAnnotationValuesExpressions sets.Set[string]
    }
    
    func newPreexistingExpressions() preexistingExpressions {
    	return preexistingExpressions{
    		matchConditionExpressions:        sets.New[string](),
    		validationExpressions:            sets.New[string](),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  7. pkg/apis/batch/validation/validation.go

    	maxSuccessPolicyRule = 20
    )
    
    var (
    	supportedPodFailurePolicyActions = sets.New(
    		batch.PodFailurePolicyActionCount,
    		batch.PodFailurePolicyActionFailIndex,
    		batch.PodFailurePolicyActionFailJob,
    		batch.PodFailurePolicyActionIgnore)
    
    	supportedPodFailurePolicyOnExitCodesOperator = sets.New(
    		batch.PodFailurePolicyOnExitCodesOpIn,
    		batch.PodFailurePolicyOnExitCodesOpNotIn)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/runtime/framework.go

    		o.componentConfigVersion = componentConfigVersion
    	}
    }
    
    // WithClientSet sets clientSet for the scheduling frameworkImpl.
    func WithClientSet(clientSet clientset.Interface) Option {
    	return func(o *frameworkOptions) {
    		o.clientSet = clientSet
    	}
    }
    
    // WithKubeConfig sets kubeConfig for the scheduling frameworkImpl.
    func WithKubeConfig(kubeConfig *restclient.Config) Option {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier.go

    		Name: serviceIPsMap,
    	})
    	tx.Flush(&knftables.Map{
    		Name: serviceNodePortsMap,
    	})
    
    	// Accumulate service/endpoint chains and affinity sets to keep.
    	activeChains := sets.New[string]()
    	activeAffinitySets := sets.New[string]()
    
    	// Compute total number of endpoint chains across all services
    	// to get a sense of how big the cluster is.
    	totalEndpoints := 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	"k8s.io/apimachinery/pkg/util/sets"
    	utilvalidation "k8s.io/apimachinery/pkg/util/validation"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	celconfig "k8s.io/apiserver/pkg/apis/cel"
    	apiservercel "k8s.io/apiserver/pkg/cel"
    	"k8s.io/apiserver/pkg/cel/environment"
    	"k8s.io/apiserver/pkg/util/webhook"
    )
    
    var (
    	printerColumnDatatypes                = sets.NewString("integer", "number", "string", "boolean", "date")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
Back to top