Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 380 for Identical (0.51 sec)

  1. pilot/pkg/xds/cds.go

    	if req == nil {
    		return true
    	}
    	switch proxy.Type {
    	case model.Waypoint:
    		if model.HasConfigsOfKind(req.ConfigsUpdated, kind.Address) {
    			// TODO: this logic is identical to that used in LDS, consider refactor into a common function
    			// taken directly from LDS... waypoints need CDS updates on kind.Address changes
    			// after implementing use-waypoint which decouples waypoint creation, wl pod creation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 21:27:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/named_test.go

    	}
    
    	Inst := Unalias(pkg.Scope().Lookup("Inst").Type()).(*Pointer).Elem().(*Named)
    	Node := firstFieldType(Inst)
    	Tree := firstFieldType(Node)
    	if !Identical(Inst, Tree) {
    		t.Fatalf("Not a cycle: got %v, want %v", Tree, Inst)
    	}
    	if Inst != Tree {
    		t.Errorf("Duplicate instances in cycle: %s (%p) -> %s (%p) -> %s (%p)", Inst, Inst, Node, Node, Tree, Tree)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 21:06:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/go/types/named.go

    // corresponding object, and that object's type is the (possibly generic) Named
    // type. Declared Named types are identical if and only if their pointers are
    // identical. On the other hand, multiple instantiated Named types may be
    // identical even though their pointers are not identical. One has to use
    // Identical to compare them. For instantiated named types, their obj is a
    // synthetic placeholder that records their position of the corresponding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  5. pkg/kube/kclient/clienttest/test_helpers.go

    		TestWriter: TestWriter[T]{
    			c: c,
    			t: t,
    		},
    	}
    }
    
    // Wrap returns a client that calls t.Fatal on errors.
    // Reads may be cached or uncached, depending on the input client.
    // Note: this is identical to WrapReadWriter but works around Go limitations, allowing calling w/o specifying
    // generic parameters in the common case.
    func Wrap[T controllers.Object](t test.Failer, c kclient.Client[T]) TestClient[T] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/graph/Graphs.java

       */
      public static <N> Graph<N> transpose(Graph<N> graph) {
        if (!graph.isDirected()) {
          return graph; // the transpose of an undirected graph is an identical graph
        }
    
        if (graph instanceof TransposedGraph) {
          return ((TransposedGraph<N>) graph).graph;
        }
    
        return new TransposedGraph<>(graph);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unusedresult/unusedresult.go

    		if !ok {
    			return // e.g. var or builtin
    		}
    		if sig := fn.Type().(*types.Signature); sig.Recv() != nil {
    			// method (e.g. foo.String())
    			if types.Identical(sig, sigNoArgsStringResult) {
    				if stringMethods[fn.Name()] {
    					pass.Reportf(call.Lparen, "result of (%s).%s call not used",
    						sig.Recv().Type(), fn.Name())
    				}
    			}
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/serviceentry_simulation_test.go

        route:
        - destination:
            host: blah.somedomain
            port:
              number: 9999`
    
    func TestServiceEntry(t *testing.T) {
    	cases := []simulationTest{
    		{
    			name:       "identical CIDR (ignoring insignificant bits) is dropped",
    			config:     fmt.Sprintf(se, "1234:1f1:123:123:f816:3eff:feb8:2287/32", "1234:1f1:123:123:f816:3eff:febf:57ce/32"),
    			kubeConfig: "",
    			calls: []simulation.Expect{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:06 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. docs/site-replication/README.md

    ```sh
    mc admin replicate info minio1
    ```
    
    ** Note **
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 21:30:28 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

          "properties": {
            "items": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
Back to top