Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 185 for spelling (0.17 sec)

  1. src/runtime/map_fast32.go

    	}
    
    	if insertb == nil {
    		// The current bucket and all the overflow buckets connected to it are full, allocate a new one.
    		insertb = h.newoverflow(t, b)
    		inserti = 0 // not necessary, but avoids needlessly spilling inserti
    	}
    	insertb.tophash[inserti&(abi.MapBucketCount-1)] = tophash(hash) // mask inserti to avoid bounds checks
    
    	insertk = add(unsafe.Pointer(insertb), dataOffset+inserti*4)
    	// store new key at insert position
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. pkg/kubelet/images/types.go

    	ErrInvalidImageName = errors.New("InvalidImageName")
    )
    
    // ImageManager provides an interface to manage the lifecycle of images.
    // Implementations of this interface are expected to deal with pulling (downloading),
    // managing, and deleting container images.
    // Implementations are expected to abstract the underlying runtimes.
    // Implementations are expected to be thread safe.
    type ImageManager interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 22:52:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. .github/pull_request_template.md

           for the change (usually before you start working on it).  Trivial changes like typos do not
           require a JIRA issue. Your pull request should address just this issue, without
           pulling in other changes.
     - [ ] Each commit in the pull request should have a meaningful subject line and body.
     - [ ] Format the pull request title like `[MNG-XXX] SUMMARY`,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 20 13:14:27 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_prefer_compatible.txt

    # For this module, v2.1.0 exists and has a go.mod file.
    # 'go list -m github.com/russross/blackfriday@v2.0' will check
    # the latest v2.0 tag, discover that it isn't the right module, and stop there
    # (instead of spending the time to check O(N) previous tags).
    
    ! go list -m github.com/russross/blackfriday@v2.0
    stderr '^go: module github.com/russross/blackfriday: no matching versions for query "v2\.0\"'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 17 18:25:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/types.go

    	// ImagePullPolicy specifies the policy for image pulling during kubeadm "init" and "join" operations.
    	// The value of this field must be one of "Always", "IfNotPresent" or "Never".
    	// If this field is unset kubeadm will default it to "IfNotPresent", or pull the required images if not present on the host.
    	ImagePullPolicy v1.PullPolicy `json:"imagePullPolicy,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller.go

    		true,
    		func(ctx context.Context) (bool, error) {
    			// add dummy item to the queue to trigger file content processing.
    			d.queue.Add(workqueueKey)
    
    			// return false to continue polling.
    			return false, nil
    		},
    	)
    
    	wg.Wait()
    }
    
    // runWorker to process file content
    func (d *DynamicEncryptionConfigContent) runWorker(ctx context.Context) {
    	for d.processNextWorkItem(ctx) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/internal/poll/fd.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package poll supports non-blocking I/O on file descriptors with polling.
    // This supports I/O operations that block only a goroutine, not a thread.
    // This is used by the net and os packages.
    // It uses a poller built into the runtime, with support from the
    // runtime scheduler.
    package poll
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:16:28 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. src/net/http/cookiejar/punycode.go

    	}
    	delta += delta / numPoints
    	k := int32(0)
    	for delta > ((base-tmin)*tmax)/2 {
    		delta /= base - tmin
    		k += base
    	}
    	return k + (base-tmin+1)*delta/(delta+skew)
    }
    
    // Strictly speaking, the remaining code below deals with IDNA (RFC 5890 and
    // friends) and not Punycode (RFC 3492) per se.
    
    // acePrefix is the ASCII Compatible Encoding prefix.
    const acePrefix = "xn--"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 10 23:42:56 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  9. src/net/http/example_test.go

    		if err != nil {
    			http.Error(w, err.Error(), http.StatusInternalServerError)
    			return
    		}
    		// Don't forget to close the connection:
    		defer conn.Close()
    		bufrw.WriteString("Now we're speaking raw TCP. Say hi: ")
    		bufrw.Flush()
    		s, err := bufrw.ReadString('\n')
    		if err != nil {
    			log.Printf("error reading string: %v", err)
    			return
    		}
    		fmt.Fprintf(bufrw, "You said: %q\nBye.\n", s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 19 16:12:45 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  10. src/runtime/map_fast64.go

    	}
    
    	if insertb == nil {
    		// The current bucket and all the overflow buckets connected to it are full, allocate a new one.
    		insertb = h.newoverflow(t, b)
    		inserti = 0 // not necessary, but avoids needlessly spilling inserti
    	}
    	insertb.tophash[inserti&(abi.MapBucketCount-1)] = tophash(hash) // mask inserti to avoid bounds checks
    
    	insertk = add(unsafe.Pointer(insertb), dataOffset+inserti*8)
    	// store new key at insert position
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top