Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 77 for meaningful (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope.go

    	encryptedDEKSourceMaxSize = 1 * 1024 // 1 kB
    	// cacheTTL is the default time-to-live for the cache entry.
    	// this allows the cache to grow to an infinite size for up to a day.
    	// there is unlikely to be any meaningful memory impact on the server
    	// because the cache will likely never have more than a few thousand entries.
    	// each entry can be large due to an internal cache that maps the DEK seed to individual
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 00:23:50 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  2. src/runtime/syscall_windows.go

    //
    //go:linkname compileCallback syscall.compileCallback
    func compileCallback(fn eface, cdecl bool) (code uintptr) {
    	if GOARCH != "386" {
    		// cdecl is only meaningful on 386.
    		cdecl = false
    	}
    
    	if fn._type == nil || (fn._type.Kind_&abi.KindMask) != abi.Func {
    		panic("compileCallback: expected function with one uintptr-sized result")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableCollection.java

     *
     * <p>These are classes instead of interfaces to prevent external subtyping, but should be thought
     * of as interfaces in every important sense. Each public class such as {@link ImmutableSet} is a
     * <i>type</i> offering meaningful behavioral guarantees. This is substantially different from the
     * case of (say) {@link HashSet}, which is an <i>implementation</i>, with semantics that were
     * largely defined by its supertype.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top