Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 162 for sensible (0.15 sec)

  1. src/cmd/compile/internal/types2/resolver.go

    			imp = nil // create fake package below
    		}
    		if err != nil {
    			check.errorf(pos, BrokenImport, "could not import %s (%s)", path, err)
    			if imp == nil {
    				// create a new fake package
    				// come up with a sensible package name (heuristic)
    				name := path
    				if i := len(name); i > 0 && name[i-1] == '/' {
    					name = name[:i-1]
    				}
    				if i := strings.LastIndex(name, "/"); i >= 0 {
    					name = name[i+1:]
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. src/go/types/resolver.go

    			imp = nil // create fake package below
    		}
    		if err != nil {
    			check.errorf(at, BrokenImport, "could not import %s (%s)", path, err)
    			if imp == nil {
    				// create a new fake package
    				// come up with a sensible package name (heuristic)
    				name := path
    				if i := len(name); i > 0 && name[i-1] == '/' {
    					name = name[:i-1]
    				}
    				if i := strings.LastIndex(name, "/"); i >= 0 {
    					name = name[i+1:]
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. src/crypto/x509/verify.go

    	KeyUsages []ExtKeyUsage
    
    	// MaxConstraintComparisions is the maximum number of comparisons to
    	// perform when checking a given certificate's name constraints. If
    	// zero, a sensible default is used. This limit prevents pathological
    	// certificates from consuming excessive amounts of CPU time when
    	// validating. It does not apply to the platform verifier.
    	MaxConstraintComparisions int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug_test.go

    //
    // TODO: not implemented for Delve yet, but this is the plan
    //
    // After a compiler change that causes a difference in the debug behavior, check
    // to see if it is sensible or not, and if it is, update the reference files with
    // go test debug_test.go -args -u
    // (for Delve)
    // go test debug_test.go -args -u -d
    func TestNexting(t *testing.T) {
    	testenv.SkipFlaky(t, 37404)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/net/MediaType.java

        return mediaType;
      }
    
      /*
       * The following constants are grouped by their type and ordered alphabetically by the constant
       * name within that type. The constant name should be a sensible identifier that is closest to the
       * "common name" of the media. This is often, but not necessarily the same as the subtype.
       *
       * Be sure to declare all constants with the type and subtype in all lowercase. For types that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/net/MediaType.java

        return mediaType;
      }
    
      /*
       * The following constants are grouped by their type and ordered alphabetically by the constant
       * name within that type. The constant name should be a sensible identifier that is closest to the
       * "common name" of the media. This is often, but not necessarily the same as the subtype.
       *
       * Be sure to declare all constants with the type and subtype in all lowercase. For types that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/docker.md

    This image has an **auto-tuning** mechanism included to set the **number of worker processes** based on the CPU cores available.
    
    It has **sensible defaults**, but you can still change and update all the configurations with **environment variables** or configuration files.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. tensorflow/cc/gradients/math_grad.cc

                            ZerosLike(scope, x));
        auto gy_1 = Mul(scope, Mul(scope, grad, z), log_x);
        return BinaryGradCommon(scope, op, grad_outputs, gx_1, gy_1);
      } else {
        // There's no sensible real value to return if x < 0, so return 0
        auto log_x = Where3(scope, Greater(scope, x, zero), Log(scope, x),
                            ZerosLike(scope, x));
        auto gy_1 = Mul(scope, Mul(scope, grad, z), log_x);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/help/helpdoc.go

    	Short:     "environment variables",
    	Long: `
    
    The go command and the tools it invokes consult environment variables
    for configuration. If an environment variable is unset or empty, the go
    command uses a sensible default setting. To see the effective setting of
    the variable <NAME>, run 'go env <NAME>'. To change the default setting,
    run 'go env -w <NAME>=<VALUE>'. Defaults changed using 'go env -w'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. src/runtime/metrics_test.go

    	}
    }
    
    func TestReadMetricsConsistency(t *testing.T) {
    	// Tests whether readMetrics produces consistent, sensible values.
    	// The values are read concurrently with the runtime doing other
    	// things (e.g. allocating) so what we read can't reasonably compared
    	// to other runtime values (e.g. MemStats).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top