Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,972 for goes (0.05 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/MethodMap.java

            int l = args.length;
            Class<?>[] classes = new Class[l];
    
            for (int i = 0; i < l; ++i) {
                Object arg = args[i];
                // if we are careful down below, a null argument goes in there
                // so we can know that the null was passed to the method
                classes[i] = arg == null ? null : arg.getClass();
            }
    
            return getMostSpecific(methodList, classes);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/ingress/conversion_test.go

    }
    
    func TestConversion(t *testing.T) {
    	prefix := knetworking.PathTypePrefix
    	exact := knetworking.PathTypeExact
    
    	ingress := knetworking.Ingress{
    		ObjectMeta: metav1.ObjectMeta{
    			Namespace: "mock", // goes into backend full name
    		},
    		Spec: knetworking.IngressSpec{
    			Rules: []knetworking.IngressRule{
    				{
    					Host: "my.host.com",
    					IngressRuleValue: knetworking.IngressRuleValue{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 18:20:34 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/handling-errors.md

    Essa exceção será manipulada, contudo, pelo `unicorn_exception_handler`.
    
    Dessa forma você receberá um erro "limpo", com o HTTP status code `418` e um JSON com o conteúdo:
    
    ```JSON
    {"message": "Oops! yolo did something. There goes a rainbow..."}
    ```
    
    !!! note "Detalhes Técnicos"
        Você também pode usar `from starlette.requests import Request` and `from starlette.responses import JSONResponse`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/Service.java

         * minimal resources.
         */
        TERMINATED,
    
        /**
         * A service in this state has encountered a problem and may not be operational. It cannot be
         * started nor stopped.
         */
        FAILED,
      }
    
      /**
       * A listener for the various state changes that a {@link Service} goes through in its lifecycle.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_4x.md

        Again Later), and 1014 (invalid response from the upstream).
     *  New: Build with Kotlin 1.3.41, BouncyCastle 1.62, and Conscrypt 2.2.1.
     *  Fix: Recover gracefully when a coalesced connection immediately goes unhealthy.
     *  Fix: Defer the `SecurityException` when looking up the default proxy selector.
     *  Fix: Don't use brackets formatting IPv6 host names in MockWebServer.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. pkg/controlplane/reconcilers/lease.go

    // ReconcileEndpoints lists keys in a special etcd directory.
    // Each key is expected to have a TTL of R+n, where R is the refresh interval
    // at which this function is called, and n is some small value.  If an
    // apiserver goes down, it will fail to refresh its key's TTL and the key will
    // expire. ReconcileEndpoints will notice that the endpoints object is
    // different from the directory listing, and update the endpoints object
    // accordingly.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

            buildTriggeredAndFailed()
            failure.assertHasCause "java.lang.Exception: file does not exist"
    
            when:
            waitBeforeModification(markerFile)
            markerFile << "changed"
    
            then:
            buildTriggeredAndSucceeded()
            output.contains "value: changed"
        }
    
        def "does not trigger when changes is made to task that is not required"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/writebarrier.go

    	if off%ptrSize != 0 {
    		return true // see issue 61187
    	}
    	if size%ptrSize != 0 {
    		ptr.Fatalf("unaligned pointer write")
    	}
    	if off < 0 || off+size > 64*ptrSize {
    		// memory range goes off end of tracked offsets
    		return true
    	}
    	z := zeroes[mem.ID]
    	if ptr != z.base {
    		// This isn't the object we know about at this memory state.
    		return true
    	}
    	// Mask of bits we're asking about
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/informers.go

    	//
    	// WaitForCacheSync *helps*, but does not entirely fix this problem
    	s.namespaces = kclient.New[*corev1.Namespace](kubeClient)
    	s.namespaces.AddEventHandler(controllers.FromEventHandler(func(o controllers.Event) {
    		s.queue.Add(o)
    	}))
    
    	return s
    }
    
    // GetPodIfAmbient looks up a pod. It returns:
    // * An error if the pod cannot be found
    // * nil if the pod is found, but does not have ambient enabled
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    include::sample[dir="snippets/developingPlugins/publishingPlugins/groovy",files="build.gradle[tags=per_plugin_config]"]
    ====
    <1> Plugin specific configuration also goes into the `gradlePlugin` block.
    <2> This is where we previously added global properties.
    <3> Each plugin you publish will have its own block inside `plugins`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top