Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 149 for meaningful (0.3 sec)

  1. pkg/kubelet/kubelet_getters.go

    // container runtime cache. This function converts kubecontainer.Pod to
    // v1.Pod, so only the fields that exist in both kubecontainer.Pod and
    // v1.Pod are considered meaningful.
    func (kl *Kubelet) GetRunningPods(ctx context.Context) ([]*v1.Pod, error) {
    	pods, err := kl.runtimeCache.GetPods(ctx)
    	if err != nil {
    		return nil, err
    	}
    
    	apiPods := make([]*v1.Pod, 0, len(pods))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. src/html/template/template.go

    	}
    	return parseFiles(t, readFileOS, filenames...)
    }
    
    // IsTrue reports whether the value is 'true', in the sense of not the zero of its type,
    // and whether the value has a meaningful truth value. This is the definition of
    // truth used by if and other such actions.
    func IsTrue(val any) (truth, ok bool) {
    	return template.IsTrue(val)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:00:46 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. src/syscall/exec_linux.go

    	Setpgid bool
    	// Setctty sets the controlling terminal of the child to
    	// file descriptor Ctty. Ctty must be a descriptor number
    	// in the child process: an index into ProcAttr.Files.
    	// This is only meaningful if Setsid is true.
    	Setctty bool
    	Noctty  bool // Detach fd 0 from controlling terminal.
    	Ctty    int  // Controlling TTY fd.
    	// Foreground places the child process group in the foreground.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    // transitional mapping provides a compromise between IDNA2003 and IDNA2008
    // compatibility. It is used by some browsers when resolving domain names. This
    // option is only meaningful if combined with MapForLookup.
    func Transitional(transitional bool) Option {
    	return func(o *options) { o.transitional = transitional }
    }
    
    // VerifyDNSLength sets whether a Profile should fail if any of the IDN parts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    // transitional mapping provides a compromise between IDNA2003 and IDNA2008
    // compatibility. It is used by some browsers when resolving domain names. This
    // option is only meaningful if combined with MapForLookup.
    func Transitional(transitional bool) Option {
    	return func(o *options) { o.transitional = transitional }
    }
    
    // VerifyDNSLength sets whether a Profile should fail if any of the IDN parts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/assign.go

    		return false
    	}
    
    	return true
    }
    
    // extendSlice rewrites append(l1, make([]T, l2)...) to
    //
    //	init {
    //	  if l2 >= 0 { // Empty if block here for more meaningful node.SetLikely(true)
    //	  } else {
    //	    panicmakeslicelen()
    //	  }
    //	  s := l1
    //	  if l2 != 0 {
    //	    n := len(s) + l2
    //	    // Compare n and s as uint so growslice can panic on overflow of len(s) + l2.
    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/syscall/syscall_linux_test.go

    	}
    
    	// We can't really test _AT_SYMLINK_NOFOLLOW, because there
    	// doesn't seem to be any way to change the mode of a symlink.
    	// We don't test _AT_EACCESS because such tests are only
    	// meaningful if run as root.
    
    	err = syscall.Fchmodat(_AT_FDCWD, "file1", 0, 0)
    	if err != nil {
    		t.Errorf("Fchmodat: unexpected error %v", err)
    	}
    
    	err = syscall.Faccessat(_AT_FDCWD, "file1", _F_OK, _AT_SYMLINK_NOFOLLOW)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. pkg/apis/flowcontrol/types.go

    	//
    	// +optional
    	LendablePercent *int32
    	// The `BorrowingCL` of an Exempt priority level is implicitly `ServerCL`.
    	// In other words, an exempt priority level
    	// has no meaningful limit on how much it borrows.
    	// There is no explicit representation of that here.
    }
    
    // LimitResponse defines how to handle requests that can not be executed right now.
    // +union
    type LimitResponse struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/SmbResource.java

         * efficient as manually copying as it employs an additional write
         * thread to read and write data concurrently.
         * <br>
         * It is not possible (nor meaningful) to copy entire workgroups or
         * servers.
         *
         * @param dest
         *            the destination file or directory
         * @throws CIFSException
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 26K bytes
    - Viewed (0)
  10. src/cmd/go/internal/script/engine.go

    	Args    string   // a brief synopsis of the command's arguments (only)
    	Detail  []string // zero or more sentences in the style of the Description section of a Unix 'man' page
    
    	// If Async is true, the Cmd is meaningful to run in the background, and its
    	// Run method must return either a non-nil WaitFunc or a non-nil error.
    	Async bool
    
    	// RegexpArgs reports which arguments, if any, should be treated as regular
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
Back to top