Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for capright (0.18 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/cap_freebsd.go

    	}
    
    	return true, nil
    }
    
    func capright(idx uint64, bit uint64) uint64 {
    	return ((1 << (57 + idx)) | bit)
    }
    
    // CapRightsInit returns a pointer to an initialised CapRights structure filled with rights.
    // See man cap_rights_init(3) and rights(4).
    func CapRightsInit(rights []uint64) (*CapRights, error) {
    	var r CapRights
    	r.Rights[0] = (capRightsGoVersion << 62) | capright(0, 0)
    	r.Rights[1] = capright(1, 0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. src/packaging/deb/copyright

    Copyright(C) 2009-2016 CodeLibs Project. All Rights Reserved.
    
    License: Apache-2.0
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at
     .
     http://www.apache.org/licenses/LICENSE-2.0
     .
     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jan 07 06:27:26 UTC 2016
    - 749 bytes
    - Viewed (0)
  3. docs/en/overrides/partials/copyright.html

    <div class="md-copyright">
        <div class="md-copyright__highlight">
            The FastAPI trademark is owned by <a href="https://tiangolo.com" target="_blank">@tiangolo</a> and is registered in the US and across other regions
        </div>
        {% if not config.extra.generator == false %}
        Made with
        <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
            Material for MkDocs
        </a>
        {% endif %}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Feb 04 20:56:59 UTC 2024
    - 450 bytes
    - Viewed (0)
  4. common/scripts/copyright-banner-go.txt

    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 15 19:28:17 UTC 2020
    - 586 bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/PairTest.groovy

        t.mapLeft { it + 1 }.right == "a"
        t.mapRight { it * 2 }.left == 1
        t.mapRight { it * 2 }.right == "aa"
    
        t.nestLeft(2).mapLeft(unpackLeft()).left == 2
        t.nestLeft(2).mapLeft(unpackRight()).left == 1
        t.nestLeft(2).mapLeft(unpackLeft()).right == "a"
        t.nestLeft(2).mapLeft(unpackRight()).right == "a"
        t.nestRight(2).mapRight(unpackLeft()).right == 2
        t.nestRight(2).mapRight(unpackRight()).right == "a"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Either.java

        /**
         * Map the left side.
         *
         * @see #mapRight
         * @see #fold
         */
        public abstract <U, V> Either<U, V> mapLeft(Function<? super L, ? extends U> f);
    
        /**
         * Map the right side.
         *
         * @see #mapLeft
         * @see #fold
         */
        public abstract <U, V> Either<U, V> mapRight(Function<? super R, ? extends V> f);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/EitherTest.groovy

            right.right.get() == RIGHT
        }
    
        def "map() works"() {
            expect:
            left.mapLeft({ assert it == LEFT; LEFT2 }).left.get() == LEFT2
            left.mapRight({ assert false }).left.get() == LEFT
    
            right.mapRight({ assert it == RIGHT; RIGHT2 }).right.get() == RIGHT2
            right.mapLeft({ assert false }).right.get() == RIGHT
        }
    
        def "fold() subsumes flatMap()"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/Pair.java

        }
    
        public <T> Pair<T, R> mapLeft(Function<? super L, ? extends T> function) throws Exception {
            return of(function.apply(left), right);
        }
    
        public <T> Pair<L, T> mapRight(Function<? super R, ? extends T> function) throws Exception {
            return of(left, function.apply(right));
        }
    
        @Nullable
        public <T> T map(Function<? super Pair<L, R>, ? extends T> function) throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/settings/DefaultMavenSettingsBuilder.java

    /*
     * Licensed to the Apache Software Foundation (ASF) under one
     * or more contributor license agreements.  See the NOTICE file
     * distributed with this work for additional information
     * regarding copyright ownership.  The ASF licenses this file
     * to you under the Apache License, Version 2.0 (the
     * "License"); you may not use this file except in compliance
     * with the License.  You may obtain a copy of the License at
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/mips64/l.go

    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    //	Portions Copyright © 2005-2007 C H Forsyth (******@****.***)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 3.5K bytes
    - Viewed (0)
Back to top