Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 449 for returns_ (0.23 sec)

  1. src/runtime/mgcscavenge.go

    // findScavengeCandidate effectively returns entire free and unscavenged regions.
    // If max < pallocChunkPages, it may truncate the returned region such that size is
    // max. However, findScavengeCandidate may still return a larger region if, for
    // example, it chooses to preserve huge pages, or if max is not aligned to min (it
    // will round up). That is, even if max is small, the returned size is not guaranteed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			st.subs.add(a)
    		}
    
    		return a
    	}
    }
    
    // isDigit returns whetner c is a digit for demangling purposes.
    func isDigit(c byte) bool {
    	return c >= '0' && c <= '9'
    }
    
    // isUpper returns whether c is an upper case letter for demangling purposes.
    func isUpper(c byte) bool {
    	return c >= 'A' && c <= 'Z'
    }
    
    // isLower returns whether c is a lower case letter for demangling purposes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	if err != nil {
    		return nil, err
    	}
    
    	// Apply the preconditions to the patch, and return an error if any of them fail.
    	for _, fn := range fns {
    		if !fn(patchMap) {
    			return nil, mergepatch.NewErrPreconditionFailed(patchMap)
    		}
    	}
    
    	return patchMap, nil
    }
    
    // Returns a (recursive) strategic merge patch that yields modified when applied to original.
    // Including:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        public Artifact getArtifact() {
            return artifact;
        }
    
        public void setArtifact(Artifact artifact) {
            this.artifact = artifact;
        }
    
        // TODO I would like to get rid of this. jvz.
        public Model getModel() {
            return model;
        }
    
        /**
         * Returns the project corresponding to a declared parent.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		klog.ErrorS(err, "ListContainers failed")
    		return nil, err
    	}
    
    	return containers, nil
    }
    
    // makeUID returns a randomly generated string.
    func makeUID() string {
    	return fmt.Sprintf("%08x", rand.Uint32())
    }
    
    // getTerminationMessage looks on the filesystem for the provided termination message path, returning a limited
    // amount of those bytes, or returns true if the logs should be checked.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal.go

    	existingCond.Reason = reason
    	existingCond.Message = fmt.Sprintf(message, args...)
    
    	return resList
    }
    
    func max(a, b int32) int32 {
    	if a >= b {
    		return a
    	}
    	return b
    }
    
    func min(a, b int32) int32 {
    	if a <= b {
    		return a
    	}
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            val propertyReferenceExpression = firPropertyAccess.correspondingNameReference ?: return
            val qualifiedProperty = propertyReferenceExpression.getQualifiedElement() as? KtDotQualifiedExpression ?: return
    
            if (!qualifiedProperty.inSelection) return
    
            val propertySymbol = firPropertyAccess.referencedSymbol ?: return
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	if err != nil {
    		return nil, err
    	}
    	if resp.GetStatus() == nil {
    		return nil, errors.New("runtime status is nil")
    	}
    	return toKubeRuntimeStatus(resp.GetStatus(), resp.GetRuntimeHandlers()), nil
    }
    
    // GetPods returns a list of containers grouped by pods. The boolean parameter
    // specifies whether the runtime returns all containers including those already
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    			return err
    		}
    		pvcs[i] = newPvc
    	}
    	return wait.PollUntilContextTimeout(ctx, 100*time.Millisecond, 3*time.Second, false, func(ctx context.Context) (bool, error) {
    		for _, pvc := range pvcs {
    			obj, err := env.internalBinder.pvcCache.GetAPIObj(getPVCName(pvc))
    			if obj == nil || err != nil {
    				return false, nil
    			}
    			pvcInCache, ok := obj.(*v1.PersistentVolumeClaim)
    			if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. src/go/parser/parser.go

    			typ = p.parseTypeInstance(typ)
    		}
    		return typ
    	case token.LBRACK:
    		lbrack := p.expect(token.LBRACK)
    		return p.parseArrayType(lbrack, nil)
    	case token.STRUCT:
    		return p.parseStructType()
    	case token.MUL:
    		return p.parsePointerType()
    	case token.FUNC:
    		return p.parseFuncType()
    	case token.INTERFACE:
    		return p.parseInterfaceType()
    	case token.MAP:
    		return p.parseMapType()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
Back to top