Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 200 for Intersections (0.35 sec)

  1. guava-tests/test/com/google/common/collect/TreeRangeSetTest.java

        for (Range<Integer> query : QUERY_RANGES) {
          boolean expectIntersect = false;
          for (Range<Integer> expectedRange : rangeSet.asRanges()) {
            if (expectedRange.isConnected(query) && !expectedRange.intersection(query).isEmpty()) {
              expectIntersect = true;
              break;
            }
          }
          assertEquals(
              rangeSet + " was incorrect on intersects(" + query + ")",
              expectIntersect,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 16 19:54:45 UTC 2020
    - 24.3K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/typeinst1.go

    }
    
    type MyString string
    func double[T interface{MyInt|MyString}](x T) T {
    	return x + x
    }
    
    // Embedding of interfaces with term lists leads to interfaces
    // with term lists that are the intersection of the embedded
    // term lists.
    
    type E0 interface {
    	~int | ~bool | ~string
    }
    
    type E1 interface {
    	~int | ~float64 | ~string
    }
    
    type E2 interface {
    	~float64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeStateTest.groovy

            parent1.ownStrictVersionConstraints != StrictVersionConstraints.EMPTY
            parent2.ownStrictVersionConstraints == StrictVersionConstraints.EMPTY
        }
    
        def "computes intersection of ancestors"() {
            when:
            def parent1Edge = edge(root, false)
            def parent2Edge = edge(root, false)
            def parent1 = parent1Edge.targetComponent.nodes[0]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/authentication/v1/generated.proto

      optional UserInfo user = 2;
    
      // Audiences are audience identifiers chosen by the authenticator that are
      // compatible with both the TokenReview and token. An identifier is any
      // identifier in the intersection of the TokenReviewSpec audiences and the
      // token's audiences. A client of the TokenReview API that sets the
      // spec.audiences field should validate that a compatible audience identifier
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtType.kt

         *
         * While [abbreviatedType] is available for all [KaType]s, it can currently only be present in [KaClassType]s. However, abbreviated
         * types are a general concept and if the type system changes (e.g. with denotable union/intersection types), other kinds of types may
         * also be expanded from a type alias. This would allow more kinds of types to carry an abbreviated type.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. cmd/net_test.go

    		expectedIPList set.StringSet
    	}{
    		{set.CreateStringSet("127.0.0.1")},
    	}
    
    	for _, testCase := range testCases {
    		ipList := mustGetLocalIP4()
    		if testCase.expectedIPList != nil && testCase.expectedIPList.Intersection(ipList).IsEmpty() {
    			t.Fatalf("host: expected = %v, got = %v", testCase.expectedIPList, ipList)
    		}
    	}
    }
    
    func TestGetHostIP(t *testing.T) {
    	testCases := []struct {
    		host           string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 19 08:43:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. pkg/apis/authentication/types.go

    	User UserInfo
    	// Audiences are audience identifiers chosen by the authenticator that are
    	// compatible with both the TokenReview and token. An identifier is any
    	// identifier in the intersection of the TokenReviewSpec audiences and the
    	// token's audiences. A client of the TokenReview API that sets the
    	// spec.audiences field should validate that a compatible audience identifier
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:33:37 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authentication/v1/generated.proto

      optional UserInfo user = 2;
    
      // Audiences are audience identifiers chosen by the authenticator that are
      // compatible with both the TokenReview and token. An identifier is any
      // identifier in the intersection of the TokenReviewSpec audiences and the
      // token's audiences. A client of the TokenReview API that sets the
      // spec.audiences field should validate that a compatible audience identifier
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. pkg/monitoring/monitoring_test.go

    	assertRecordedMetrics := func(names ...string) {
    		t.Helper()
    		want := sets.New(names...)
    		got := sets.New(slices.Map(mt.Metrics(), func(e monitortest.Metric) string {
    			return e.Name
    		})...).Intersection(relevantMetrics)
    		assert.Equal(t, want, got)
    	}
    	// derived gauge is always present
    	assertRecordedMetrics()
    
    	// Once we write it shows up
    	testEmptyGauge.Record(0)
    	testEmptySum.Record(0)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  10. pkg/test/echo/server/endpoint/grpc.go

    	"istio.io/istio/pkg/test/echo/proto"
    	"istio.io/istio/pkg/test/echo/server/forwarder"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    var _ Instance = &grpcInstance{}
    
    // grpcServer is the intersection of used methods for grpc.Server and xds.GRPCServer
    type grpcServer interface {
    	reflection.GRPCServer
    	Serve(listener net.Listener) error
    	Stop()
    }
    
    type grpcInstance struct {
    	Config
    	server   grpcServer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 25 17:30:37 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top