Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 579 for chains (0.13 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/NativeToolChainRegistryInternal.java

         */
        void registerDefaultToolChain(String name, Class<? extends NativeToolChain> type);
    
        /**
         * Adds default tool chains to the registry.
         */
        void addDefaultToolChains();
    
        /**
         * Selects the tool chain that can build binaries from the given source language that can run on the target machine.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/crypto/x509/root_plan9.go

    package x509
    
    import (
    	"os"
    )
    
    // Possible certificate files; stop after finding one.
    var certFiles = []string{
    	"/sys/lib/tls/ca.pem",
    }
    
    func (c *Certificate) systemVerify(opts *VerifyOptions) (chains [][]*Certificate, err error) {
    	return nil, nil
    }
    
    func loadSystemRoots() (*CertPool, error) {
    	roots := NewCertPool()
    	var bestErr error
    	for _, file := range certFiles {
    		data, err := os.ReadFile(file)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 828 bytes
    - Viewed (0)
  3. src/go/internal/gccgoimporter/testdata/aliases.go

    	T1 []byte
    	T2 struct {
    		x int
    	}
    	T3 interface {
    		m() T2
    	}
    	T4 func(int, T0) chan T2
    )
    
    // basic aliases
    type (
    	Ai = int
    	A0 = T0
    	A1 = T1
    	A2 = T2
    	A3 = T3
    	A4 = T4
    
    	A10 = [10]int
    	A11 = []byte
    	A12 = struct {
    		x int
    	}
    	A13 = interface {
    		m() A2
    	}
    	A14 = func(int, A0) chan A2
    )
    
    // alias receiver types
    func (T0) m1() {}
    func (A0) m2() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 27 02:52:03 UTC 2018
    - 624 bytes
    - Viewed (0)
  4. src/crypto/internal/bigmod/nat_asm.go

    //go:build !purego && (386 || amd64 || arm || arm64 || ppc64 || ppc64le || riscv64 || s390x)
    
    package bigmod
    
    import "internal/cpu"
    
    // amd64 assembly uses ADCX/ADOX/MULX if ADX is available to run two carry
    // chains in the flags in parallel across the whole operation, and aggressively
    // unrolls loops. arm64 processes four words at a time.
    //
    // It's unclear why the assembly for all other architectures, as well as for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 07:52:41 UTC 2023
    - 942 bytes
    - Viewed (0)
  5. pilot/test/xdstest/validate.go

    		}
    	}
    }
    
    func validateFilterChainMatch(t testing.TB, l *listener.Listener) {
    	t.Helper()
    
    	// Check for duplicate filter chains, to avoid "multiple filter chains with the same matching rules are defined" error
    	check := map[string]int{}
    	for i1, l1 := range l.FilterChains {
    		// We still create virtual inbound listeners before merging into single inbound
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/tf_to_corert_pipeline_refvar.mlir

    // CHECK-NEXT: [[out_ch:%.*]] = tfrt.merge.chains [[o_chain]], [[o_chain_0]]
    // CHECK-NEXT: tfrt.return [[out_ch]], [[o1]] : !tfrt.chain, !tfrt_fallback.tf_tensor
    module attributes {tf.devices = ["/job:localhost/replica:0/task:0/device:CPU:0"], tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 679 : i32}}  {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/constants/constants.go

    package constants
    
    import (
    	"time"
    
    	"istio.io/istio/pkg/env"
    )
    
    // iptables tables
    const (
    	MANGLE = "mangle"
    	NAT    = "nat"
    	FILTER = "filter"
    	RAW    = "raw"
    )
    
    // Built-in iptables chains
    const (
    	INPUT       = "INPUT"
    	OUTPUT      = "OUTPUT"
    	FORWARD     = "FORWARD"
    	PREROUTING  = "PREROUTING"
    	POSTROUTING = "POSTROUTING"
    )
    
    var BuiltInChainsMap = map[string]struct{}{
    	INPUT:       {},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. pkg/util/iptables/save_restore.go

    )
    
    // MakeChainLine return an iptables-save/restore formatted chain line given a Chain
    func MakeChainLine(chain Chain) string {
    	return fmt.Sprintf(":%s - [0:0]", chain)
    }
    
    // GetChainsFromTable parses iptables-save data to find the chains that are defined. It
    // assumes that save contains a single table's data, and returns a set with keys for every
    // chain defined in that table.
    func GetChainsFromTable(save []byte) sets.Set[Chain] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/plugins/StandardToolChainsPlugin.java

    import org.gradle.nativeplatform.toolchain.plugins.GccCompilerPlugin;
    import org.gradle.nativeplatform.toolchain.plugins.MicrosoftVisualCppCompilerPlugin;
    
    /**
     * Registers the standard tool chains.
     */
    public abstract class StandardToolChainsPlugin implements Plugin<Project> {
        @Override
        public void apply(Project project) {
            project.getPluginManager().apply(MicrosoftVisualCppCompilerPlugin.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/package-info.java

     * 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.
     */
    
    /**
     * Classes that allow C++ tool chains to be configured.
     */
    @org.gradle.api.Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 753 bytes
    - Viewed (0)
Back to top