Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,091 for GETs (0.15 sec)

  1. pilot/pkg/networking/core/route/retry/retry.go

    	"istio.io/istio/pilot/pkg/util/protoconv"
    	xdsfilters "istio.io/istio/pilot/pkg/xds/filters"
    )
    
    var defaultRetryPriorityTypedConfig = protoconv.MessageToAny(buildPreviousPrioritiesConfig())
    
    // DefaultPolicy gets a copy of the default retry policy.
    func DefaultPolicy() *route.RetryPolicy {
    	policy := defaultPolicy()
    	policy.RetryHostPredicate = []*route.RetryPolicy_RetryHostPredicate{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. test/fixedbugs/issue43099.go

    // license that can be found in the LICENSE file.
    
    // Check to make sure we don't try to constant fold a divide by zero.
    // This is a tricky test, as we need a value that's not recognized as 0
    // until lowering (otherwise it gets handled in a different path).
    
    package p
    
    func f() {
    	var i int
    	var s string
    	for i > 0 {
    		_ = s[0]
    		i++
    	}
    
    	var c chan int
    	c <- 1 % i
    }
    
    func f32() uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 10 03:18:00 UTC 2020
    - 858 bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

         *
         * @param description the description. May be null
         * @return this configuration
         */
        Configuration setDescription(@Nullable String description);
    
        /**
         * Gets an ordered set including this configuration and all superconfigurations
         * recursively.
         * @return the set of all configurations
         */
        Set<Configuration> getHierarchy();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleNotFoundException.java

         */
        public LifecycleNotFoundException(String lifecycleId) {
            super("Unknown lifecycle " + lifecycleId);
            this.lifecycleId = (lifecycleId != null) ? lifecycleId : "";
        }
    
        /**
         * Gets the identifier of the lifecycle that was not found.
         *
         * @return The identifier of the lifecycle that was not found, never {@code null}.
         */
        public String getLifecycleId() {
            return lifecycleId;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. pkg/proxy/config/doc.go

    // a unified view for both service handlers as well as endpoint handlers. There is no attempt
    // to resolve conflicts of any sort. Basic idea is that each configuration source gets a channel
    // from the Config service and pushes updates to it via that channel. Config then keeps track of
    // incremental & replace changes and distributes them to listeners as appropriate.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/CancellationToken.java

     *
     * <p>All implementations of this interface are required to be thread safe.</p>
     *
     * @since 2.1
     */
    public interface CancellationToken {
        /**
         * Gets whether cancellation has been requested for this token.
         * @return Cancellation status.
         */
        boolean isCancellationRequested();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/CommandLineIntegrationSpec.groovy

        @Requires(IntegTestPreconditions.NotParallelExecutor)
        def "reasonable failure message when --max-workers=#value"() {
            given:
            executer.requireDaemon().requireIsolatedDaemons()  // otherwise exception gets thrown in testing infrastructure
    
            when:
            executer.withArgument("--max-workers=$value")
    
            then:
            fails "help"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 05:05:14 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. pkg/util/procfs/procfs.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package procfs
    
    type ProcFSInterface interface {
    	// GetFullContainerName gets the container name given the root process id of the container.
    	GetFullContainerName(pid int) (string, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 17 18:57:44 UTC 2016
    - 762 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tutorial/groovy/groovy/build.gradle

    plugins {
        id 'java'
    }
    
    // tag::groovyJdk[]
    // Iterable gets an each() method
    configurations.runtimeClasspath.each { File f -> println f }
    // end::groovyJdk[]
    
    // tag::propertyAccessors[]
    // Using a getter method
    println project.buildDir
    println getProject().getBuildDir()
    
    // Using a setter method
    project.buildDir = 'target'
    getProject().setBuildDir('target')
    // end::propertyAccessors[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. pkg/util/procfs/procfs_fake.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package procfs
    
    type FakeProcFS struct{}
    
    // GetFullContainerName gets the container name given the root process id of the container.
    // E.g. if the devices cgroup for the container is stored in /sys/fs/cgroup/devices/docker/nginx,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 09:22:35 UTC 2023
    - 986 bytes
    - Viewed (0)
Back to top