Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 231 for Visiting (0.15 sec)

  1. 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)
  2. 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)
  3. src/cmd/go/testdata/script/mod_list_bad_import.txt

    env GO111MODULE=on
    cd example.com
    
    # Without -e, listing an otherwise-valid package with an unsatisfied direct import should fail.
    # BUG: Today it succeeds.
    go list -f '{{if .Error}}error{{end}} {{if .Incomplete}}incomplete{{end}} {{range .DepsErrors}}bad dep: {{.Err}}{{end}}' example.com/direct
    ! stdout ^error
    stdout 'incomplete'
    stdout 'bad dep: .*example.com/notfound'
    
    # Listing with -deps should also fail.
    ! go list -deps example.com/direct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 06 18:54:25 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  4. releasenotes/notes/pilot-discovery-scoped-namespaces.yaml

    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
      **Added** Specify `meshConfig.discoverySelectors` to dynamically restrict the set of namespaces for Services, Pods, and Endpoints that istiod processes when pushing xDS updates to improve performance on the data plane.
    
    # upgradeNotes is a markdown listing of any changes that will affect the upgrade
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 09 19:34:37 UTC 2021
    - 904 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/go/testdata/script/list_bad_import.txt

    env GO111MODULE=off
    cd example.com
    
    # Without -e, listing an otherwise-valid package with an unsatisfied direct import should fail.
    # BUG: Today it succeeds.
    go list -f '{{if .Error}}error{{end}} {{if .Incomplete}}incomplete{{end}} {{range .DepsErrors}}bad dep: {{.Err}}{{end}}' example.com/direct
    ! stdout ^error
    stdout 'incomplete'
    stdout 'bad dep: .*example.com[/\\]notfound'
    
    # Listing with -deps should also fail.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 09 20:53:04 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  10. releasenotes/template.yaml

    # If issue is not in the current repo, specify its full URL instead.
    issue:
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    
    # upgradeNotes is a markdown listing of any changes that will affect the upgrade
    # process. This will appear in the release notes.
    upgradeNotes:
      - title:
        content:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 14 00:22:23 UTC 2021
    - 1.3K bytes
    - Viewed (0)
Back to top