Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 620 for light (0.09 sec)

  1. staging/src/k8s.io/api/resource/v1alpha2/types.go

    // when it gets created (AllocationModeImmediate) or whether allocation is
    // delayed until it is needed for a Pod
    // (AllocationModeWaitForFirstConsumer). Other modes might get added in the
    // future.
    type AllocationMode string
    
    const (
    	// When a ResourceClaim has AllocationModeWaitForFirstConsumer, allocation is
    	// delayed until a Pod gets scheduled that needs the ResourceClaim. The
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
  2. src/encoding/json/stream.go

    				// this value is correct in the next call of Decode.
    				dec.scan.bytes--
    				break Input
    			case scanEndObject, scanEndArray:
    				// scanEnd is delayed one byte.
    				// We might block trying to get that byte from src,
    				// so instead invent a space byte.
    				if stateEndValue(&dec.scan, ' ') == scanEnd {
    					scanp++
    					break Input
    				}
    			case scanError:
    				dec.err = dec.scan.err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  3. src/go/types/typestring.go

    				// note for embedded types, type name is field name, and "string" etc are lower case hence unexported.
    				pkgAnnotate = true
    				w.pkgInfo = false // only tag once
    			}
    
    			// This doesn't do the right thing for embedded type
    			// aliases where we should print the alias name, not
    			// the aliased type (see go.dev/issue/44410).
    			if !f.embedded {
    				w.string(f.name)
    				w.byte(' ')
    			}
    			w.typ(f.typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. cmd/global-heal.go

    				// ignore entries that don't have metadata.
    				return
    			}
    			if entry.isDir() {
    				// ignore healing entry.name's with `/` suffix.
    				return
    			}
    
    			// We might land at .metacache, .trash, .multipart
    			// no need to heal them skip, only when bucket
    			// is '.minio.sys'
    			if bucket == minioMetaBucket {
    				if wildcard.Match("buckets/*/.metacache/*", entry.name) {
    					return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. pkg/controller/deployment/util/deployment_util.go

    // However, it does filter out anything whose ControllerRef doesn't match.
    func ListReplicaSets(deployment *apps.Deployment, getRSList RsListFunc) ([]*apps.ReplicaSet, error) {
    	// TODO: Right now we list replica sets by their labels. We should list them by selector, i.e. the replica set's selector
    	//       should be a superset of the deployment's selector, see https://github.com/kubernetes/kubernetes/issues/19830.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/assign.go

    	init.Append(ir.TakeInit(n)...)
    
    	var left, right ir.Node
    	switch n.Op() {
    	case ir.OAS:
    		n := n.(*ir.AssignStmt)
    		left, right = n.X, n.Y
    	case ir.OASOP:
    		n := n.(*ir.AssignOpStmt)
    		left, right = n.X, n.Y
    	}
    
    	// Recognize m[k] = append(m[k], ...) so we can reuse
    	// the mapassign call.
    	var mapAppend *ir.CallExpr
    	if left.Op() == ir.OINDEXMAP && right.Op() == ir.OAPPEND {
    		left := left.(*ir.IndexExpr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. src/crypto/aes/aes_test.go

    		enc := make([]uint32, len(tt.enc))
    		var dec []uint32
    		if tt.dec != nil {
    			dec = make([]uint32, len(tt.dec))
    		}
    		// This test could only test Go version of expandKey because asm
    		// version might use different memory layout for expanded keys
    		// This is OK because we don't expose expanded keys to the outside
    		expandKeyGo(tt.key, enc, dec)
    		for j, v := range enc {
    			if v != tt.enc[j] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 14:58:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/upgrade/common.go

    		}
    		// Lastly, set the right server version to be used
    		fakeclientDiscovery.FakedServerVersion = realServerVersion
    		// return the fake clientset used for dry-running
    		return fakeclient, nil
    	}
    	return kubeconfigutil.ClientSetFromFile(file)
    }
    
    // getWaiter gets the right waiter implementation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. src/cmd/trace/tasks.go

    }
    table#req-status td.family {
      padding-right: 2em;
    }
    table#req-status td.active {
      padding-right: 1em;
    }
    table#req-status td.empty {
      color: #aaa;
    }
    table#reqs {
      margin-top: 1em;
      border-collapse: collapse;
    }
    table#reqs tr.first {
      font-weight: bold;
    }
    table#reqs td {
      font-family: monospace;
    }
    table#reqs td.when {
      text-align: right;
      white-space: nowrap;
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/codehost/git.go

    // into the map r.localTags.
    func (r *gitRepo) loadLocalTags(ctx context.Context) {
    	// The git protocol sends all known refs and ls-remote filters them on the client side,
    	// so we might as well record both heads and tags in one shot.
    	// Most of the time we only care about tags but sometimes we care about heads too.
    	out, err := Run(ctx, r.dir, "git", "tag", "-l")
    	if err != nil {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top