Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,705 for grouped (0.18 sec)

  1. guava/src/com/google/common/collect/ImmutableListMultimap.java

       *
       * <p>For streams with defined encounter order (as defined in the Ordering section of the {@link
       * java.util.stream} Javadoc), that order is preserved, but entries are <a
       * href="ImmutableMultimap.html#iteration">grouped by key</a>.
       *
       * <p>Example:
       *
       * <pre>{@code
       * static final Multimap<Character, String> FIRST_LETTER_MULTIMAP =
       *     Stream.of("banana", "apple", "carrot", "asparagus", "cherry")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 24 01:40:03 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/iter.go

    }
    
    // Next returns f(i.input[i.Pos():n]), where n is a boundary of i.input.
    // For any input a and b for which f(a) == f(b), subsequent calls
    // to Next will return the same segments.
    // Modifying runes are grouped together with the preceding starter, if such a starter exists.
    // Although not guaranteed, n will typically be the smallest possible n.
    func (i *Iter) Next() []byte {
    	return i.next(i)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/cmd/cgo/ast.go

    	switch n := x.(type) {
    	case *ast.Expr:
    		f.walk(*n, context, visit)
    
    	// everything else just recurs
    	default:
    		f.walkUnexpected(x, context, visit)
    
    	case nil:
    
    	// These are ordered and grouped to match ../../go/ast/ast.go
    	case *ast.Field:
    		if len(n.Names) == 0 && context == ctxField {
    			f.walk(&n.Type, ctxEmbedType, visit)
    		} else {
    			f.walk(&n.Type, ctxType, visit)
    		}
    	case *ast.FieldList:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    ====
    
    The Gradle terminology for the three elements is as follows:
    
     * _Configuration_ (ex: `implementation`) - a named collection of dependencies, grouped together for a specific goal such as compiling or linking a module
     * _Project reference_ (ex: `project(':common')`) - the project referenced by the specified path
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  5. src/cmd/fix/fix.go

    	case *[]*ast.Ident:
    		walkBeforeAfter(*n, before, after)
    	case *[]ast.Spec:
    		walkBeforeAfter(*n, before, after)
    	case *[]ast.Stmt:
    		walkBeforeAfter(*n, before, after)
    
    	// These are ordered and grouped to match ../../go/ast/ast.go
    	case *ast.Field:
    		walkBeforeAfter(&n.Names, before, after)
    		walkBeforeAfter(&n.Type, before, after)
    		walkBeforeAfter(&n.Tag, before, after)
    	case *ast.FieldList:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  6. src/reflect/abi.go

    // or vice-versa (for call results).
    //
    // An abiSeq should be populated by calling its addArg method.
    type abiSeq struct {
    	// steps is the set of instructions.
    	//
    	// The instructions are grouped together by whole arguments,
    	// with the starting index for the instructions
    	// of the i'th Go value available in valueStart.
    	//
    	// For instance, if this abiSeq represents 3 arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. pilot/pkg/model/endpointshards.go

    // clusters when a push for the specific cluster is needed.
    type EndpointShards struct {
    	// mutex protecting below map.
    	sync.RWMutex
    
    	// Shards is used to track the shards. EDS updates are grouped by shard.
    	// Current implementation uses the registry name as key - in multicluster this is the
    	// name of the k8s cluster, derived from the config (secret).
    	Shards map[ShardKey][]*IstioEndpoint
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    The JVM Test Suite plugin (plugin id: `jvm-test-suite`) provides a DSL and API to model multiple groups of automated tests into test suites in JVM-based projects.  Tests suites are intended to grouped by their purpose and can have separate dependencies and use different testing frameworks.
    
    For instance, this plugin can be used to define a group of Integration Tests, which might run much longer than unit tests and have different environmental requirements.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

                                        compilation_device);
    }
    
    // Assigns explicit devices to replicate op. An aliased device is created per
    // core, and all replica devices per core are grouped together.
    void AssignDevicesToReplicate(
        tf_device::ReplicateOp replicate,
        llvm::ArrayRef<llvm::SmallVector<tensorflow::TPUDeviceAndHost, 8>>
            tpu_devices,
        OpBuilder* builder) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    ====
    
    The Gradle terminology for the three elements is as follows:
    
     * _Configuration_ (ex: `implementation`) - a named collection of dependencies, grouped together for a specific goal such as compiling or linking a module
     * _Project reference_ (ex: `project(':common')`) - the project referenced by the specified path
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
Back to top