Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 259 for dedupes (0.82 sec)

  1. src/main/java/jcifs/internal/dfs/DfsReferralDataInternal.java

    
        /**
         * Possibly appends the given domain name to the host name if it is currently unqualified
         * 
         * @param domain
         */
        void fixupDomain ( String domain );
    
    
        /**
         * Reduces path consumed by the given value
         * 
         * @param i
         */
        void stripPathConsumed ( int i );
    
    
        @Override
        DfsReferralDataInternal next ();
    
    
        /**
         * @param link
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/testdata/slices.go

    package slices
    
    // Map turns a []T1 to a []T2 using a mapping function.
    func Map[T1, T2 any](s []T1, f func(T1) T2) []T2 {
    	r := make([]T2, len(s))
    	for i, v := range s {
    		r[i] = f(v)
    	}
    	return r
    }
    
    // Reduce reduces a []T1 to a single value using a reduction function.
    func Reduce[T1, T2 any](s []T1, initializer T2, f func(T2, T1) T2) T2 {
    	r := initializer
    	for _, v := range s {
    		r = f(r, v)
    	}
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 18:02:18 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass.h

    //
    // where
    //
    //   actual_size(op_shape, size, begin)[i] =
    //     size[i] == -1 ? (op_shape[i] - size[i])
    //                   : size[i]
    //
    // This pass, combined with jit/partially_decluster_pass, reduces the number of
    // unnecessary cluster recompilations in some common cases.  After the rewrite
    // shown above jit/partially_decluster_pass extracts the actual_size(...)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 26 21:01:34 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/typeconverter.go

    // CRDs are merged with all their fields being "atomic" (lists
    // included).
    func NewDeducedTypeConverter() TypeConverter {
    	return deducedTypeConverter{}
    }
    
    // ObjectToTyped converts an object into a TypedValue with a "deduced type".
    func (deducedTypeConverter) ObjectToTyped(obj runtime.Object, opts ...typed.ValidationOptions) (*typed.TypedValue, error) {
    	switch o := obj.(type) {
    	case *unstructured.Unstructured:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:55:50 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. doc/next/5-toolchain.md

    <!-- https://go.dev/issue/62737 , https://golang.org/cl/576681,  https://golang.org/cl/577615 -->
    The compiler in Go 1.23 can now overlap the stack frame slots of local variables
    accessed in disjoint regions of a function, which reduces stack usage
    for Go applications.
    
    <!-- https://go.dev/cl/577935 -->
    For 386 and amd64, the compiler will use information from PGO to align certain
    hot blocks in loops.  This improves performance an additional 1-1.5% at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. operator/pkg/util/errs.go

    	return e.Error()
    }
    
    // ToError returns an error from Errors.
    func (e Errors) ToError() error {
    	if len(e) == 0 {
    		return nil
    	}
    	return fmt.Errorf("%s", e)
    }
    
    // Dedup removes any duplicated errors.
    func (e Errors) Dedup() Errors {
    	logCountMap := make(map[string]int)
    	for _, ee := range e {
    		if ee == nil {
    			continue
    		}
    		item := ee.Error()
    		_, exist := logCountMap[item]
    		if exist {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_fuzz_mutator.txt

    )
    
    // TODO(katiehockman): re-work this test once we have a better fuzzing engine
    // (ie. more mutations, and compiler instrumentation)
    func FuzzMutator(f *testing.F) {
    	// TODO(katiehockman): simplify this once we can dedupe crashes (e.g.
    	// replace map with calls to panic, and simply count the number of crashes
    	// that were added to testdata)
    	crashes := make(map[string]bool)
    	// No seed corpus initiated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableSet.java

        SetBuilderImpl(int expectedCapacity) {
          this.dedupedElements = (E[]) new Object[expectedCapacity];
          this.distinct = 0;
        }
    
        /** Initializes this SetBuilderImpl with a copy of the deduped elements array from toCopy. */
        SetBuilderImpl(SetBuilderImpl<E> toCopy) {
          this.dedupedElements = Arrays.copyOf(toCopy.dedupedElements, toCopy.dedupedElements.length);
          this.distinct = toCopy.distinct;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  9. doc/next/6-stdlib/99-minor/os/61893.md

    On Windows, the mode bits reported by [Lstat] and [Stat] for
    reparse points changed. Mount points no longer have [ModeSymlink] set,
    and reparse points that are not symlinks, Unix sockets, or dedup files
    now always have [ModeIrregular] set.
    This behavior is controlled by the `winsymlink` setting.
    For Go 1.23, it defaults to `winsymlink=1`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 386 bytes
    - Viewed (0)
  10. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/internal/SourceFoldersCreatorTest.groovy

            then:
            folders.find { it.dir.path.endsWith("shared") }.excludes == []
            folders.find { it.dir.path.endsWith("shared") }.includes == ["**/*.properties", "**/*.xml", "**/*.java"]
        }
    
        def "dedups external sourcefolder names"() {
            when:
            def folders = externalSourceFolders("../parent1/sibling1/src", "../parent2/sibling1/src", "../sibling2/src", "../parent1/sibling1/sib-src")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top