Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 121 for derp (0.1 sec)

  1. src/encoding/pem/pem.go

    type Block struct {
    	Type    string            // The type, taken from the preamble (i.e. "RSA PRIVATE KEY").
    	Headers map[string]string // Optional headers.
    	Bytes   []byte            // The decoded bytes of the contents. Typically a DER encoded ASN.1 structure.
    }
    
    // getLine results the first \r\n or \n delineated line from the given byte
    // array. The line does not include trailing whitespace or the trailing new
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. cmd/storage-rest-client.go

    	if err = gob.NewDecoder(reader).Decode(dErrResp); err != nil {
    		for i := range errs {
    			errs[i] = toStorageErr(err)
    		}
    		return errs
    	}
    
    	for i, dErr := range dErrResp.Errs {
    		errs[i] = toStorageErr(dErr)
    	}
    
    	return errs
    }
    
    // RenameFile - renames a file.
    func (client *storageRESTClient) RenameFile(ctx context.Context, srcVolume, srcPath, dstVolume, dstPath string) (err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/common/extensions.kt

            "-Porg.gradle.java.installations.auto-detect=false",
        )
    }
    
    fun promotionBuildParameters(dependencyBuildId: RelativeId, extraParameters: String, gitUserName: String, gitUserEmail: String) =
        """-PcommitId=%dep.$dependencyBuildId.build.vcs.number% $extraParameters "-PgitUserName=$gitUserName" "-PgitUserEmail=$gitUserEmail" $pluginPortalUrlOverride %additional.gradle.parameters%"""
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (1)
  4. cmd/kubeadm/app/apis/kubeadm/types.go

    // +k8s:deepcopy-gen=false
    type DocumentMap map[schema.GroupVersionKind][]byte
    
    // ComponentConfig holds a known component config
    type ComponentConfig interface {
    	// DeepCopy should create a new deep copy of the component config in place
    	DeepCopy() ComponentConfig
    
    	// Marshal is marshalling the config into a YAML document returned as a byte slice
    	Marshal() ([]byte, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. src/net/http/request_test.go

    }
    
    // Ensure that Request.Clone creates a deep copy of TransferEncoding.
    // See issue 41907.
    func TestRequestCloneTransferEncoding(t *testing.T) {
    	body := strings.NewReader("body")
    	req, _ := NewRequest("POST", "https://example.org/", body)
    	req.TransferEncoding = []string{
    		"encoding1",
    	}
    
    	clonedReq := req.Clone(context.Background())
    	// modify original after deep copy
    	req.TransferEncoding[0] = "encoding2"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  6. docs/en/docs/async.md

    * **Machine Learning**: it normally requires lots of "matrix" and "vector" multiplications. Think of a huge spreadsheet with numbers and multiplying all of them together at the same time.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. pilot/pkg/model/telemetry.go

    		}
    
    		// Now merge in any overrides
    		if m.DisableSpanReporting != nil {
    			for _, spec := range specs {
    				spec.Disabled = m.DisableSpanReporting.GetValue()
    			}
    		}
    		// TODO: metrics overrides do a deep merge, but here we do a shallow merge.
    		// We should consider if we want to reconcile the two.
    		if m.CustomTags != nil {
    			for _, spec := range specs {
    				spec.CustomTags = m.CustomTags
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		// serializations after dispatching this event.
    		//
    		// Given that CachingObject is just wrapping the object and not perfoming
    		// deep-copying (until some field is explicitly being modified), we create
    		// it unconditionally to ensure safety and reduce deep-copying.
    		//
    		// Make a shallow copy to allow overwriting Object and PrevObject.
    		wcEvent := *event
    		setCachingObjects(&wcEvent, c.versioner)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. pkg/controller/endpointslice/endpointslice_controller_test.go

    // in any way throughout a test run.
    type cacheMutationCheck struct {
    	objects []cacheObject
    }
    
    // cacheObject stores a reference to an original object as well as a deep copy
    // of that object to track any mutations in the original object.
    type cacheObject struct {
    	original runtime.Object
    	deepCopy runtime.Object
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  10. pkg/kubelet/config/config.go

    			pods = append(pods, podRef.DeepCopy())
    		}
    	}
    	return pods
    }
    
    func copyPods(sourcePods []*v1.Pod) []*v1.Pod {
    	pods := []*v1.Pod{}
    	for _, source := range sourcePods {
    		// Use a deep copy here just in case
    		pods = append(pods, source.DeepCopy())
    	}
    	return pods
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top