Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,622 for goes (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/api/policy/v1beta1/types.go

    	// the deletion didn't occur and a pod is still there it will be removed from
    	// the list automatically by PodDisruptionBudget controller after some time.
    	// If everything goes smooth this map should be empty for the most of the time.
    	// Large number of entries in the map may indicate problems with pod deletions.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  10. pkg/proxy/winkernel/hns.go

    	}
    	return err
    }
    
    // Calculates a hash from the given endpoint IDs.
    func hashEndpoints[T string | endpointInfo](endpoints []T) (hash [20]byte, err error) {
    	var id string
    	// Recover in case something goes wrong. Return error and null byte array.
    	defer func() {
    		if r := recover(); r != nil {
    			err = r.(error)
    			hash = [20]byte{}
    		}
    	}()
    
    	// Iterate over endpoints, compute hash
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 21:21:12 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top