Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 96 for Programmed (0.15 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix.go

    // fcntl must never be called with cmd=F_DUP2FD because it doesn't work on AIX
    // There is no way to create a custom fcntl and to keep //sys fcntl easily,
    // Therefore, the programmer must call dup2 instead of fcntl in this case.
    
    // FcntlInt performs a fcntl syscall on fd with the provided command and argument.
    //sys	FcntlInt(fd uintptr, cmd int, arg int) (r int,err error) = fcntl
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    	cleanFlagSet.SetNormalizeFunc(cliflag.WordSepNormalizeFunc)
    	kubeletFlags := options.NewKubeletFlags()
    
    	kubeletConfig, err := options.NewKubeletConfiguration()
    	// programmer error
    	if err != nil {
    		klog.ErrorS(err, "Failed to create a new kubelet configuration")
    		os.Exit(1)
    	}
    
    	cmd := &cobra.Command{
    		Use: componentKubelet,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    	}
    }
    
    // parse parses the input file.
    func parse(file string, data []byte) (f *FileSyntax, err error) {
    	// The parser panics for both routine errors like syntax errors
    	// and for programmer bugs like array index errors.
    	// Turn both into error returns. Catching bug panics is
    	// especially important when processing many files.
    	in := newInput(file, data)
    	defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. LICENSE

        Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
        USA
    
    Also add information on how to contact you by electronic and paper mail.
    
    You should also get your employer (if you work as a programmer) or your
    school, if any, to sign a "copyright disclaimer" for the library, if
    necessary.  Here is a sample; alter the names:
    
      Yoyodyne, Inc., hereby disclaims all copyright interest in the
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof.go

    // in https://github.com/google/pprof/tree/main/proto#overview.
    // Passing debug=1 writes the legacy text format with comments
    // translating addresses to function names and line numbers, so that a
    // programmer can read the profile without tools.
    //
    // The predefined profiles may assign meaning to other debug values;
    // for example, when printing the "goroutine" profile, debug=2 means to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  6. cmd/xl-storage.go

    	if err = Fdatasync(w); err != nil {
    		w.Close()
    		return err
    	}
    
    	// Dealing with error returns from close() - 'man 2 close'
    	//
    	// A careful programmer will check the return value of close(), since it is quite possible that
    	// errors on a previous write(2) operation are reported only on the final close() that releases
    	// the open file descriptor.
    	//
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    				continue
    			}
    			// Syncing a mirror pod is a programmer error since the intent of sync is to
    			// batch notify all pending work. We should make it impossible to double sync,
    			// but for now log a programmer error to prevent accidental introduction.
    			klog.V(3).InfoS("Programmer error, HandlePodSyncs does not expect to receive mirror pods", "podUID", pod.UID, "mirrorPodUID", mirrorPod.UID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. LICENSE

    of the code.  There are many ways you could offer source, and different
    solutions will be better for different programs; see section 13 for the
    specific requirements.
    
      You should also get your employer (if you work as a programmer) or school,
    if any, to sign a "copyright disclaimer" for the program, if necessary.
    For more information on this, and how to apply and follow the GNU AGPL, see
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 33.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/config.go

    	}
    	if c.DisabledPostStartHooks.Has(name) {
    		klog.V(1).Infof("skipping %q because it was explicitly disabled", name)
    		return nil
    	}
    
    	if postStartHook, exists := c.PostStartHooks[name]; exists {
    		// this is programmer error, but it can be hard to debug
    		return fmt.Errorf("unable to add %q because it was already registered by: %s", name, postStartHook.originatingStack)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    		isStatic := kubetypes.IsStaticPod(desiredPod)
    		pod, mirrorPod, wasMirror := kl.podManager.GetPodAndMirrorPod(desiredPod)
    		if pod == nil || wasMirror {
    			klog.V(2).InfoS("Programmer error, restartable pod was a mirror pod but activePods should never contain a mirror pod", "podUID", desiredPod.UID)
    			continue
    		}
    		kl.podWorkers.UpdatePod(UpdatePodOptions{
    			UpdateType: kubetypes.SyncPodCreate,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top