Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,066 for light (0.04 sec)

  1. pkg/kubelet/cm/devicemanager/topology_hints.go

    			deviceHints[resource] = nil
    			continue
    		}
    
    		// Short circuit to regenerate the same hints if there are already
    		// devices allocated to the Container. This might happen after a
    		// kubelet restart, for example.
    		allocated := m.podDevices.containerDevices(string(pod.UID), container.Name, resource)
    		if allocated.Len() > 0 {
    			if allocated.Len() != requested {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/dra/plugin/noderesources.go

    				case <-ctx.Done():
    				}
    			}
    			continue
    		}
    		for {
    			response, err := stream.Recv()
    			if err != nil {
    				switch {
    				case errors.Is(err, io.EOF):
    					// This is okay. Some plugins might never change their
    					// resources after reporting them once.
    					active.cancel(errors.New("plugin has closed the stream"))
    				case status.Convert(err).Code() == codes.Unimplemented:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/go/build/doc.go

    //
    //	//go:binary-only-package
    //
    //	package mypkg
    //
    // The source code could include additional Go code. That code was never
    // compiled but would be processed by tools like godoc and might be useful
    // as end-user documentation.
    //
    // "go build" and other commands no longer support binary-only-packages.
    // [Import] and [ImportDir] will still set the BinaryOnly flag in packages
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. src/net/textproto/textproto.go

    // waiting its turn in the pipeline. The command text is the
    // result of formatting format with args and appending \r\n.
    // Cmd returns the id of the command, for use with StartResponse and EndResponse.
    //
    // For example, a client might run a HELP command that returns a dot-body
    // by using:
    //
    //	id, err := c.Cmd("HELP")
    //	if err != nil {
    //		return nil, err
    //	}
    //
    //	c.StartResponse(id)
    //	defer c.EndResponse(id)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/arguments.go

    		// Ignore if the first argument doesn't satisfy the criteria, it's most often the binary name
    		// Warn in all other cases, but don't error out. This can happen only if the user has edited the argument list by hand, so they might know what they are doing
    		if err != nil {
    			if i != 0 {
    				klog.Warningf("[kubeadm] WARNING: The component argument %q could not be parsed correctly. The argument must be of the form %q. Skipping...\n", arg, "--")
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 11:01:00 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/status_strategy.go

    			// those will also get removed by the apiserver prior to persisting,
    			// but won't be added to the resetFields set.
    
    			// This isn't an issue now, but if it becomes an issue in the future
    			// we might need a mechanism that is the inverse of resetFields where
    			// you specify only the fields to be kept rather than the fields to be wiped
    			// that way you could wipe everything but the status in this case.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 22:16:10 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go

    		{name: "ROTR", argLength: 2, reg: gp21, asm: "ROTR"},                      // arg0 right rotate by (arg1 mod 32) bits
    		{name: "ROTRV", argLength: 2, reg: gp21, asm: "ROTRV"},                    // arg0 right rotate by (arg1 mod 64) bits
    		{name: "ROTRconst", argLength: 1, reg: gp11, asm: "ROTR", aux: "Int64"},   // uint32(arg0) right rotate by auxInt bits, auxInt should be in the range 0 to 31.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:19 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  8. src/runtime/mksizeclasses.go

    // of the memory. It is not necessary that the cutoff here be
    // the same as above.
    //
    // The two sources of waste multiply, so the worst possible case
    // for the above constraints would be that allocations of some
    // size might have a 26.6% (1.266x) overhead.
    // In practice, only one of the wastes comes into play for a
    // given size (sizes < 512 waste mainly on the round-up,
    // sizes > 512 waste mainly on the page chopping).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. cni/pkg/install/install.go

    	if err != nil {
    		return err
    	}
    	installLog.Info("Installation succeed, start watching for re-installation.")
    
    	for {
    		// if sleepWatchInstall yields without error, that means the config might have been modified in some fashion.
    		// so we rerun `install`, which will update the modified config if it has fallen out of sync with
    		// our desired state
    		err := in.sleepWatchInstall(ctx, installedBins)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. src/os/writeto_linux_test.go

    	// Now call WriteTo (through io.Copy), which will hopefully call poll.SendFile
    	n, err := io.Copy(dst, src)
    	if err != nil {
    		t.Fatalf("io.Copy error: %v", err)
    	}
    
    	// We should have called poll.Splice with the right file descriptor arguments.
    	if n > 0 && !hook.called {
    		t.Fatal("expected to called poll.SendFile")
    	}
    	if hook.called && hook.srcfd != int(src.Fd()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top