Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 999 for union2 (0.12 sec)

  1. platforms/core-configuration/base-services-groovy/src/test/groovy/org/gradle/api/specs/SpecsTest.groovy

            expect:
            def union1 = Specs.union(spec1, spec2)
            union1 instanceof OrSpec
            union1.specs == [spec1, spec2]
    
            def union2 = Specs.union([spec1, spec2])
            union2 instanceof OrSpec
            union2.specs == [spec1, spec2]
        }
    
        def "union of none is none"() {
            expect:
            Specs.union(Specs.satisfyNone()) == Specs.satisfyNone()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testerrors/ptr_test.go

    	},
    	{
    		// Check a pointer to a union if the union has any
    		// pointer fields.
    		name:    "union1",
    		c:       `typedef union { char **p; unsigned long i; } u29; void f29(u29 *pu) {}`,
    		imports: []string{"unsafe"},
    		body:    `var b C.char; p := &b; C.f29((*C.u29)(unsafe.Pointer(&p)))`,
    		fail:    true,
    	},
    	{
    		// Don't check a pointer to a union if the union does
    		// not have any pointer fields.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/union.go

    }
    
    func (u *Union) Len() int         { return len(u.terms) }
    func (u *Union) Term(i int) *Term { return u.terms[i] }
    
    func (u *Union) Underlying() Type { return u }
    func (u *Union) String() string   { return TypeString(u, nil) }
    
    // A Term represents a term in a Union.
    type Term term
    
    // NewTerm returns a new union term.
    func NewTerm(tilde bool, typ Type) *Term { return &Term{tilde, typ} }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. src/go/types/union.go

    }
    
    func (u *Union) Len() int         { return len(u.terms) }
    func (u *Union) Term(i int) *Term { return u.terms[i] }
    
    func (u *Union) Underlying() Type { return u }
    func (u *Union) String() string   { return TypeString(u, nil) }
    
    // A Term represents a term in a [Union].
    type Term term
    
    // NewTerm returns a new union term.
    func NewTerm(tilde bool, typ Type) *Term { return &Term{tilde, typ} }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/unions.go

    	t90|t91|t92|t93|t94|t95|t96|t97|t98|t99|
            int // ERROR "cannot handle more than 100 union terms"
    }
    
    type u102 interface {
            int /* ERROR "cannot handle more than 100 union terms" */ |string|u100a
    }
    
    type u200 interface {
            u100a /* ERROR "cannot handle more than 100 union terms" */ |u100b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/Unions.java

    import java.util.Set;
    import java.util.stream.Collectors;
    
    class Unions {
        private final ExcludeFactory factory;
    
        public Unions(ExcludeFactory factory) {
            this.factory = factory;
        }
    
        /**
         * Tries to compute an union of 2 specs.
         * The result MUST be a simplification, otherwise this method returns null.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/audit/union.go

    )
    
    // Union returns an audit Backend which logs events to a set of backends. The returned
    // Sink implementation blocks in turn for each call to ProcessEvents.
    func Union(backends ...Backend) Backend {
    	if len(backends) == 1 {
    		return backends[0]
    	}
    	return union{backends}
    }
    
    type union struct {
    	backends []Backend
    }
    
    func (u union) ProcessEvents(events ...*auditinternal.Event) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 20 09:51:25 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authorization/union/union.go

    limitations under the License.
    */
    
    // Package union implements an authorizer that combines multiple subauthorizer.
    // The union authorizer iterates over each subauthorizer and returns the first
    // decision that is either an Allow decision or a Deny decision. If a
    // subauthorizer returns a NoOpinion, then the union authorizer moves onto the
    // next authorizer or, if the subauthorizer was the last authorizer, returns
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 28 20:27:28 UTC 2020
    - 3.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authentication/token/union/union.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package union
    
    import (
    	"context"
    
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    	"k8s.io/apiserver/pkg/authentication/authenticator"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 22 17:16:59 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authentication/request/union/union.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package union
    
    import (
    	"net/http"
    
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    	"k8s.io/apiserver/pkg/authentication/authenticator"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 22 17:16:59 UTC 2018
    - 2.4K bytes
    - Viewed (0)
Back to top