Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 114 for RangeTs (0.49 sec)

  1. src/cmd/pprof/pprof.go

    	name := ""
    FindName:
    	for entry, err := r.Next(); entry != nil && err == nil; entry, err = r.Next() {
    		if entry.Tag == dwarf.TagSubprogram {
    			ranges, err := f.dwarf.Ranges(entry)
    			if err != nil {
    				return nil
    			}
    			for _, pcs := range ranges {
    				if pcs[0] <= addr && addr < pcs[1] {
    					var ok bool
    					// TODO: AT_linkage_name, AT_MIPS_linkage_name.
    					name, ok = entry.Val(dwarf.AttrName).(string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/storage/storage_test.go

    		mem := allocator.NewAllocationMapWithOffset(max, rangeSpec, offset)
    		backing = mem
    		etcd, err := allocatorstore.NewEtcd(mem, "/ranges/serviceips", configForAllocations)
    		if err != nil {
    			return nil, err
    		}
    		return etcd, nil
    	})
    	if err != nil {
    		t.Fatalf("unexpected error creating etcd: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/resolution/ModelResolver.java

         * <p>
         * Unlike the {@link #resolveModel(java.lang.String, java.lang.String, java.lang.String)} method, this method
         * supports version ranges and updates the given {@code parent} instance to match the returned {@code ModelSource}.
         * If {@code parent} declares a version range, the version corresponding to the returned {@code ModelSource} will
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/diagnosticProvider/AbstractCollectDiagnosticsTest.kt

                    fun DiagnosticKey.print(indent: Int) {
                        val indentString = " ".repeat(indent)
                        append(indentString + factoryName)
                        appendLine("$indentString  text ranges: $textRanges")
                        appendLine("$indentString  PSI: ${psi::class.simpleName} at ${psi.textRange.asLineColumnRange()}")
                    }
                    appendLine("Diagnostics from elements:")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/single_versions.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[single-version-declarations]]
    = Declaring Versions and Ranges
    
    The simplest version declaration is a _simple string_ representing the version to use.
    Gradle supports different ways of declaring a version string:
    
    * An exact version: e.g. `1.3`, `1.3.0-beta3`, `1.0-20150201.131010-1`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:46:26 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.h

    namespace internal {
    
    // Register all custom ops including user specified custom ops.
    Status RegisterAllCustomOps(const toco::TocoFlags& toco_flags);
    
    // Populate quantization specs (or not) given user specified ranges for each
    // input arrays.
    Status PopulateQuantizationSpecs(
        const toco::ModelFlags& model_flags, toco::TocoFlags& toco_flags,
        mlir::quant::QuantizationSpecs* quant_specs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/cmd/root.go

    	flag.BindEnv(fs, constants.ServiceCidr, "i",
    		"Comma separated list of IP ranges in CIDR form to redirect to envoy (optional). "+
    			"The wildcard character \"*\" can be used to redirect all outbound traffic. An empty list will disable all outbound.",
    		&cfg.OutboundIPRangesInclude)
    
    	flag.BindEnv(fs, constants.ServiceExcludeCidr, "x",
    		"Comma separated list of IP ranges in CIDR form to be excluded from redirection. "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/nodes_test.go

    	{"SwitchStmt", `@switch { default: x++ }`},
    	{"SelectStmt", `@select {}`},
    	{"SelectStmt", `@select { default: }`},
    	{"SelectStmt", `@select { default: ch <- false }`},
    }
    
    var ranges = []test{
    	{"RangeClause", `@range s`},
    	{"RangeClause", `i = @range s`},
    	{"RangeClause", `i := @range s`},
    	{"RangeClause", `_, x = @range s`},
    	{"RangeClause", `i, x = @range s`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 18:45:06 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/annotation_key_constants.go

    	LastAppliedConfigAnnotation = kubectlPrefix + "last-applied-configuration"
    
    	// AnnotationLoadBalancerSourceRangesKey is the key of the annotation on a service to set allowed ingress ranges on their LoadBalancers
    	//
    	// It should be a comma-separated list of CIDRs, e.g. `0.0.0.0/0` to
    	// allow full access (the default) or `18.0.0.0/8,56.0.0.0/8` to allow
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/platform/OpenJSSEPlatform.kt

     */
    class OpenJSSEPlatform private constructor() : Platform() {
      private val provider: Provider = org.openjsse.net.ssl.OpenJSSE()
    
      // Selects TLSv1.3 so we are specific about our intended version ranges (not just 1.3)
      // and because it's a common pattern for VMs to have differences between supported and
      // defaulted versions for TLS based on what is requested.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top