Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 149 for upwards (0.21 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/build/BuildStateRegistry.java

         *
         * <p>This shouldn't be on this interface, as this is state for the root build that should be managed internally by the {@link RootBuildState} instance instead. This method is here to allow transition towards that structure.
         */
        void finalizeIncludedBuilds();
    
        /**
         * Creates an included build. An included build is-a nested build whose projects and outputs are treated as part of the composite build.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r213/ModelsWithGradleProjectCrossVersionSpec.groovy

        }
    
        @TargetGradleVersion(">=3.0 <7.0")
        def "ProjectConnection provides GradleProject for subproject of multi-project build with --no-search-upward"() {
            when:
            def rootDir = rootMulti.file("x")
            GradleProject project = getGradleProjectWithProjectConnection(rootDir, modelType, false)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. src/internal/fuzz/pcg.go

    }
    
    // The functions in pcg implement a 32 bit PRNG with a 64 bit period: pcg xsh rr
    // 64 32. See https://www.pcg-random.org/ for more information. This
    // implementation is geared specifically towards the needs of fuzzing: Simple
    // creation and use, no reproducibility, no concurrency safety, just the
    // necessary methods, optimized for speed.
    
    var globalInc atomic.Uint64 // PCG stream
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:28:14 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. pilot/pkg/xds/proxy_dependencies.go

    	model.SidecarProxy: sets.New(kind.Gateway, kind.KubernetesGateway),
    }
    
    // ConfigAffectsProxy checks if a pushEv will affect a specified proxy. That means whether the push will be performed
    // towards the proxy.
    func ConfigAffectsProxy(req *model.PushRequest, proxy *model.Proxy) bool {
    	// Empty changes means "all" to get a backward compatibility.
    	if len(req.ConfigsUpdated) == 0 {
    		return true
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/policy_options.go

    type StaticPolicyOptions struct {
    	// flag to enable extra allocation restrictions to avoid
    	// different containers to possibly end up on the same core.
    	// we consider "core" and "physical CPU" synonim here, leaning
    	// towards the terminoloy k8s hints. We acknowledge this is confusing.
    	//
    	// looking at https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/,
    	// any possible naming scheme will lead to ambiguity to some extent.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. README.md

    ## Governance 
    
    Kubernetes project is governed by a framework of principles, values, policies and processes to help our community and constituents towards our shared goals.
    
    The [Kubernetes Community](https://github.com/kubernetes/community/blob/master/governance.md) is the launching point for learning about how we organize ourselves.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. pkg/controller/job/pod_failure_policy.go

    // against the pod failure policy rules. The information is represented as an
    //   - optional job failure message (present in case the pod matched a 'FailJob' rule),
    //   - a boolean indicating if the failure should be counted towards backoffLimit
    //     (and backoffLimitPerIndex if specified). It should not be counted
    //     if the pod matched an 'Ignore' rule,
    //   - a pointer to the matched pod failure policy action.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 20:44:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1/types.go

    	// Annotation indicating the number of failures for the index corresponding
    	// to the pod, which are counted towards the backoff limit.
    	JobIndexFailureCountAnnotation = labelPrefix + "job-index-failure-count"
    	// Annotation indicating the number of failures for the index corresponding
    	// to the pod, which don't count towards the backoff limit, according to the
    	// pod failure policy. When the annotation is absent zero is implied.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  9. pkg/apis/batch/types.go

    	// Annotation indicating the number of failures for the index corresponding
    	// to the pod, which are counted towards the backoff limit.
    	JobIndexFailureCountAnnotation = labelPrefix + "job-index-failure-count"
    	// Annotation indicating the number of failures for the index corresponding
    	// to the pod, which don't count towards the backoff limit, according to the
    	// pod failure policy. When the annotation is absent zero is implied.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/loopbce.go

    	indVarMaxInc                            // maximum value is inclusive (default: exclusive)
    	indVarCountDown                         // if set the iteration starts at max and count towards min (default: min towards max)
    )
    
    type indVar struct {
    	ind   *Value // induction variable
    	nxt   *Value // the incremented variable
    	min   *Value // minimum value, inclusive/exclusive depends on flags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top