Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 7,522 for mode_ (0.05 sec)

  1. android/guava-tests/test/com/google/common/math/LongMathTest.java

        long x = 1000000000000L;
        for (RoundingMode mode : ALL_ROUNDING_MODES) {
          assertEquals(12, LongMath.log10(x, mode));
        }
      }
    
      @GwtIncompatible // TODO
      public void testSqrtNegativeAlwaysThrows() {
        for (long x : NEGATIVE_LONG_CANDIDATES) {
          for (RoundingMode mode : ALL_ROUNDING_MODES) {
            try {
              LongMath.sqrt(x, mode);
              fail("Expected IllegalArgumentException");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 20:15:57 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_inbound.go

    func getBindToPort(mode networking.CaptureMode, node *model.Proxy) bool {
    	if mode == networking.CaptureMode_DEFAULT {
    		// Chain doesn't specify explicit config, so use the proxy defaults
    		return node.GetInterceptionMode() == model.InterceptionNone
    	}
    	// Explicitly configured in the config, ignore proxy defaults
    	return mode == networking.CaptureMode_NONE
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/math/LongMathTest.java

        long x = 1000000000000L;
        for (RoundingMode mode : ALL_ROUNDING_MODES) {
          assertEquals(12, LongMath.log10(x, mode));
        }
      }
    
      @GwtIncompatible // TODO
      public void testSqrtNegativeAlwaysThrows() {
        for (long x : NEGATIVE_LONG_CANDIDATES) {
          for (RoundingMode mode : ALL_ROUNDING_MODES) {
            try {
              LongMath.sqrt(x, mode);
              fail("Expected IllegalArgumentException");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 20:15:57 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/encode_test.go

    			assertOnError: assertNilError,
    		},
    	} {
    		encModes := tc.modes
    		if len(encModes) == 0 {
    			encModes = allEncModes
    		}
    
    		for _, encMode := range encModes {
    			modeName, ok := encModeNames[encMode]
    			if !ok {
    				t.Fatal("test case configured to run against unrecognized mode")
    			}
    
    			t.Run(fmt.Sprintf("mode=%s/%s", modeName, tc.name), func(t *testing.T) {
    				out, err := encMode.Marshal(tc.in)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. tensorflow/c/eager/gradient_checker.h

    namespace tensorflow {
    namespace gradients {
    
    /* Returns numerical grad inside `dtheta_approx` given `forward` model and
     * parameter specified by `input_index`.
     *
     * I.e. if y = <output of the forward model> and w = inputs[input_index],
     * this will calculate dy/dw numerically.
     *
     * `use_function` indicates whether to use graph mode(true) or eager(false).
     *
     * `numerical_grad` is the pointer to the AbstractTensorHandle* which will
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 11 02:34:32 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  6. callbacks/delete.go

    				}
    
    				if db.Statement.ReflectValue.CanAddr() && db.Statement.Dest != db.Statement.Model && db.Statement.Model != nil {
    					_, queryValues = schema.GetIdentityFieldValuesMap(db.Statement.Context, reflect.ValueOf(db.Statement.Model), db.Statement.Schema.PrimaryFields)
    					column, values = schema.ToQueryValues(db.Statement.Table, db.Statement.Schema.PrimaryFieldDBNames, queryValues)
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Feb 25 02:48:23 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/resources/META-INF/gradle-plugins/org.gradle.component-model-base.properties

    Tom Tresansky <******@****.***> 1697026569 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 79 bytes
    - Viewed (0)
  8. pilot/pkg/networking/grpcgen/grpcgen.go

    	return model.BuildSubsetKey(model.TrafficDirectionOutbound, subset, host.Name(hostname), port)
    }
    
    func (g *GrpcConfigGenerator) Generate(proxy *model.Proxy, w *model.WatchedResource, req *model.PushRequest) (model.Resources, model.XdsLogDetails, error) {
    	switch w.TypeUrl {
    	case v3.ListenerType:
    		return g.BuildListeners(proxy, req.Push, w.ResourceNames), model.DefaultXdsLogDetails, nil
    	case v3.ClusterType:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_openbsd_mips64.go

    	SYS_CHDIR          = 12  // { int sys_chdir(const char *path); }
    	SYS_FCHDIR         = 13  // { int sys_fchdir(int fd); }
    	SYS_MKNOD          = 14  // { int sys_mknod(const char *path, mode_t mode, \
    	SYS_CHMOD          = 15  // { int sys_chmod(const char *path, mode_t mode); }
    	SYS_CHOWN          = 16  // { int sys_chown(const char *path, uid_t uid, \
    	SYS_OBREAK         = 17  // { int sys_obreak(char *nsize); } break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 08:08:26 UTC 2020
    - 14.9K bytes
    - Viewed (0)
  10. pkg/kubeapiserver/authorizer/reload.go

    	for _, configuredAuthorizer := range authzConfig.Authorizers {
    		// Keep cases in sync with constant list in k8s.io/kubernetes/pkg/kubeapiserver/authorizer/modes/modes.go.
    		switch configuredAuthorizer.Type {
    		case authzconfig.AuthorizerType(modes.ModeNode):
    			if r.nodeAuthorizer == nil {
    				return nil, nil, fmt.Errorf("authorizer type Node is not allowed if it was not enabled at initial server startup")
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top