Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 706 for light (0.04 sec)

  1. src/cmd/go/internal/vcweb/vcweb.go

    //
    // If the script completed successfully, HandleScript invokes f on the handler
    // with the script's result still read-locked, and waits for it to return. (That
    // ensures that cache invalidation does not race with an in-flight handler.)
    //
    // Otherwise, HandleScript returns the (cached) error from executing the script.
    func (s *Server) HandleScript(scriptRelPath string, logger *log.Logger, f func(http.Handler)) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K 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. pkg/volume/fc/fc_util.go

    		return "", err
    	}
    }
    
    // DetachDisk removes scsi device file such as /dev/sdX from the node.
    func (util *fcUtil) DetachDisk(c fcDiskUnmounter, devicePath string) error {
    	var devices []string
    	// devicePath might be like /dev/mapper/mpathX. Find destination.
    	dstPath, err := c.io.EvalSymlinks(devicePath)
    	if err != nil {
    		return err
    	}
    	// Find slave
    	if strings.HasPrefix(dstPath, "/dev/dm-") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/internal/obj/pcln.go

    		// by globalIndex. But there may be no instructions generated by that
    		// body (it's empty, or its instructions were CSEd with other things, etc.).
    		// In that case, we don't need an unwind entry.
    		// TODO: is this really right? Seems to happen a whole lot...
    		return
    	}
    	s.localTree.setParentPC(localIndex, pc)
    }
    
    // pctoinline computes the index into the local inlining tree to use at p.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top