Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,203 for aranges (0.15 sec)

  1. pkg/controller/nodeipam/ipam/doc.go

    //     connectivity.
    //   - CloudAllocator is an allocator that synchronizes PodCIDRs from IP
    //     ranges assignments from the underlying cloud platform.
    //   - (Alpha only) IPAMFromCluster is an allocator that has the similar
    //     functionality as the RangeAllocator but also synchronizes cluster-managed
    //     ranges into the cloud platform.
    //   - (Alpha only) IPAMFromCloud is the same as CloudAllocator (synchronizes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/incompleteDelegation.descriptors.txt

    Diagnostics from elements:
      for PSI element of type KtParameter at (3,21-28)
        UNUSED_PARAMETER      text ranges: [(53,54)]
          PSI: KtParameter at (3,21-28)
      for PSI element of type KtParameter at (3,30-45)
        UNUSED_PARAMETER      text ranges: [(62,63)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Nov 29 08:27:53 UTC 2023
    - 299 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/suppression/conflictingOverloadsAtTopLevel.txt

    Diagnostics from elements:
      for PSI element of type KtStringTemplateExpression at (3,11-34)
        ERROR_SUPPRESSION      text ranges: [(27,50)]
          PSI: KtStringTemplateExpression at (3,11-34)
      for PSI element of type KtStringTemplateExpression at (8,11-34)
        ERROR_SUPPRESSION      text ranges: [(115,138)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 13 10:20:26 UTC 2023
    - 363 bytes
    - Viewed (0)
  4. cluster/gce/upgrade-aliases.sh

        return
      fi
    
      echo "Adding secondary ranges: pods-default (${CLUSTER_IP_RANGE}), services-default (${SERVICE_CLUSTER_IP_RANGE})"
      until gcloud compute networks subnets update "${IP_ALIAS_SUBNETWORK}" \
        --project="${PROJECT}" --region="${REGION}" \
        --add-secondary-ranges="pods-default=${CLUSTER_IP_RANGE},services-default=${SERVICE_CLUSTER_IP_RANGE}"; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. cmd/kube-apiserver/app/options/options.go

    	fs.StringVar(&s.ServiceClusterIPRanges, "service-cluster-ip-range", s.ServiceClusterIPRanges, ""+
    		"A CIDR notation IP range from which to assign service cluster IPs. This must not "+
    		"overlap with any IP ranges assigned to nodes or pods. Max of two dual-stack CIDRs is allowed.")
    
    	fs.Var(&s.ServiceNodePortRange, "service-node-port-range", ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                        "typed_config": {
                          "@type": "type.googleapis.com/xds.type.matcher.v3.IPMatcher",
                          "range_matchers": [
                            {
                              "ranges": [
                                {
                                  "address_prefix": "10.111.182.109",
                                  "prefix_len": 32
                                }
                              ],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  7. src/net/http/fs.go

    					return nil, errors.New("invalid range")
    				}
    				if i >= size {
    					i = size - 1
    				}
    				r.length = i - r.start + 1
    			}
    		}
    		ranges = append(ranges, r)
    	}
    	if noOverlap && len(ranges) == 0 {
    		// The specified ranges did not overlap with the content.
    		return nil, errNoOverlap
    	}
    	return ranges, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. 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)
  9. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/GenerateIdnaMappingTableCode.kt

            .initializer(
              """
              |%T(⇥
              |sections = "%L",
              |ranges = "%L",
              |mappings = "%L",
              |⇤)
              """.trimMargin(),
              idnaMappingTable,
              data.sections.escapeDataString(),
              data.ranges.escapeDataString(),
              data.mappings.escapeDataString(),
            )
            .build(),
        )
        .build()
    }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. src/cmd/trace/main.go

    	mux.Handle("/", traceviewer.MainHandler([]traceviewer.View{
    		{Type: traceviewer.ViewProc, Ranges: ranges},
    		// N.B. Use the same ranges for threads. It takes a long time to compute
    		// the split a second time, but the makeup of the events are similar enough
    		// that this is still a good split.
    		{Type: traceviewer.ViewThread, Ranges: ranges},
    	}))
    
    	// Catapult handlers.
    	mux.Handle("/trace", traceviewer.TraceHandler())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top