Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 191 for robust (0.17 sec)

  1. docs/en/docs/features.md

    * Validation for more exotic types, like:
        * URL.
        * Email.
        * UUID.
        * ...and others.
    
    All the validation is handled by the well-established and robust **Pydantic**.
    
    ### Security and authentication
    
    Security and authentication integrated. Without any compromise with databases or data models.
    
    All the security schemes defined in OpenAPI, including:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   not implemented by us, you will get a run-time failure.  In that
    //   case, please try to rewrite your regular expression within the
    //   above syntax.
    //
    //   This implementation is *not* meant to be as highly tuned or robust
    //   as a compiled regex library, but should perform well enough for a
    //   death test, which already incurs significant overhead by launching
    //   a child process.
    //
    // Known caveats:
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    		ServiceAccounts: slices.Sort(serviceAccounts),
    	}
    }
    
    func getGatewayAddrs(gw *v1beta1.Gateway) []netip.Addr {
    	// Currently, we only look at one address. Probably this should be made more robust
    	ip, err := netip.ParseAddr(gw.Status.Addresses[0].Value)
    	if err == nil {
    		return []netip.Addr{ip}
    	}
    	log.Errorf("Unable to parse IP address in status of %v/%v/%v", gvk.KubernetesGateway, gw.Namespace, gw.Name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    					t.Fatalf("expected endpoints %d but got %d", len(cluster.LoadAssignment.Endpoints), len(tt.expected))
    				}
    				for i := range cluster.LoadAssignment.Endpoints {
    					// TODO Below assertions are not robust to ordering changes in cluster.LoadAssignment.Endpoints[i]
    					if cluster.LoadAssignment.Endpoints[i].LoadBalancingWeight.GetValue() != tt.expected[i].LoadBalancingWeight.GetValue() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  5. maven-core/src/site/apt/offline-mode.apt

      Offline mode is essential for breaking the requirement that m2 operate in a
      network-connected environment. It means legitimizing a development environment
      in which there is no network connection, and providing a robust m2 service
      offering in such circumstances. Introduction of offline mode allows m2 to
      anticipate the inevitable network failures that accompany being physically
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    Migrating to Gradle is worthwhile so that your builds can become slimmer, simpler, and faster, while still retaining the flexibility you enjoy with Ant.
    You will also benefit from robust support for multi-project builds and easy-to-use, flexible dependency management.
    
    The biggest challenge in migrating from Ant to Gradle is that there is no such thing as a standard Ant build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. pkg/istio-agent/xds_proxy_test.go

    		})
    	})
    	t.Run("Envoy sends concurrent requests", func(t *testing.T) {
    		// Envoy doesn't really do this, in reality it should only have a single connection. However,
    		// this ensures we are robust against cases where envoy rapidly disconnects and reconnects
    		proxy := setupXdsProxy(t)
    		f := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{})
    		setDialOptions(proxy, f.BufListener)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. pkg/kubelet/stats/cadvisor_stats_provider.go

    	if a[i].cinfo.Spec.CreationTime.Equal(a[j].cinfo.Spec.CreationTime) {
    		// There shouldn't be two containers with the same name and/or the same
    		// creation time. However, to make the logic here robust, we break the
    		// tie by moving the one without CPU instantaneous or memory RSS usage
    		// to the beginning.
    		return hasMemoryAndCPUInstUsage(&a[j].cinfo)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 16 13:34:22 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/config.go

    	}
    
    	return perPodEnable || (!perPodDisable && c.Namespace != nil && c.Namespace.IsInjected())
    }
    
    func (c Config) IsUncaptured() bool {
    	// TODO this can be more robust to not require labeling initial echo config (check namespace + isWaypoint + not sidecar)
    	return len(c.Subsets) > 0 && c.Subsets[0].Labels != nil && c.Subsets[0].Labels[constants.DataplaneModeLabel] == constants.DataplaneModeNone
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. test/codegen/comparisons.go

    // 'comparing to zero' expressions
    
    // var + const
    // 'x-const' might be canonicalized to 'x+(-const)', so we check both
    // CMN and CMP for subtraction expressions to make the pattern robust.
    func CmpToZero_ex1(a int64, e int32) int {
    	// arm64:`CMN`,-`ADD`,`(BMI|BPL)`
    	if a+3 < 0 {
    		return 1
    	}
    
    	// arm64:`CMN`,-`ADD`,`BEQ`,`(BMI|BPL)`
    	if a+5 <= 0 {
    		return 1
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top