Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 711 for recurse (0.13 sec)

  1. test/fixedbugs/issue21882.go

    // errorcheck
    
    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 21:49:43 UTC 2017
    - 232 bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        void "allows non-recursive resource filter"() {
            given:
            buildScript """
    apply plugin: 'java'
    apply plugin: 'eclipse'
    
    eclipse {
      project {
        resourceFilter {
          appliesTo = 'FOLDERS'
          type = 'INCLUDE_ONLY'
          recursive = false
          matcher {
            id = 'org.eclipse.some.custom.matcher'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ReverseNaturalOrdering.java

    import static com.google.common.base.Preconditions.checkNotNull;
    
    import com.google.common.annotations.GwtCompatible;
    import java.io.Serializable;
    import java.util.Iterator;
    
    /** An ordering that uses the reverse of the natural order of the values. */
    @GwtCompatible(serializable = true)
    @SuppressWarnings({"unchecked", "rawtypes"}) // TODO(kevinb): the right way to explain this??
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 20 14:22:42 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  4. LICENSES/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    options:
      # make root approval non-recursive
      no_parent_owners: true
    approvers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 12:26:53 UTC 2022
    - 151 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/lister_watcher.go

    		Limit:    options.Limit,
    		Continue: options.Continue,
    	}
    
    	storageOpts := storage.ListOptions{
    		ResourceVersionMatch: options.ResourceVersionMatch,
    		Predicate:            pred,
    		Recursive:            true,
    	}
    	ctx := context.Background()
    	if lw.contextMetadata != nil {
    		ctx = metadata.NewOutgoingContext(ctx, lw.contextMetadata)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 11:51:06 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/google/BiMapTestSuiteBuilder.java

        testers.add(BiMapPutTester.class);
        testers.add(BiMapInverseTester.class);
        testers.add(BiMapRemoveTester.class);
        testers.add(BiMapClearTester.class);
        return testers;
      }
    
      enum NoRecurse implements Feature<Void> {
        INVERSE;
    
        @Override
        public Set<Feature<? super Void>> getImpliedFeatures() {
          return Collections.emptySet();
        }
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. pkg/util/filesystem/util_windows.go

    	// we need to dial the file and check if we receive an error to determine if a file is Unix Domain Socket file.
    
    	// Note that querrying for the Reparse Points (https://docs.microsoft.com/en-us/windows/win32/fileio/reparse-points)
    	// for the file (using FSCTL_GET_REPARSE_POINT) and checking for reparse tag: reparseTagSocket
    	// does NOT work in 1809 if the socket file is created within a bind mounted directory by a container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. test/fixedbugs/issue42075.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    import "unsafe"
    
    type T struct { // ERROR "recursive type"
    	x int
    	p unsafe.Pointer
    
    	f T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 19 21:30:43 UTC 2020
    - 278 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/AttributeMatchingRules.java

    public abstract class AttributeMatchingRules {
        public static <T> Action<? super CompatibilityCheckDetails<T>> orderedCompatibility(Comparator<? super T> comparator, boolean reverse) {
            return new DefaultOrderedCompatibilityRule<>(comparator, reverse);
        }
    
        public static <T> Action<? super MultipleCandidatesDetails<T>> orderedDisambiguation(Comparator<? super T> comparator, boolean pickFirst) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. test/interface/recursive1.dir/recursive1.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Mutually recursive type definitions imported and used by recursive1.go.
    
    package p
    
    type I1 interface {
    	F() I2
    }
    
    type I2 interface {
    	I1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 304 bytes
    - Viewed (0)
Back to top