Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 533 for Visiting (0.15 sec)

  1. 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)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerIntegrationTest.groovy

                }
            }
    
            then:
            succeeds 'checkDeps'
            outputContains("Listing versions for module testA")
            resetExpectations()
    
            when:
            succeeds 'checkDeps'
    
            then:
            outputDoesNotContain("Listing versions for module testA")
            resetExpectations()
    
            when:
            repositoryInteractions {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. cmd/metacache-server-pool.go

    // It returns true if the listing is non-versioned and the given object is expired.
    func triggerExpiryAndRepl(ctx context.Context, o listPathOptions, obj metaCacheEntry) (skip bool) {
    	versioned := o.Versioning != nil && o.Versioning.Versioned(obj.name)
    
    	// skip latest object from listing only for regular
    	// listObjects calls, versioned based listing cannot
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:23 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top