Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for nothings (0.26 sec)

  1. cluster/gce/gci/configure-helper.sh

      if [[ -n "${FLUENTD_GCP_CPU_REQUEST:-}" ]]; then
        any_overrides=true
      fi
      if [[ -n "${FLUENTD_GCP_MEMORY_REQUEST:-}" ]]; then
        any_overrides=true
      fi
      if ! $any_overrides; then
        # Nothing to do here.
        exit
      fi
    
      # Wait until ScalingPolicy CRD is in place.
      until kubectl get scalingpolicies.scalingpolicy.kope.io
      do
        sleep 10
      done
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    			},
    			want: &preFilterState{
    				Constraints: []topologySpreadConstraint{
    					{
    						MaxSkew:            1,
    						TopologyKey:        "zone",
    						Selector:           labels.Nothing(),
    						MinDomains:         1,
    						NodeAffinityPolicy: v1.NodeInclusionPolicyHonor,
    						NodeTaintsPolicy:   v1.NodeInclusionPolicyIgnore,
    					},
    				},
    				TpKeyToDomainsNum: map[string]int{"zone": 2},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

    internal class NoThisImpl(
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KaFirDiagnostic.NoThis
    
    internal class DeprecationErrorImpl(
        override val reference: KaSymbol,
        override val message: String,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	ListenAndServePodResources()
    	Run(<-chan kubetypes.PodUpdate)
    	RunOnce(<-chan kubetypes.PodUpdate) ([]RunPodResult, error)
    }
    
    // Dependencies is a bin for things we might consider "injected dependencies" -- objects constructed
    // at runtime that are necessary for running the Kubelet. This is a temporary solution for grouping
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // execution. The "go mod download" command is useful mainly for pre-filling
    // the local cache or to compute the answers for a Go module proxy.
    //
    // By default, download writes nothing to standard output. It may print progress
    // messages and errors to standard error.
    //
    // The -json flag causes download to print a sequence of JSON objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    func isbitcon(x uint64) bool {
    	if x == 1<<64-1 || x == 0 {
    		return false
    	}
    	// determine the period and sign-extend a unit to 64 bits
    	switch {
    	case x != x>>32|x<<32:
    		// period is 64
    		// nothing to do
    	case x != x>>16|x<<48:
    		// period is 32
    		x = uint64(int64(int32(x)))
    	case x != x>>8|x<<56:
    		// period is 16
    		x = uint64(int64(int16(x)))
    	case x != x>>4|x<<60:
    		// period is 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath"
            },
            "iscsi": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    is not empty and its final non-empty statement is terminating.
    </p>
    
    
    <h3 id="Empty_statements">Empty statements</h3>
    
    <p>
    The empty statement does nothing.
    </p>
    
    <pre class="ebnf">
    EmptyStmt = .
    </pre>
    
    
    <h3 id="Labeled_statements">Labeled statements</h3>
    
    <p>
    A labeled statement may be the target of a <code>goto</code>,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    		}
    	}
    
    	// Assume that of all the types we saw during the tests,
    	// if there wasn't an explicit entry for a conversion between
    	// a pair of types, then it's not to be allowed. This checks for
    	// things like 'int64' converting to '*int'.
    	for t1 := range all {
    		for t2 := range all {
    			expectOK := t1 == t2 || canConvert[[2]Type{t1, t2}] || t2.Kind() == Interface && t2.NumMethod() == 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top