Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 194 for Visiting (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. releasenotes/notes/bug-report-speedup.yaml

    # - istioctl
    # - documentation
    area: istioctl
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
      - |
        **Removed** `--rps-limit` flag for `istioctl bug-report` and **added** `--rq-concurrency` flag.
        The bug reporter will now limit request concurrency instead of limiting request rate to the kube
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. src/runtime/mgclimit_test.go

    		}
    		if t.Failed() {
    			t.FailNow()
    		}
    
    		// Resize procs up and make sure limiting stops.
    		expectFill := l.Capacity()
    		l.ResetCapacity(advance(0), procs+10)
    		if l.Fill() != expectFill {
    			t.Errorf("failed to maintain fill at old capacity %d, got fill %d", expectFill, l.Fill())
    		}
    		if l.Limiting() {
    			t.Errorf("limiter is enabled after resetting capacity higher")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 16:02:20 UTC 2022
    - 9K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/internal/resource/ExternalResourceListBuildOperationType.java

     * limitations under the License.
     */
    
    package org.gradle.internal.resource;
    
    import org.gradle.internal.operations.BuildOperationType;
    
    /**
     * A listing of an external resource.
     *
     * A listing operation is analogous to a directory listing.
     *
     * @since 4.0
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/grpc/ratelimit.go

    )
    
    // Limiter defines the interface to perform request rate limiting,
    // based on the interface exposed by https://pkg.go.dev/golang.org/x/time/rate#Limiter
    type Limiter interface {
    	// Allow reports whether an event may happen now.
    	Allow() bool
    }
    
    // LimiterUnaryServerInterceptor returns a new unary server interceptors that performs request rate limiting.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 07:22:23 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. samples/ratelimit/local-rate-limit-service.yaml

    # This example shows how to use Istio local rate limiting with descriptors to limit by path. 
    # This uses the base book-info demo and adds rate limiting by path, specifically rate limiting the product page
    # to 10 requests per minute, and the overall fdqn will be able to accept 100 requests per minute. 
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: filter-local-ratelimit-svc
      namespace: istio-system
    spec:
      workloadSelector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 31 08:22:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/ArtifactResolutionDetails.java

         * which includes a version.
         * @return the module version identifier. If it's a version listing, then this will
         * be null.
         */
        @Nullable
        ModuleComponentIdentifier getComponentId();
    
        /**
         * Returns true if this details is created for a version listing.
         *
         * @return true if we are asked for a version listing
         */
        boolean isVersionListing();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top