Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for afterend (0.59 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

         *
         * <p>The last element of the supplied path is used as the project name. The supplied path is converted to a project
         * directory relative to the root project directory. The project directory can be altered by changing the 'projectDir'
         * property after the project has been included (see {@link ProjectDescriptor#setProjectDir(File)})</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/ipset.go

    		// "KUBE-" to "KUBE-6-". The "KUBE-" prefix is kept for
    		// backward compatibility. The maximum name length of an ipset
    		// is 31 characters which must be taken into account.  The
    		// ipv4 names are not altered to minimize the risk for
    		// problems on upgrades.
    		if strings.HasPrefix(name, "KUBE-") {
    			name = strings.Replace(name, "KUBE-", "KUBE-6-", 1)
    			if len(name) > 31 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    			last = scan.token
    			end = scan.end
    		}
    		// Scan key-type sequences. A key is of length 2 and may be followed
    		// by 0 or more "type" subtags from 3 to the maximum of 8 letters.
    		var last, key []byte
    		for attrEnd := end; len(scan.token) == 2; last = key {
    			key = scan.token
    			end = scan.end
    			for scan.scan(); end < scan.end && len(scan.token) > 2; scan.scan() {
    				end = scan.end
    			}
    			// TODO: check key value validity
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. cmd/bucket-object-lock.go

    // returns an error. For objects in "Governance" mode, overwrite is allowed if the retention date has expired.
    // For objects in "Compliance" mode, retention date cannot be shortened, and mode cannot be altered.
    // For objects with legal hold header set, the s3:PutObjectLegalHold permission is expected to be set
    // Both legal hold and retention can be applied independently on an object
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/noder/noder.go

    }
    
    // A function named init is a special case.
    // It is called by the initialization before main is run.
    // To make it unique within a package and also uncallable,
    // the name, normally "pkg.init", is altered to "pkg.init.0".
    var renameinitgen int
    
    func Renameinit() *types.Sym {
    	s := typecheck.LookupNum("init.", renameinitgen)
    	renameinitgen++
    	return s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    				strType := withMaxLength(primitiveType("string", ""), max)
    				beforeLen := int64(2)
    				afterLen := int64(4)
    				objType := objectType(map[string]schema.Structural{
    					"str":    strType,
    					"before": withMaxLength(primitiveType("string", ""), &beforeLen),
    					"after":  withMaxLength(primitiveType("string", ""), &afterLen),
    				})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go

    // an upgrade on the server. Any response will be handled by the intercepting
    // proxy.
    type UpgradeRequestRoundTripper interface {
    	http.RoundTripper
    	// WrapRequest takes a valid HTTP request and returns a suitably altered version
    	// of request with any HTTP level values required to complete the request half of
    	// an upgrade on the server. It does not get a chance to see the response and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. tests/integration/README.md

    command-line:
    
    ```console
    $ go test ./... -p 1 --istio.test.kube.config ~/.kube/config
    ```
    
    If not specified, `~/.kube/config` will be used by default.
    
    **Be aware that any existing content will be altered and/or removed from the cluster**.
    
    Note that the HUB and TAG environment variables **must** be set when running tests in the Kubernetes environment.
    
    ## Diagnosing Failures
    
    ### Working Directory
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/cases/map.go

    // dst so far won't need changing as we see more source bytes.
    type mapFunc func(*context) bool
    
    // A spanFunc takes a context set to the current rune and returns whether this
    // rune would be altered when written to the output. It may advance the context
    // to the next rune. It returns whether a checkpoint is possible.
    type spanFunc func(*context) bool
    
    // maxIgnorable defines the maximum number of ignorables to consider for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers_test.go

    func (w *timeIncrementingWorkers) UpdatePod(options UpdatePodOptions, afterFns ...func()) {
    	func() {
    		w.lock.Lock()
    		defer w.lock.Unlock()
    		w.w.UpdatePod(options)
    		w.w.clock.(*clocktesting.FakePassiveClock).SetTime(w.w.clock.Now().Add(time.Second))
    		for _, fn := range afterFns {
    			fn()
    		}
    	}()
    	w.drainUnpausedWorkers()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
Back to top