Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 166 for pirates (0.42 sec)

  1. licenses/github.com/pires/go-proxyproto/LICENSE

          file or class name and description of purpose be included on the
          same "printed page" as the copyright notice for easier
          identification within third-party archives.
    
       Copyright 2016 Paulo Pires
    
       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
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 31 17:42:23 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/library/authz.go

    	// For instance, /pods has the resource "pods" and the kind "Pod", while /pods/foo/status has the resource "pods", the sub resource "status", and the kind "Pod"
    	// (because status operates on pods). The binding resource for a pod though may be /pods/foo/binding, which has resource "pods", subresource "binding", and kind "Binding".
    	GetSubresource() string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

        pass_manager->addNestedPass<mlir::func::FuncOp>(
            mlir::TFL::CreateOptimizePass(/*enable_canonicalization=*/true,
                                          toco_flags.disable_fuse_mul_and_fc()));
    
        // This pass operates on TensorFlow ops but is triggered after legalization
        // so that it can target constants introduced once TensorFlow Identity ops
        // are removed during legalization.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. internal/ringbuffer/ring_buffer.go

    	// ErrWriteOnClosed is returned when write on a closed ringbuffer.
    	ErrWriteOnClosed = errors.New("write on closed ringbuffer")
    )
    
    // RingBuffer is a circular buffer that implement io.ReaderWriter interface.
    // It operates like a buffered pipe, where data written to a RingBuffer
    // and can be read back from another goroutine.
    // It is safe to concurrently read and write RingBuffer.
    type RingBuffer struct {
    	buf       []byte
    	size      int
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/config.go

    	return g()
    }
    
    // Future creates a Getter for a variable the custom echo deployment that will be set at sometime in the future.
    // This is helpful for configuring a setup chain for a test suite that operates on global variables.
    func ConfigFuture(custom *[]Config) ConfigGetter {
    	return func() []Config {
    		return *custom
    	}
    }
    
    // NamespaceName returns the string name of the namespace.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. src/math/big/arith_arm64.s

    	UMULH	R5, R3, R8
    
    	ADDS	R4, R6
    	ADCS	R13, R11
    	ADC	$0, R12
    
    	ADDS	R7, R6
    	ADCS	R8, R11
    	ADC	$0, R12, R4
    
    	STP.P	(R6, R11), 16(R1)
    	SUB	$2, R0
    
    // The main loop of this code operates on a block of 4 words every iteration
    // performing [R4:R12:R11:R10:R9] = R4 + R3 * [R8:R7:R6:R5] + [R12:R11:R10:R9]
    // where R4 is carried from the previous iteration, R8:R7:R6:R5 hold the next
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. architecture/ambient/ztunnel.md

    Requests leaving a pod go through the "outbound" code path on port 15001.
    This is where most of Ztunnel's logic lives.
    
    For outbound traffic, we need to first determine where the traffic is destined to.
    As Ztunnel operates at L4, we only have the destination IP/port (recovered via `SO_ORIGINAL_DST`).
    This may be an IP of a Service, a Pod, or something outside the cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

        // internal op perfectly. Hence this assertion should never fail.
        assert(island.WrapsSingleOp());
        Operation& op = island.GetBody().front();
    
        // If the op only operates on resources stored on devices that are
        // "COMPOSITE", then this op is defined to work in parallel with other
        // TPUExecute* ops. So we can make all ResourceIds device-specific below.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. docs/pt/docs/index.md

    ## Requisitos
    
    FastAPI está nos ombros de gigantes:
    
    * <a href="https://www.starlette.io/" class="external-link" target="_blank">Starlette</a> para as partes web.
    * <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a> para a parte de dados.
    
    ## Instalação
    
    <div class="termy">
    
    ```console
    $ pip install fastapi
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. test/chan/powser1.go

    }
    
    func mkdch2() *dch2 {
    	d2 := new(dch2)
    	d2[0] = mkdch()
    	d2[1] = mkdch()
    	return d2
    }
    
    // split reads a single demand channel and replicates its
    // output onto two, which may be read at different rates.
    // A process is created at first demand for a rat and dies
    // after the rat has been sent to both outputs.
    
    // When multiple generations of split exist, the newest
    // will service requests on one channel, which is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 12.7K bytes
    - Viewed (0)
Back to top