Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 316 for deeper (0.33 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    				}
    
    			}
    		}
    
    		// If any schema related validation errors have been found at this level or deeper, skip CEL expression validation.
    		// Invalid OpenAPISchemas are not always possible to convert into valid CEL DeclTypes, and can lead to CEL
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/buildlist.go

    	// dependencies, we prefer to add roots for packages with shorter import
    	// stacks first, on the theory that the module requirements for those will
    	// tend to fill in the requirements for their transitive imports (which have
    	// deeper import stacks). So we add the missing dependencies for one depth at
    	// a time, starting with the packages actually in "all" and expanding outwards
    	// until we have scanned every package that was loaded.
    	var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    	// Don't merge if we still need the value of x.
    	// We don't have liveness information here, but we can
    	// approximate x dying with:
    	//  1) target is x's only use.
    	//  2) target is not in a deeper loop than x.
    	if x.Uses != 1 {
    		return false
    	}
    	loopnest := x.Block.Func.loopnest()
    	loopnest.calculateDepths()
    	if loopnest.depth(target.Block.ID) > loopnest.depth(x.Block.ID) {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    	f := s.f
    	s.live = make([][]liveInfo, f.NumBlocks())
    	s.desired = make([]desiredState, f.NumBlocks())
    	var phis []*Value
    
    	live := f.newSparseMapPos(f.NumValues())
    	defer f.retSparseMapPos(live)
    	t := f.newSparseMapPos(f.NumValues())
    	defer f.retSparseMapPos(t)
    
    	// Keep track of which value we want in each register.
    	var desired desiredState
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  5. pkg/config/analysis/diag/helper.go

    Xiaopeng Han <******@****.***> 1712046726 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/resource/helper.go

    func (m *Helper) WithFieldValidation(validationDirective string) *Helper {
    	m.FieldValidation = validationDirective
    	return m
    }
    
    // Subresource sets the helper to access (<resource>/[ns/<namespace>/]<name>/<subresource>)
    func (m *Helper) WithSubresource(subresource string) *Helper {
    	m.Subresource = subresource
    	return m
    }
    
    func (m *Helper) Get(namespace, name string) (runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 26 03:45:13 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/Deleter.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.io.File;
    import java.io.IOException;
    
    /**
     * A file deleter that doesn't give up if deletion doesn't work on the first try.
     */
    @ServiceScope(Scope.Global.class)
    public interface Deleter {
        /**
         * Attempts to delete the given file or directory recursively.
         *
         * Can delete directories with contents.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. pkg/test/loadbalancersim/network/helper.go

    Nathan Mittler <******@****.***> 1643912365 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 18:19:25 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. pilot/pkg/model/kstatus/helper.go

    John Howard <******@****.***> 1684949801 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 17:36:41 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. pilot/pkg/model/status/helper.go

    yeedove <******@****.***> 1687359970 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 15:06:10 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top