Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 453 for too (0.07 sec)

  1. src/reflect/value.go

    		}
    		if len(in) < n {
    			panic("reflect: CallSlice with too few input arguments")
    		}
    		if len(in) > n {
    			panic("reflect: CallSlice with too many input arguments")
    		}
    	} else {
    		if isVariadic {
    			n--
    		}
    		if len(in) < n {
    			panic("reflect: Call with too few input arguments")
    		}
    		if !isVariadic && len(in) > n {
    			panic("reflect: Call with too many input arguments")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. src/runtime/asm_ppc64x.s

    	// R3 = fn
    	// R4 = arg
    
    	MOVD	R1, R7		// save original stack pointer
    	CMP	$0, g
    	BEQ	nosave
    	MOVD	g, R5
    
    	// Figure out if we need to switch to m->g0 stack.
    	// We get called to create new OS threads too, and those
    	// come in on the m->g0 stack already. Or we might already
    	// be on the m->gsignal stack.
    	MOVD	g_m(g), R8
    	MOVD	m_gsignal(R8), R6
    	CMP	R6, g
    	BEQ	nosave
    	MOVD	m_g0(R8), R6
    	CMP	R6, g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller.go

    //  4. Add Complete condition if satisfied with current counters.
    //
    // It does this up to a limited number of Pods so that the size of .status
    // doesn't grow too much and this sync doesn't starve other Jobs.
    func (jm *Controller) trackJobStatusAndRemoveFinalizers(ctx context.Context, jobCtx *syncJobCtx, needsFlush bool) error {
    	logger := klog.FromContext(ctx)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  4. src/crypto/tls/tls.go

    // at least one certificate or else set GetCertificate.
    func Listen(network, laddr string, config *Config) (net.Listener, error) {
    	// If this condition changes, consider updating http.Server.ServeTLS too.
    	if config == nil || len(config.Certificates) == 0 &&
    		config.GetCertificate == nil && config.GetConfigForClient == nil {
    		return nil, errors.New("tls: neither Certificates, GetCertificate, nor GetConfigForClient set in Config")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. src/go/types/typestring.go

    	case *Alias:
    		w.typeName(t.obj)
    		if list := t.targs.list(); len(list) != 0 {
    			// instantiated type
    			w.typeList(list)
    		}
    		if w.ctxt != nil {
    			// TODO(gri) do we need to print the alias type name, too?
    			w.typ(Unalias(t.obj.typ))
    		}
    
    	default:
    		// For externally defined implementations of Type.
    		// Note: In this case cycles won't be caught.
    		w.string(t.String())
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    		if err := cgc.manager.removeContainer(ctx, containers[i].id); err != nil {
    			klog.ErrorS(err, "Failed to remove container", "containerID", containers[i].id)
    		}
    	}
    
    	// Assume we removed the containers so that we're not too aggressive.
    	return containers[:numToKeep]
    }
    
    // removeOldestNSandboxes removes the oldest inactive toRemove sandboxes and
    // returns the resulting slice.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. cmd/s3-zip-handlers.go

    		}
    		var terr zipindex.ErrNeedMoreData
    		if errors.As(err, &terr) {
    			size = int(terr.FromEnd)
    			if size <= 0 || size > 100<<20 {
    				return nil, ObjectInfo{}, errors.New("zip directory too large")
    			}
    		} else {
    			return nil, ObjectInfo{}, err
    		}
    	}
    }
    
    // headObjectInArchiveFileHandler - HEAD Object in an archive file
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. src/time/time.go

    	if t.wall&hasMonotonic != 0 {
    		t.ext = t.sec()
    		t.wall &= nsecMask
    	}
    }
    
    // setMono sets the monotonic clock reading in t.
    // If t cannot hold a monotonic clock reading,
    // because its wall time is too large,
    // setMono is a no-op.
    func (t *Time) setMono(m int64) {
    	if t.wall&hasMonotonic == 0 {
    		sec := t.ext
    		if sec < minWall || maxWall < sec {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_tpu_device.cc

        // The input must remain alive until the transfer completes, so we keep a
        // reference. We also wait until the transfer completes before calling
        // done().
        // The latter may be too conservative, but given the host is involved in
        // waiting for the transfer to complete anyway there is probably little
        // downside. If we were to add the ability for computations to wait directly
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/buildid.go

    // own input action ID as its output action ID (short of a miraculous hash collision).
    // Instead we use the content IDs to compute the next action ID, and because
    // the content IDs converge, so too do the action IDs and therefore the
    // build IDs and the overall compiler binary. See cmd/dist's cmdbootstrap
    // for the actual convergence sequence.
    //
    // The “one-element cache” purpose is a bit more complex for installed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top