Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 126 for somena (0.12 sec)

  1. hack/golangci-hints.yaml

          msg: should not be used because managedFields was removed
        - p: ^gomega\.BeTrue$
          pkg: ^github.com/onsi/gomega$
          msg: "it does not produce a good failure message - use BeTrueBecause with an explicit printf-style failure message instead, or plain Go: if ... { ginkgo.Fail(...) }"
        - p: ^gomega\.BeFalse$
          pkg: ^github.com/onsi/gomega$
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/work/AsyncWorkTracker.java

        /**
         * Blocks waiting for the completion of all items of asynchronous work associated with the provided build operation.
         * Only waits for work that has been registered at the moment the method is called.  In the event that there are failures in
         * the asynchronous work, a {@link org.gradle.internal.exceptions.MultiCauseException} will be thrown with any exceptions
         * thrown.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:05 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. docs/fr/docs/tutorial/path-params.md

        Donc, avec ces mêmes déclarations de type Python, **FastAPI** vous fournit de la validation de données.
    
        Notez que l'erreur mentionne le point exact où la validation n'a pas réussi.
    
        Ce qui est incroyablement utile au moment de développer et débugger du code qui interagit avec votre API.
    
    ## Documentation
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. internal/http/dial_others.go

    package http
    
    import (
    	"context"
    	"net"
    	"syscall"
    	"time"
    )
    
    // TODO: if possible implement for non-linux platforms, not a priority at the moment
    //
    //nolint:unused
    func setTCPParametersFn(opts TCPOptions) func(network, address string, c syscall.RawConn) error {
    	return func(network, address string, c syscall.RawConn) error {
    		return nil
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 24 04:08:47 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/aliases/aliases_go122.go

    }
    
    // Unalias is a wrapper of types.Unalias.
    func Unalias(t types.Type) types.Type { return types.Unalias(t) }
    
    // newAlias is an internal alias around types.NewAlias.
    // Direct usage is discouraged as the moment.
    // Try to use NewAlias instead.
    func newAlias(tname *types.TypeName, rhs types.Type) *Alias {
    	a := types.NewAlias(tname, rhs)
    	// TODO(go.dev/issue/65455): Remove kludgy workaround to set a.actual as a side-effect.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. docs/fr/docs/advanced/additional-status-codes.md

        Elle ne sera pas sérialisée avec un modèle.
    
        Assurez-vous qu'il contient les données souhaitées et que les valeurs soient dans un format JSON valides (si vous utilisez une `JSONResponse`).
    
    !!! note "Détails techniques"
        Vous pouvez également utiliser `from starlette.responses import JSONResponse`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. pkg/kube/inject/watcher_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package inject
    
    import (
    	"context"
    	"fmt"
    	"sync"
    	"testing"
    	"time"
    
    	. "github.com/onsi/gomega"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/test"
    )
    
    const (
    	namespace string = "istio-system"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonServer.java

                // Return a dummy implementation of this as creating a real hasher drags ~20 more services
                // along with it, and a hasher isn't actually needed on the worker process side at the moment.
                return new ClassLoaderHierarchyHasher() {
                    @Nullable
                    @Override
                    public HashCode getClassLoaderHash(@Nonnull ClassLoader classLoader) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. doc/next/9-todo.md

    <!-- These items need to be reviewed, and mentioned in the Go 1.23 release notes if applicable.
    
    None right now; more may come up later on.
    -->
    
    <!-- Maybe should be documented? Maybe shouldn't? Someone familiar with the change needs to determine.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. src/runtime/chan.go

    	// 'not ready for sending', even if the channel is closed between the two observations,
    	// they imply a moment between the two when the channel was both not yet closed
    	// and not ready for sending. We behave as if we observed the channel at that moment,
    	// and report that the send cannot proceed.
    	//
    	// It is okay if the reads are reordered here: if we observe that the channel is not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top