Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 231 for Visiting (0.14 sec)

  1. ci/official/containers/linux_arm64/devel.usertools/aarch64.bazelrc

    build --distinct_host_configuration=false
    
    # Store performance profiling log in the mounted artifact directory.
    # The profile can be viewed by visiting chrome://tracing in a Chrome browser.
    # See https://docs.bazel.build/versions/main/skylark/performance.html#performance-profiling
    build --profile=/tf/pkg/profile.json.gz
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 12:25:39 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/rbac/rbac.go

    	// VisitRulesFor invokes visitor() with each rule that applies to a given user in a given namespace,
    	// and each error encountered resolving those rules. Rule may be nil if err is non-nil.
    	// If visitor() returns false, visiting is short-circuited.
    	VisitRulesFor(user user.Info, namespace string, visitor func(source fmt.Stringer, rule *rbacv1.PolicyRule, err error) bool)
    }
    
    type RBACAuthorizer struct {
    	authorizationRuleResolver RequestToRuleMapper
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 10:13:50 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  3. ci/official/containers/linux_arm64/devel.usertools/aarch64_clang.bazelrc

    build --copt=-Wno-gnu-offsetof-extensions
    
    # Store performance profiling log in the mounted artifact directory.
    # The profile can be viewed by visiting chrome://tracing in a Chrome browser.
    # See https://docs.bazel.build/versions/main/skylark/performance.html#performance-profiling
    build --profile=/tf/pkg/profile.json.gz
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 12:25:39 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileCollectionTest.groovy

            then:
            1 * visitor.startVisit(_, collection) >> true
            1 * source1.visitStructure(visitor)
            1 * source2.visitStructure(visitor)
            0 * _
        }
    
        void "listener can skip visiting children"() {
            def visitor = Mock(FileCollectionStructureVisitor)
            def source1 = Mock(FileCollectionInternal)
            def source2 = Mock(FileCollectionInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/resource/local/DefaultPathKeyFileStore.java

                    // We cannot clean in progress markers, or in progress files here because
                    // the file system visitor stuff can't handle the file system mutating while visiting
                    if (!isInProgressMarkerFile(file) && !isInProgressFile(file)) {
                        entries.add(entryAt(file));
                    }
                }
            });
    
            return entries;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 31 20:39:17 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. src/cmd/covdata/subtractintersect.go

    		if _, found := s.imm[k]; !found {
    			delete(s.mm.pod.pmm, k)
    		}
    	}
    	s.imm = nil
    }
    
    func (s *sstate) BeginCounterDataFile(cdf string, cdr *decodecounter.CounterDataReader, dirIdx int) {
    	dbgtrace(2, "visiting counter data file %s diridx %d", cdf, dirIdx)
    	if s.inidx != dirIdx {
    		if s.inidx > dirIdx {
    			// We're relying on having data files presented in
    			// the order they appear in the inputs (e.g. first all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 12:50:46 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  7. pkg/volume/volume_linux.go

    // walkDeep can be used to traverse directories and has two minor differences
    // from filepath.Walk:
    //   - List of files/dirs is not sorted for performance reasons
    //   - callback walkFunc is invoked on root directory after visiting children dirs and files
    func walkDeep(root string, walkFunc filepath.WalkFunc) error {
    	info, err := os.Lstat(root)
    	if err != nil {
    		return walkFunc(root, nil, err)
    	}
    	return walk(root, info, walkFunc)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. src/cmd/internal/cov/readcovdata.go

    }
    
    // visitPod examines a coverage data 'pod', that is, a meta-data file and
    // zero or more counter data files that refer to that meta-data file.
    func (r *CovDataReader) visitPod(p pods.Pod) error {
    	r.verb(1, "visiting pod: metafile %s with %d counter files",
    		p.MetaFile, len(p.CounterDataFiles))
    	r.vis.BeginPod(p)
    
    	// Open meta-file
    	f, err := os.Open(p.MetaFile)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. src/go/types/mono.go

    	// that appears twice.
    	for !seen[v] {
    		stack = append(stack, v)
    		seen[v] = true
    		v = check.mono.edges[check.mono.vertices[v].pre].src
    	}
    
    	// Trim any vertices we visited before visiting v the first
    	// time. Since v is the first vertex we found within the cycle, any
    	// vertices we visited earlier cannot be part of the cycle.
    	for stack[0] != v {
    		stack = stack[1:]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/mono.go

    	// that appears twice.
    	for !seen[v] {
    		stack = append(stack, v)
    		seen[v] = true
    		v = check.mono.edges[check.mono.vertices[v].pre].src
    	}
    
    	// Trim any vertices we visited before visiting v the first
    	// time. Since v is the first vertex we found within the cycle, any
    	// vertices we visited earlier cannot be part of the cycle.
    	for stack[0] != v {
    		stack = stack[1:]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top