Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 184 for upwards (0.21 sec)

  1. code_of_conduct.md

    include:
    
    * Using welcoming and inclusive language
    * Being respectful of differing viewpoints and experiences
    * Gracefully accepting constructive criticism
    * Focusing on what is best for the community
    * Showing empathy towards other community members
    
    Examples of unacceptable behavior by participants include:
    
    * The use of sexualized language or imagery and unwelcome sexual attention or
      advances
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 20 18:38:58 UTC 2020
    - 3.5K 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. cmd/dynamic-timeouts.go

    			timeout = dt.minimum
    		}
    		atomic.StoreInt64(&dt.timeout, timeout)
    	} else if failPct < dynamicTimeoutDecreaseThresholdPct {
    		// We are hitting the timeout relatively few times,
    		// so decrease the timeout towards 25 % of maximum time spent.
    		max = max * 125 / 100
    
    		timeout := atomic.LoadInt64(&dt.timeout)
    		if max < time.Duration(timeout) {
    			// Move 50% toward the max.
    			timeout = (int64(max) + timeout) / 2
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Aug 19 23:21:05 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top