Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 121 for derp (2.25 sec)

  1. cmd/erasure-object.go

    	if err != nil {
    		if errors.Is(err, errErasureReadQuorum) && !strings.HasPrefix(srcBucket, minioMetaBucket) {
    			_, derr := er.deleteIfDangling(context.Background(), srcBucket, srcObject, metaArr, errs, nil, srcOpts)
    			if derr == nil {
    				if srcOpts.VersionID != "" {
    					err = errFileVersionNotFound
    				} else {
    					err = errFileNotFound
    				}
    			}
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

         * Returned arguments are guaranteed not to be null.
         *
         * @return a list containing all Java compiler arguments
         */
        public List<String> build() {
            args = new ArrayList<>();
            // Take a deep copy of the compilerArgs because the following methods mutate it.
            List<Object> compilerArgs = Cast.uncheckedCast(spec.getCompileOptions().getCompilerArgs());
            List<String> compArgs = compilerArgs
                .stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    	if err != nil {
    		Errorf(nil, "cannot read dep list from shared library %s: %v", libpath, err)
    		return
    	}
    	var deps []string
    	for _, dep := range strings.Split(string(depsbytes), "\n") {
    		if dep == "" {
    			continue
    		}
    		if !filepath.IsAbs(dep) {
    			// If the dep can be interpreted as a path relative to the shlib
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. src/crypto/rsa/pkcs1v15.go

    			s[i] ^= 0x42
    		}
    	}
    
    	return
    }
    
    // These are ASN1 DER structures:
    //
    //	DigestInfo ::= SEQUENCE {
    //	  digestAlgorithm AlgorithmIdentifier,
    //	  digest OCTET STRING
    //	}
    //
    // For performance, we don't use the generic ASN1 encoder. Rather, we
    // precompute a prefix of the digest value that makes a valid ASN1 DER string
    // with the correct contents.
    var hashPrefixes = map[crypto.Hash][]byte{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/DependencyGraphBuilderTest.groovy

            and:
            result.components == ids(root, a, selected, d, e)
        }
    
        def "does not include filtered dependencies"() {
            given:
            def spec = { DependencyMetadata dep -> dep.selector.module != 'c' }
    
            def a = revision('a')
            def b = revision('b')
            def c = revision('c')
            def d = revision('d')
            traverses root, a
            traverses a, b
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  6. src/encoding/json/encode.go

    	// the relatively expensive map operations if ptrLevel is larger than
    	// startDetectingCyclesAfter, so that we skip the work if we're within a
    	// reasonable amount of nested pointers deep.
    	ptrLevel uint
    	ptrSeen  map[any]struct{}
    }
    
    const startDetectingCyclesAfter = 1000
    
    var encodeStatePool sync.Pool
    
    func newEncodeState() *encodeState {
    	if v := encodeStatePool.Get(); v != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  7. src/internal/trace/gc.go

    // utilization function. Otherwise, it returns one function per P.
    func MutatorUtilizationV2(events []Event, flags UtilFlags) [][]MutatorUtil {
    	// Set up a bunch of analysis state.
    	type perP struct {
    		// gc > 0 indicates that GC is active on this P.
    		gc int
    		// series the logical series number for this P. This
    		// is necessary because Ps may be removed and then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/types.go

    	PendingPlugins sets.Set[string]
    	// Whether the Pod is scheduling gated (by PreEnqueuePlugins) or not.
    	Gated bool
    }
    
    // DeepCopy returns a deep copy of the QueuedPodInfo object.
    func (pqi *QueuedPodInfo) DeepCopy() *QueuedPodInfo {
    	return &QueuedPodInfo{
    		PodInfo:                 pqi.PodInfo.DeepCopy(),
    		Timestamp:               pqi.Timestamp,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  9. common/config/.golangci.yml

            # - name: confusing-naming
            # - name: unexported-naming
            # - name: early-return
            # - name: unused-parameter
            # - name: unnecessary-stmt
            # - name: deep-exit
            # - name: import-shadowing
            # - name: modifies-value-receiver
            # - name: unused-receiver
            # - name: bare-return
            # - name: flag-parameter
            # - name: unhandled-error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. .github/CODEOWNERS

    platforms/documentation/docs/src/docs/userguide/core-plugins/war_plugin.adoc                  @gradle/bt-devrel-education @gradle/bt-jvm
    platforms/documentation/docs/src/docs/userguide/dep-man/                                      @gradle/bt-devrel-education @gradle/bt-jvm
    platforms/documentation/docs/src/docs/userguide/jvm/                                          @gradle/bt-devrel-education @gradle/bt-jvm
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top