Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,648 for reserved4 (0.18 sec)

  1. src/runtime/sys_windows_386.s

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    #include "time_windows.h"
    
    // Offsets into Thread Environment Block (pointer in FS)
    #define TEB_TlsSlots 0xE10
    #define TEB_ArbitraryPtr 0x14
    
    TEXT runtimeĀ·asmstdcall_trampoline<ABIInternal>(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/SocksProxy.kt

        if (version != VERSION_5) throw ProtocolException("unexpected version: $version")
    
        val command = fromSource.readByte() and 0xff
    
        val reserved = fromSource.readByte() and 0xff
        if (reserved != 0) throw ProtocolException("unexpected reserved: $reserved")
    
        val addressType = fromSource.readByte() and 0xff
        val toAddress =
          when (addressType) {
            ADDRESS_TYPE_IPV4 -> {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationCreationRequest.java

        /**
         * Issues a deprecation warning about the creation of a configuration with a reserved name.
         */
        default void warnAboutReservedName() {
            DeprecationLogger.deprecateBehaviour("The configuration " + getConfigurationName() + " was created explicitly. This configuration name is reserved for creation by Gradle.")
                .withAdvice(getDefaultReservedNameAdvice(getConfigurationName()))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 13:42:17 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. pkg/kubelet/types/types.go

    			statuses = append(statuses, *status)
    		}
    	}
    	return statuses
    }
    
    // Reservation represents reserved resources for non-pod components.
    type Reservation struct {
    	// System represents resources reserved for non-kubernetes components.
    	System v1.ResourceList
    	// Kubernetes represents resources reserved for kubernetes system components.
    	Kubernetes v1.ResourceList
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. pkg/util/flag/flags.go

    		if len(numaNodeReservation) != 2 {
    			return fmt.Errorf("the reserved memory has incorrect format, expected numaNodeID:type=quantity[,type=quantity...], got %s", reservation)
    		}
    		memoryTypeReservations := strings.Split(numaNodeReservation[1], ",")
    		if len(memoryTypeReservations) < 1 {
    			return fmt.Errorf("the reserved memory has incorrect format, expected numaNodeID:type=quantity[,type=quantity...], got %s", reservation)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 19 03:30:46 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  6. src/go/ast/issues_test.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ast_test
    
    import (
    	"go/ast"
    	"go/parser"
    	"go/token"
    	"testing"
    )
    
    func TestIssue33649(t *testing.T) {
    	for _, src := range []string{
    		`package p; func _()`,
    		`package p; func _() {`,
    		`package p; func _() { _ = 0`,
    		`package p; func _() { _ = 0 }`,
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 25 13:57:33 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/sparsetree.go

    // is the first number not yet assigned or reserved. N should
    // be larger than zero. For each entry and exit number, the
    // values one larger and smaller are reserved to indicate
    // "strictly above" and "strictly below". numberBlock returns
    // the smallest number not yet assigned or reserved (i.e., the
    // exit number of the last block visited, plus two, because
    // last.exit+1 is a reserved value.)
    //
    // examples:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/gen/cpp/renderers/cpp_file_renderer.cc

    /* Copyright 2021 The TensorFlow Authors. All Rights Reserved.
    
    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: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/crypto/x509/pkix/pkix.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package pkix contains shared, low level structures used for ASN.1 parsing
    // and serialization of X.509 certificates, CRL and OCSP.
    package pkix
    
    import (
    	"encoding/asn1"
    	"encoding/hex"
    	"fmt"
    	"math/big"
    	"time"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. src/os/exec/exec_posix_test.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build unix
    
    package exec_test
    
    import (
    	"fmt"
    	"internal/testenv"
    	"io"
    	"os"
    	"os/user"
    	"path/filepath"
    	"reflect"
    	"runtime"
    	"strconv"
    	"strings"
    	"syscall"
    	"testing"
    	"time"
    )
    
    func init() {
    	registerHelperCommand("pwd", cmdPwd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 20:21:32 UTC 2022
    - 6.8K bytes
    - Viewed (0)
Back to top