Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 127 for addLink (0.18 sec)

  1. src/crypto/tls/conn.go

    	if total := len(in) + n; cap(in) >= total {
    		head = in[:total]
    	} else {
    		head = make([]byte, total)
    		copy(head, in)
    	}
    	tail = head[len(in):]
    	return
    }
    
    // encrypt encrypts payload, adding the appropriate nonce and/or MAC, and
    // appends it to record, which must already contain the record header.
    func (hc *halfConn) encrypt(record, payload []byte, rand io.Reader) ([]byte, error) {
    	if hc.cipher == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/syscall/syscall_windows.go

    	// There is no loss of expressivity here, because the final
    	// uint16, if it is used, is supposed to be a NUL, and Go doesn't need that.
    	// For Go 1.1, we might avoid the allocation of win32finddata1 here
    	// by adding a final Bug [2]uint16 field to the struct and then
    	// adjusting the fields in the result directly.
    	var data1 win32finddata1
    	handle, err = findFirstFile1(name, &data1)
    	if err == nil {
    		copyFindData(data, &data1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/devicemanager/manager_test.go

    	as.True(ok)
    	as.Equal(int64(0), resource1Allocatable.Value())
    	as.Equal(int64(2), resource1Capacity.Value())
    	as.Equal(0, len(removedResources))
    
    	// Tests adding another resource.
    	resourceName2 := "resource2"
    	e2 := &endpointImpl{}
    	e2.client = plugin.NewPluginClient(resourceName2, socketName, testManager)
    	testManager.endpoints[resourceName2] = endpointInfo{e: e2, opts: nil}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

    //
    // The CEL expressions of a policy must have a computed CEL cost below the maximum
    // CEL budget. Each evaluation of the policy is given an independent CEL cost budget.
    // Adding/removing policies, bindings, or params can not affect whether a
    // given (policy, binding, param) combination is within its own CEL budget.
    message ValidatingAdmissionPolicyBinding {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  5. pkg/kubelet/status/status_manager_test.go

    		TypeMeta: metav1.TypeMeta{
    			Kind:       "Pod",
    			APIVersion: "v1",
    		},
    		ObjectMeta: metav1.ObjectMeta{
    			UID:       "12345678",
    			Name:      "foo",
    			Namespace: "new",
    		},
    	}
    }
    
    // After adding reconciliation, if status in pod manager is different from the cached status, a reconciliation
    // will be triggered, which will mess up all the old unit test.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  6. cmd/api-errors.go

    	ErrTransitionStorageClassNotFoundError
    	// MinIO storage class error codes
    	ErrInvalidStorageClass
    	ErrBackendDown
    	// Add new extended error codes here.
    	// Please open a https://github.com/minio/minio/issues before adding
    	// new error codes here.
    
    	ErrMalformedJSON
    	ErrAdminNoSuchUser
    	ErrAdminNoSuchUserLDAPWarn
    	ErrAdminLDAPExpectedLoginName
    	ErrAdminNoSuchGroup
    	ErrAdminGroupNotEmpty
    	ErrAdminGroupDisabled
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

    //
    // The CEL expressions of a policy must have a computed CEL cost below the maximum
    // CEL budget. Each evaluation of the policy is given an independent CEL cost budget.
    // Adding/removing policies, bindings, or params can not affect whether a
    // given (policy, binding, param) combination is within its own CEL budget.
    message ValidatingAdmissionPolicyBinding {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      Output weights_1 = ops::VarHandleOp(scope.WithOpName("weights_1"), DT_FLOAT,
                                          TensorShape({1000}));
    
      // We update the weights by adding delta to them (to "simulate" a
      // ResourceApplyGradientDescent and similar things).
      Output delta = ops::Placeholder(scope.WithOpName("delta"), DT_FLOAT);
    
      ops::AssignAddVariableOp increment_op(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    As part of the stabilization effort in Gradle 4.8, we are deprecating this behavior and asking all users to migrate their build.
    
    The new, stable behavior can be switched on by adding the following to your settings file:
    
    ====
    [.multi-language-sample]
    =====
    .settings.gradle
    [source, groovy]
    ----
    enableFeaturePreview('STABLE_PUBLISHING')
    ----
    =====
    [.multi-language-sample]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.31.md

    ### Container Images
    
    All container images are available as manifest lists and support the described
    architectures. It is also possible to pull a specific architecture directly by
    adding the "-$ARCH" suffix  to the container image name.
    
    name | architectures
    ---- | -------------
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
Back to top