Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 268 for Indexes (0.2 sec)

  1. guava/src/com/google/common/collect/DenseImmutableTable.java

        // requireNonNull is safe because we use indexes that were populated by the constructor.
        V value = requireNonNull(values[rowIndex][columnIndex]);
        return cellOf(rowKey, columnKey, value);
      }
    
      @Override
      V getValue(int index) {
        // requireNonNull is safe because we use indexes that were populated by the constructor.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. pilot/pkg/xds/ads_test.go

    	}
    	addService := func(ns string, indexes ...int) {
    		var hostnames []string
    		for _, i := range indexes {
    			hostnames = append(hostnames, fmt.Sprintf("svc%d%s", i, svcSuffix))
    		}
    		addServiceByNames(ns, hostnames...)
    	}
    
    	addServiceInstance := func(hostname host.Name, indexes ...int) {
    		for _, i := range indexes {
    			s.MemRegistry.AddEndpoint(hostname, "http-main", 2080, "192.168.1.10", i)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/pcln.go

    			for ; p < q; p += SUBBUCKETSIZE {
    				i = int((p - min) / SUBBUCKETSIZE)
    				if indexes[i] > idx {
    					indexes[i] = idx
    				}
    			}
    
    			i = int((q - 1 - min) / SUBBUCKETSIZE)
    			if indexes[i] > idx {
    				indexes[i] = idx
    			}
    			idx++
    		}
    
    		// fill in table
    		for i := int32(0); i < nbuckets; i++ {
    			base := indexes[i*SUBBUCKETS]
    			if base == NOIDX {
    				Errorf(nil, "hole in findfunctab")
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  4. pkg/test/framework/components/environment/kube/flags.go

    		"", "Specifies the mapping for each cluster to the cluster hosting its control plane. The value is a "+
    			"comma-separated list of the form <clusterIndex>:<controlPlaneClusterIndex>, where the indexes refer to the order in which "+
    			"a given cluster appears in the 'istio.test.kube.config' flag. This topology also determines where control planes should "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

            withValidityAssertion { analysisSession.scopeProvider.getSyntheticJavaPropertiesScope(this) }
    
        /**
         * For each scope in [KaScopeContext] an index is calculated. The indexes are relative to position, and they are only known for
         * scopes obtained with [getScopeContextForPosition].
         *
         * Scopes with [KaScopeKind.TypeScope] include synthetic Java properties.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/node/graph.go

    		destinationEdgeIndex: map[int]*intSet{},
    		// experimentally determined to be the point at which iteration adds an order of magnitude to the authz check.
    		// since maintaining indexes costs time/memory while processing graph changes, we don't want to make this too low.
    		destinationEdgeThreshold: 200,
    	}
    }
    
    // vertexType indicates the type of the API object the vertex represents.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. src/compress/bzip2/bzip2.go

    	}
    
    	// The Huffman tree can switch every 50 symbols so there's a list of
    	// tree indexes telling us which tree to use for each 50 symbol block.
    	numSelectors := br.ReadBits(15)
    	treeIndexes := make([]uint8, numSelectors)
    
    	// The tree indexes are move-to-front transformed and stored as unary
    	// numbers.
    	mtfTreeDecoder := newMTFDecoderWithRange(numHuffmanTrees)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. pilot/pkg/model/typed_xds_cache.go

    	DependentConfigs() []ConfigHash
    }
    
    // typedXdsCache interface defines a store for caching XDS responses.
    // All operations are thread safe.
    type typedXdsCache[K comparable] interface {
    	// Flush clears the evicted indexes.
    	Flush()
    	// Add adds the given key with the value and its dependents for the given pushContext to the cache.
    	// If the cache has been updated to a newer push context, the write will be dropped silently.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/prettyPrintResults.kt

    }
    
    
    private
    fun SourceData.prettyPrint(): String =
        buildString {
            // We add +1 here as that was how the original implementation worked, just to avoid fixing all test data:
            append("indexes: ${indexRange.start}..${indexRange.endInclusive + 1}, ")
            append("line/column: ${lineRange.first}/$startColumn..${lineRange.last}/${endColumn + 1}, ")
            append("file: ${sourceIdentifier.fileIdentifier}")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/batch/v1/generated.proto

      // completedIndexes holds the completed indexes when .spec.completionMode =
      // "Indexed" in a text format. The indexes are represented as decimal integers
      // separated by commas. The numbers are listed in increasing order. Three or
      // more consecutive numbers are compressed and represented by the first and
      // last element of the series, separated by a hyphen.
      // For example, if the completed indexes are 1, 3, 4, 5 and 7, they are
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top