Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 711 for recurse (0.15 sec)

  1. pkg/volume/volume_linux.go

    		klog.V(4).InfoS("Perform recursive ownership change for directory", "path", dir)
    		return false
    	}
    	return !requiresPermissionChange(dir, fsGroup, mounter.GetAttributes().ReadOnly)
    }
    
    func requiresPermissionChange(rootDir string, fsGroup *int64, readonly bool) bool {
    	fsInfo, err := os.Stat(rootDir)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. docs/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    options:
      # make root approval non-recursive
      no_parent_owners: true
    reviewers:
      - smarterclayton
      - thockin
    approvers:
      - sig-docs-approvers
      - smarterclayton
      - thockin
      - pwittrock
    emeritus_approvers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 12:26:53 UTC 2022
    - 281 bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue48529.go

    // Copyright 2021 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
    
    type T /* ERROR "invalid recursive type" */ [U interface{ M() T[U, int] }] int
    
    type X int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 294 bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/base/CaseFormatTest.java

        assertEquals("FOO_BAR", UPPER_UNDERSCORE.converterTo(UPPER_CAMEL).reverse().convert("FooBar"));
        assertEquals("FOO_BAR", UPPER_UNDERSCORE.converterTo(LOWER_CAMEL).reverse().convert("fooBar"));
        assertEquals("FooBar", UPPER_CAMEL.converterTo(UPPER_UNDERSCORE).reverse().convert("FOO_BAR"));
        assertEquals("fooBar", LOWER_CAMEL.converterTo(UPPER_UNDERSCORE).reverse().convert("FOO_BAR"));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 04 09:41:29 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. internal/s3select/json/args.go

    func (args *ReaderArgs) IsEmpty() bool {
    	return !args.unmarshaled
    }
    
    // UnmarshalXML - decodes XML data.
    func (args *ReaderArgs) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
    	// Make subtype to avoid recursive UnmarshalXML().
    	type subReaderArgs ReaderArgs
    	parsedArgs := subReaderArgs{}
    	if err := d.DecodeElement(&parsedArgs, &start); err != nil {
    		return err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  6. internal/event/config.go

    	return e.EncodeElement(filterRuleWrapper(filter), start)
    }
    
    // UnmarshalXML - decodes XML data.
    func (filter *FilterRule) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
    	// Make subtype to avoid recursive UnmarshalXML().
    	type filterRule FilterRule
    	rule := filterRule{}
    	if err := d.DecodeElement(&rule, &start); err != nil {
    		return err
    	}
    
    	if rule.Name != "prefix" && rule.Name != "suffix" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 16 17:28:29 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  7. test/fixedbugs/bug251.go

    // Copyright 2010 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 main
    
    type I1 interface { // GC_ERROR "invalid recursive type"
    	m() I2
    	I2
    }
    
    type I2 interface {
    	I1 // GCCGO_ERROR "loop|interface"
    }
    
    
    var i1 I1 = i2
    var i2 I2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 21:45:05 UTC 2020
    - 362 bytes
    - Viewed (0)
  8. test/fixedbugs/bug224.go

    // errorcheck
    
    // Copyright 2009 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 main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 03 17:55:56 UTC 2020
    - 227 bytes
    - Viewed (0)
  9. android/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)
  10. cmd/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    options:
      # make root approval non-recursive
      no_parent_owners: true
    reviewers:
      - dchen1107
      - dims
      - liggitt
      - mikedanese
      - smarterclayton
      - thockin
      - wojtek-t
    approvers:
      - dchen1107
      - dims
      - liggitt
      - mikedanese
      - smarterclayton
      - thockin
      - wojtek-t
    emeritus_approvers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 16:43:38 UTC 2023
    - 365 bytes
    - Viewed (0)
Back to top