Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 232 for Poland (0.16 sec)

  1. internal/disk/directio_darwin.go

    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package disk
    
    import (
    	"os"
    
    	"github.com/ncw/directio"
    	"golang.org/x/sys/unix"
    )
    
    // ODirectPlatform indicates if the platform supports O_DIRECT
    const ODirectPlatform = true
    
    // OpenFileDirectIO - bypass kernel cache.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Jun 17 14:31:36 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.26.md

    - go.opencensus.io: v0.23.0 → v0.24.0
    - golang.org/x/mod: v0.9.0 → v0.12.0
    - golang.org/x/oauth2: ee48083 → v0.7.0
    - golang.org/x/sync: v0.1.0 → v0.3.0
    - golang.org/x/time: 90d013b → v0.3.0
    - golang.org/x/tools: v0.6.0 → v0.12.0
    - google.golang.org/api: v0.60.0 → v0.114.0
    - google.golang.org/genproto: c8bf987 → 438c736
    - google.golang.org/grpc: v1.49.0 → v1.56.3
    - google.golang.org/protobuf: v1.28.1 → v1.31.0
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Mar 14 16:24:51 GMT 2024
    - 425.7K bytes
    - Viewed (0)
  3. docs_src/dataclasses/tutorial003.py

    @app.get("/authors/", response_model=List[Author])  # (7)
    def get_authors():  # (8)
        return [  # (9)
            {
                "name": "Breaters",
                "items": [
                    {
                        "name": "Island In The Moon",
                        "description": "A place to be be playin' and havin' fun",
                    },
                    {"name": "Holy Buddies"},
                ],
            },
            {
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat May 14 11:59:59 GMT 2022
    - 1.4K bytes
    - Viewed (0)
  4. cmd/signature-v4-utils.go

    	"github.com/minio/minio/internal/auth"
    	"github.com/minio/minio/internal/hash/sha256"
    	xhttp "github.com/minio/minio/internal/http"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v2/policy"
    	"golang.org/x/exp/slices"
    )
    
    // http Header "x-amz-content-sha256" == "UNSIGNED-PAYLOAD" indicates that the
    // client did not calculate sha256 of the payload.
    const unsignedPayload = "UNSIGNED-PAYLOAD"
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Jan 31 18:56:45 GMT 2024
    - 9K bytes
    - Viewed (0)
  5. internal/ioutil/discard.go

    // io.Writer implementation alone avoids also unnecessary buffer copies,
    // and as such incurred latencies.
    var Discard io.Writer = discard{}
    
    // discard is /dev/null for Golang.
    type discard struct{}
    
    func (discard) Write(p []byte) (int, error) {
    	return len(p), nil
    }
    
    // DiscardReader discarded reader
    func DiscardReader(r io.Reader) {
    	Copy(Discard, r)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Nov 06 22:26:08 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/asm/doc.go

    the main variation having to do with addressing modes. Input is
    run through a simplified C preprocessor that implements #include,
    #define, #ifdef/endif, but not #if or ##.
    
    For more information, see https://golang.org/doc/asm.
    */
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 22 20:46:45 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.27.md

    - go.uber.org/goleak: v1.2.0 → v1.2.1
    - golang.org/x/mod: v0.6.0 → v0.9.0
    - golang.org/x/net: 1e63c2f → v0.8.0
    - golang.org/x/sync: 886fb93 → v0.1.0
    - golang.org/x/sys: v0.3.0 → v0.6.0
    - golang.org/x/term: v0.3.0 → v0.6.0
    - golang.org/x/text: v0.5.0 → v0.8.0
    - golang.org/x/tools: v0.2.0 → v0.7.0
    - golang.org/x/xerrors: 5ec99f8 → 04be3eb
    - google.golang.org/grpc: v1.49.0 → v1.51.0
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Apr 16 15:20:21 GMT 2024
    - 434.3K bytes
    - Viewed (3)
  8. cni/pkg/nodeagent/ztunnelserver_test.go

    // limitations under the License.
    
    package nodeagent
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"os"
    	"sync/atomic"
    	"testing"
    	"time"
    
    	"golang.org/x/sys/unix"
    	"google.golang.org/protobuf/proto"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    
    	"istio.io/istio/pkg/monitoring/monitortest"
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 21:47:31 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  9. README.md

    ```sh
    go install github.com/minio/minio@latest
    ```
    
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Feb 14 17:51:34 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.29.md

    - go.opentelemetry.io/proto/otlp: v0.19.0 → v1.0.0
    - golang.org/x/crypto: v0.11.0 → v0.14.0
    - golang.org/x/mod: v0.10.0 → v0.12.0
    - golang.org/x/net: v0.13.0 → v0.17.0
    - golang.org/x/oauth2: v0.8.0 → v0.10.0
    - golang.org/x/sync: v0.2.0 → v0.3.0
    - golang.org/x/sys: v0.10.0 → v0.13.0
    - golang.org/x/term: v0.10.0 → v0.13.0
    - golang.org/x/text: v0.11.0 → v0.13.0
    - golang.org/x/tools: v0.8.0 → v0.12.0
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Apr 16 21:41:06 GMT 2024
    - 299.9K bytes
    - Viewed (1)
Back to top