Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 71 for mypair (0.15 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go

    		FieldNameByteString: cbor.FieldNameByteStringAllowed,
    
    		// When decoding an unrecognized tag to interface{}, return the decoded tag content
    		// instead of the default, a cbor.Tag representing a (number, content) pair.
    		UnrecognizedTagToAny: cbor.UnrecognizedTagContentToAny,
    
    		// For parity with JSON, strings can be decoded into time.Time if they are RFC 3339
    		// timestamps.
    		ByteStringToTime: cbor.ByteStringToTimeAllowed,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:03:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device.cc

      XlaDeviceAllocatorState();
      ~XlaDeviceAllocatorState();
    
      mutex allocator_mutex_;  // Guards the singleton allocator state.
      std::unordered_map<std::pair<const xla::Backend*, int>,
                         std::unique_ptr<XlaDeviceAllocator>,
                         hash<std::pair<const xla::Backend*, int>>>
          allocators_ TF_GUARDED_BY(allocator_mutex_);
    
      XlaDeviceAllocatorState(const XlaDeviceAllocatorState&) = delete;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. pkg/volume/testing/testing.go

    }
    
    type FakeVolumePathHandler struct {
    	sync.RWMutex
    }
    
    func (fv *FakeVolumePathHandler) MapDevice(devicePath string, mapDir string, linkName string, bindMount bool) error {
    	// nil is success, else error
    	return nil
    }
    
    func (fv *FakeVolumePathHandler) UnmapDevice(mapDir string, linkName string, bindMount bool) error {
    	// nil is success, else error
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 ~ /^IGN/ ||
    		$2 ~ /^IX(ON|ANY|OFF)$/ ||
    		$2 ~ /^IN(LCR|PCK)$/ ||
    		$2 !~ "X86_CR3_PCID_NOFLUSH" &&
    		$2 ~ /(^FLU?SH)|(FLU?SH$)/ ||
    		$2 ~ /^C(LOCAL|READ|MSPAR|RTSCTS)$/ ||
    		$2 == "BRKINT" ||
    		$2 == "HUPCL" ||
    		$2 == "PENDIN" ||
    		$2 == "TOSTOP" ||
    		$2 == "XCASE" ||
    		$2 == "ALTWERASE" ||
    		$2 == "NOKERNINFO" ||
    		$2 == "NFDBITS" ||
    		$2 ~ /^PAR/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  5. src/crypto/rsa/rsa.go

    func GenerateKey(random io.Reader, bits int) (*PrivateKey, error) {
    	return GenerateMultiPrimeKey(random, 2, bits)
    }
    
    // GenerateMultiPrimeKey generates a multi-prime RSA keypair of the given bit
    // size and the given random source.
    //
    // Table 1 in "[On the Security of Multi-prime RSA]" suggests maximum numbers of
    // primes for a given bit size.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/asm.go

    				// both 1st operand and 3rd operand are (Rs, Rs+1) register pair.
    				// And the register pair must be contiguous.
    				if (a[0].Type != obj.TYPE_REGREG) || (a[2].Type != obj.TYPE_REGREG) {
    					p.errorf("invalid addressing modes for 1st or 3rd operand to %s instruction, must be register pair", op)
    					return
    				}
    				// For ARM64 CASP-like instructions, its 2nd destination operand is register pair(Rt, Rt+1) that can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. src/crypto/ecdsa/ecdsa_legacy.go

    // using the private key, priv. If the hash is longer than the bit-length of the
    // private key's curve order, the hash will be truncated to that length. It
    // returns the signature as a pair of integers. Most applications should use
    // [SignASN1] instead of dealing directly with r, s.
    func Sign(rand io.Reader, priv *PrivateKey, hash []byte) (r, s *big.Int, err error) {
    	sig, err := SignASN1(rand, priv, hash)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// To see the logs, change global.logging.level to cni:debug.
    	LogLevel string `protobuf:"bytes,12,opt,name=logLevel,proto3" json:"logLevel,omitempty"`
    	// Configuration for the CNI Repair controller.
    	Repair *CNIRepairConfig `protobuf:"bytes,13,opt,name=repair,proto3" json:"repair,omitempty"`
    	// Configure the plugin as a chained CNI plugin. When true, the configuration is added to the CNI chain; when false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  9. pkg/kube/inject/webhook.go

    					pair := strings.SplitN(pairs[i], "=", 2)
    					// The first part is the variable name which can not be empty
    					// the second part is the variable value which can be empty but has to exist
    					// for example, aaa=bbb, aaa= are valid, but =aaa or = are not valid, the
    					// invalid ones will be ignored.
    					if len(pair[0]) > 0 && len(pair) == 2 {
    						newRes = append(newRes, pair...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  10. src/internal/trace/event.go

    	// context.
    	EventRangeBegin
    	EventRangeActive
    	EventRangeEnd
    
    	// EvTaskBegin and EvTaskEnd are a pair of events representing a runtime/trace.Task.
    	EventTaskBegin
    	EventTaskEnd
    
    	// EventRegionBegin and EventRegionEnd are a pair of events represent a runtime/trace.Region.
    	EventRegionBegin
    	EventRegionEnd
    
    	// EventLog represents a runtime/trace.Log call.
    	EventLog
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
Back to top