Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 819 for combinations (0.2 sec)

  1. src/cmd/compile/internal/ssa/html.go

    }
    
    // newDotWriter returns non-nil value when mask is valid.
    // dotWriter will generate SVGs only for the phases specified in the mask.
    // mask can contain following patterns and combinations of them:
    // *   - all of them;
    // x-y - x through y, inclusive;
    // x,y - x and y, but not the passes between.
    func newDotWriter(mask string) *dotWriter {
    	if mask == "" {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    include::sample[dir="snippets/dependencyManagement/attributeMatching/groovy",files="build.gradle[tags=setup-configurations]"]
    ====
    
    In short, a configuration's role is determined by the `canBeResolved` and `canBeConsumed` flag combinations:
    
    .Configuration roles
    |===
    |Configuration role|can be resolved|can be consumed
    |Dependency Scope|false|false
    |Resolve for certain usage|true|false
    |Exposed to consumers|false|true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/module/module.go

    // There are many subtle considerations, including Unicode ambiguity,
    // security, network, and file system representations.
    //
    // This file also defines the set of valid module path and version combinations,
    // another topic with many subtle considerations.
    //
    // Changes to the semantics in this file require approval from rsc.
    
    import (
    	"errors"
    	"fmt"
    	"path"
    	"sort"
    	"strings"
    	"unicode"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/networking/v1/generated.proto

      // items is a list of schema objects.
      repeated NetworkPolicy items = 2;
    }
    
    // NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of
    // fields are allowed
    message NetworkPolicyPeer {
      // podSelector is a label selector which selects pods. This field follows standard label
      // selector semantics; if present but empty, it selects all pods.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1/types.go

    	// +optional
    	// +listType=atomic
    	Except []string `json:"except,omitempty" protobuf:"bytes,2,rep,name=except"`
    }
    
    // NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of
    // fields are allowed
    type NetworkPolicyPeer struct {
    	// podSelector is a label selector which selects pods. This field follows standard label
    	// selector semantics; if present but empty, it selects all pods.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  6. cmd/object_api_suite_test.go

    			enableCompression(t, true, []string{"*"}, []string{"*"})
    		}, MakeBucketOptions{
    			VersioningEnabled: true,
    		})
    	})
    }
    
    // ExecExtendedObjectLayerTest will execute the tests with combinations of encrypted & compressed.
    // This can be used to test functionality when reading and writing data.
    func ExecExtendedObjectLayerTest(t *testing.T, objTest objTestType) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/unify.go

    // If unification succeeds, as a side-effect, the types of the
    // bound type parameters may be determined.
    //
    // Unification typically requires multiple calls u.unify(x, y) to
    // a given unifier u, with various combinations of types x and y.
    // In each call, additional type parameter types may be determined
    // as a side effect and recorded in u.
    // If a call fails (returns false), unification fails.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. src/go/types/unify.go

    // If unification succeeds, as a side-effect, the types of the
    // bound type parameters may be determined.
    //
    // Unification typically requires multiple calls u.unify(x, y) to
    // a given unifier u, with various combinations of types x and y.
    // In each call, additional type parameter types may be determined
    // as a side effect and recorded in u.
    // If a call fails (returns false), unification fails.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. src/go/doc/comment/parse.go

    type DocLink struct {
    	Text []Text // text of link
    
    	// ImportPath, Recv, and Name identify the Go package or symbol
    	// that is the link target. The potential combinations of
    	// non-empty fields are:
    	//  - ImportPath: a link to another package
    	//  - ImportPath, Name: a link to a const, func, type, or var in another package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/OrderingTest.java

          return other instanceof NumberOrdering;
        }
    
        private static final long serialVersionUID = 0;
      }
    
      /*
       * Now we have monster tests that create hundreds of Orderings using different
       * combinations of methods, then checks compare(), binarySearch() and so
       * forth on each one.
       */
    
      // should periodically try increasing this, but it makes the test run long
      private static final int RECURSE_DEPTH = 2;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 42.5K bytes
    - Viewed (0)
Back to top