Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,160 for grouped (0.31 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/options/BooleanOptionElement.java

        }
    
        /**
         * Returns a comparator that groups opposite option pairs together.
         *
         * <p>Options are sorted in the natural order of their names,
         * except for disable options which are sorted after their opposite option.
         * For example, {@code "--foo"} and {@code "--no-foo"} are grouped together
         * and are sorted after {@code "--bar"} and {@code "--no-bar"}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 18 06:43:54 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/dependency_management_basics.adoc

    <3> Adds the Mockito dependency to the project. Mockito is a mocking framework for testing Java code. This library will be used to compile and run the _test_ source code in this project.
    
    Dependencies in Gradle are grouped by *configurations*.
    
    - The `material` library is added to the `implementation` configuration, which is used for compiling and running _production_ code.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:47:52 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. pkg/controller/endpointslicemirroring/reconciler_helpers.go

    	for i, slice := range slices {
    		if slice.Name == sliceToRemove.Name {
    			return append(slices[:i], slices[i+1:]...)
    		}
    	}
    	return slices
    }
    
    // toSliceByAddrType returns lists of EndpointSlices grouped by address.
    func toSlicesByAddrType(slices []*discovery.EndpointSlice) slicesByAddrType {
    	byAddrType := slicesByAddrType{}
    	for _, slice := range slices {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. pkg/volume/util/nested_volumes.go

    			}
    			myMPSlash := myMountPoint + string(os.PathSeparator)
    			// The previously found nested mountpoints.
    			// NOTE: We can't simply rely on sort.Strings to have all the mountpoints sorted and
    			// grouped. For example, the following strings are sorted in this exact order:
    			// /dir/nested, /dir/nested-vol, /dir/nested.vol, /dir/nested/double, /dir/nested2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 12:19:17 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_cluster_util.h

    #include "xla/statusor.h"
    #include "tensorflow/core/common_runtime/optimization_registry.h"
    #include "tensorflow/core/graph/algorithm.h"
    
    namespace tensorflow {
    
    // The attribute that marks nodes to be grouped into functions by the
    // encapsulate subgraphs pass.
    extern const char* const kXlaClusterAttr;
    
    // The attribute that marks certain inputs to a Node as required to be a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. pkg/controller/endpointslicemirroring/metrics/cache.go

    	// lock protects changes to numEndpoints and cache.
    	lock sync.Mutex
    	// numEndpoints represents the total number of endpoints stored in
    	// EndpointSlices.
    	numEndpoints int
    	// cache stores a EndpointPortCache grouped by NamespacedNames representing
    	// Services.
    	cache map[types.NamespacedName]*EndpointPortCache
    }
    
    // EndpointPortCache tracks values for total numbers of desired endpoints as well
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. src/go/format/format.go

    			// Not an import declaration, so we're done.
    			// Imports are always first.
    			return false
    		}
    		if d.Lparen.IsValid() {
    			// For now assume all grouped imports are unsorted.
    			// TODO(gri) Should check if they are sorted already.
    			return true
    		}
    		// Ungrouped imports are sorted by default.
    	}
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. src/compress/bzip2/huffman.go

    		// We need to 'increment' the code, which means treating |code|
    		// like a |length| bit number.
    		code += 1 << (32 - length)
    	}
    
    	// Now we can sort by the code so that the left half of each branch are
    	// grouped together, recursively.
    	slices.SortFunc(codes, func(a, b huffmanCode) int {
    		return cmp.Compare(a.code, b.code)
    	})
    
    	t.nodes = make([]huffmanNode, len(codes))
    	_, err := buildHuffmanNode(&t, codes, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:44:37 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. cmd/erasure-metadata-utils_test.go

    		{
    			[]error{
    				errFileNotFound, errFileNotFound, errFileNotFound,
    				errFileNotFound, errFileNotFound, nil, nil, nil, nil, nil,
    			},
    			nil, nil,
    		},
    		// Checks if wrapped context cancellation errors are grouped as one.
    		{canceledErrs, nil, context.Canceled},
    	}
    	// Validates list of all the testcases for returning valid errors.
    	for i, testCase := range testCases {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apidiscovery/v2/generated.proto

      // for this resource across all versions in the API group.
      // Resources with non-empty groups are located at /apis/<APIGroupDiscovery.objectMeta.name>/<APIVersionDiscovery.version>/<APIResourceDiscovery.Resource>
      // Resources with empty groups are located at /api/v1/<APIResourceDiscovery.Resource>
      optional string resource = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top