Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 664 for map1 (0.04 sec)

  1. pilot/pkg/serviceregistry/aggregate/controller.go

    		}
    	}
    	return 0, false
    }
    
    // Services lists services from all platforms
    func (c *Controller) Services() []*model.Service {
    	// smap is a map of hostname (string) to service index, used to identify services that
    	// are installed in multiple clusters.
    	smap := make(map[host.Name]int)
    	index := 0
    	services := make([]*model.Service, 0)
    	// Locking Registries list while walking it to prevent inconsistent results
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    	kubeclient "istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/kube/krt"
    	"istio.io/istio/pkg/kube/kubetypes"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/network"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/sets"
    	"istio.io/istio/pkg/workloadapi"
    )
    
    type Index interface {
    	Lookup(key string) []model.AddressInfo
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/DefaultPayloadClassLoaderRegistry.java

    import java.net.URL;
    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.HashSet;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.util.UUID;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/crypto/internal/mlkem768/mlkem768.go

    // fieldReduceOnce and a fieldReduce.
    func fieldAddMul(a, b, c, d fieldElement) fieldElement {
    	x := uint32(a) * uint32(b)
    	x += uint32(c) * uint32(d)
    	return fieldReduce(x)
    }
    
    // compress maps a field element uniformly to the range 0 to 2ᵈ-1, according to
    // FIPS 203 (DRAFT), Definition 4.5.
    func compress(x fieldElement, d uint8) uint16 {
    	// We want to compute (x * 2ᵈ) / q, rounded to nearest integer, with 1/2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultValueSourceProviderFactoryTest.groovy

            when: "value is accessed a 2nd time"
            provider.get()
    
            then: "no notification is sent"
            0 * computationListener._
            obtainedValues.size() == 1
        }
    
        def "provider maps null returned from obtain to not present"() {
    
            given:
            def provider = createProviderOf(EchoValueSource) {
                // give no value so `getParameters().getValue().getOrNull()` returns null
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    //      (d1, d0). If the 2-D matrix has a 2-D inner block, the traversal order
    //      could be (d0, d1, d2, d3).
    //   2. How each block dimension in (dn, ..., dn+k-1) maps to the original
    //      tensor dimension in (d0, ..., dn-1).
    //   3. In the traversal order defined above, the format (dense vs. sparse) and
    //      index metadata for each dimension. For a dense dimension, this is just
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderRegistry.java

    import java.util.HashMap;
    import java.util.LinkedHashMap;
    import java.util.LinkedHashSet;
    import java.util.Map;
    import java.util.Set;
    import java.util.UUID;
    import java.util.concurrent.locks.Lock;
    import java.util.concurrent.locks.ReentrantLock;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. pilot/pkg/model/gateway.go

    	gatewayPorts := sets.New[uint32]()
    	nonPlainTextGatewayPortsBindMap := map[uint32]sets.String{}
    	mergedServers := make(map[ServerPort]*MergedServers)
    	mergedQUICServers := make(map[ServerPort]*MergedServers)
    	serverPorts := make([]ServerPort, 0)
    	plainTextServers := make(map[uint32]ServerPort)
    	serversByRouteName := make(map[string][]*networking.Server)
    	tlsServerInfo := make(map[*networking.Server]*TLSServerInfo)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    			}
    			infra[string(k)] = string(v)
    		}
    		return infra
    	} else if isLabel {
    		if gw.GetLabels() == nil {
    			return make(map[string]string)
    		}
    		return maps.Clone(gw.GetLabels())
    	}
    	if gw.GetAnnotations() == nil {
    		return make(map[string]string)
    	}
    	return maps.Clone(gw.GetAnnotations())
    }
    
    const (
    	// ControllerVersionAnnotation is an annotation added to the Gateway by the controller specifying
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. tools/golangci-override.yaml

              - pkg: go.opencensus.io
                desc: "do not use OpenCensus; use OpenTelemetry instead"
              - pkg: golang.org/x/exp/maps
                desc: "do not use golang.org/x/exp/maps; use istio.io/istio/pkg/maps instead"
              - pkg: maps
                desc: "do not use maps; use istio.io/istio/pkg/maps instead"
              - pkg: golang.org/x/exp/slices
                desc: "do not use golang.org/x/exp/slices; use istio.io/istio/pkg/slices instead"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top