Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 280 for hard (0.13 sec)

  1. pkg/registry/core/service/strategy.go

    		if a[i] != b[i] {
    			return false
    		}
    	}
    	return true
    }
    
    // This is an unusual case.  Service has a number of inter-related fields and
    // in order to avoid breaking clients we try really hard to infer what users
    // mean when they change them.
    //
    // Services are effectively a discriminated union, where `type` is the
    // discriminator. Some fields just don't make sense with some types, so we
    // clear them.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/net/dnsclient.go

    // trailing dot to match pure Go reverse resolver and all other lookup
    // routines.
    // See golang.org/issue/12189.
    // But we don't want to add dots for local names from /etc/hosts.
    // It's hard to tell so we settle on the heuristic that names without dots
    // (like "localhost" or "myhost") do not get trailing dots, but any other
    // names do.
    func absDomainName(s string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilder.java

                cachedValue = null;
            }
    
            public void cache(LocalComponentGraphResolveState state, boolean useStrongReference) {
                if (useStrongReference) {
                    // Keep a hard reference to the state for re-evaluation on mutation
                    // and to force the value to be reused for resolution of other configurations
                    reference = null;
                    cachedValue = state;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. hack/golangci-strict.yaml

            - gosimple
          text: "S1033: unnecessary guard around call to delete"
    
        # Didn't make it into https://github.com/kubernetes/kubernetes/issues/117288.
        # Discussion on Slack concluded that "it's hard to have a universal policy for all
        # functions marked deprecated" and thus this can only be a hint which must
        # be considered on a case-by-case basis.
        - linters:
            - staticcheck
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. src/make.bash

    # tried for all "go" in $PATH. By default, one of $HOME/go1.20.6,
    # $HOME/sdk/go1.20.6, or $HOME/go1.4, whichever exists, in that order.
    # We still check $HOME/go1.4 to allow for build scripts that still hard-code
    # that name even though they put newer Go toolchains there.
    
    bootgo=1.20.6
    
    set -e
    
    if [[ ! -f run.bash ]]; then
    	echo 'make.bash must be run from $GOROOT/src' 1>&2
    	exit 1
    fi
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. cmd/kubelet/app/options/options.go

    	fs.Int32Var(&f.MaxPerPodContainerCount, "maximum-dead-containers-per-container", f.MaxPerPodContainerCount, "Maximum number of old instances to retain per container.  Each container takes up some disk space.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/hooks.go

    		return fmt.Errorf("unable to add %q because PostStartHooks have already been called", name)
    	}
    	if postStartHook, exists := s.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: Mon Apr 29 18:59:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. src/net/tcpsock_posix.go

    	// then the Dial will succeed, having simultaneously connected to itself.
    	// This can only happen when we are letting the kernel pick a port (laddr == nil)
    	// and when there is no listener for the destination address.
    	// It's hard to argue this is anything other than a kernel bug. If we
    	// see this happen, rather than expose the buggy effect to users, we
    	// close the fd and try again. If it happens twice more, we relent and
    	// use the result. See also:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. pkg/volume/util/util_test.go

    					NFS: &v1.NFSVolumeSource{Server: "localhost", Path: "/srv", ReadOnly: false},
    				},
    			}),
    			expectedMountList: []string{"ro", "nfsvers=3", "fsid=100", "hard"},
    			systemOptions:     []string{"fsid=100", "hard"},
    		},
    		"vol-with-sys-opts-with-dup": {
    			volume: createVolumeSpecWithMountOption("good-mount-opts", "ro,nfsvers=3", v1.PersistentVolumeSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/toolchain/switch.go

    	have := make(map[string]bool)
    	var list []string
    	for _, dir := range pathDirs() {
    		if dir == "" || !filepath.IsAbs(dir) {
    			// Refuse to use local directories in $PATH (hard-coding exec.ErrDot).
    			continue
    		}
    		entries, err := os.ReadDir(dir)
    		if err != nil {
    			continue
    		}
    		for _, de := range entries {
    			if de.IsDir() || !strings.HasPrefix(de.Name(), "go1.") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top