Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for afterend (0.16 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirNamedClassOrObjectSymbol.kt

                        else -> Modality.FINAL
                    }
            }
    
        override val visibility: Visibility
            get() = withValidityAssertion {
                // TODO: We should use resolvedStatus, because it can be altered by status-transforming compiler plugins. See KT-58572
                when (val possiblyRawVisibility = firSymbol.fir.visibility) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/project/path/DefaultPathTranslator.java

         * behavior, this method accepts both the forward slash and the backward slash as separator.
         *
         * @param path The filesystem path, may be <code>null</code>.
         * @return The altered filesystem path or <code>null</code> if the input path was <code>null</code>.
         */
        private String chopLeadingFileSeparator(String path) {
            if (path != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. RELEASE_BRANCHES.md

        * Risk should be assessed in the PR.
            * Have installs and upgrades affected by this feature?
            * Is the feature still being worked on?
            * Is the default behavior altered?
            * Is this turned on by default?
            * How many users are affected by this change?
    
    ## Feature implementation
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 12 23:27:43 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/framer/framer.go

    		decoder: json.NewDecoder(r),
    	}
    }
    
    // ReadFrame decodes the next JSON object in the stream, or returns an error. The returned
    // byte slice will be modified the next time ReadFrame is invoked and should not be altered.
    func (r *jsonFrameReader) Read(data []byte) (int, error) {
    	// Return whatever remaining data exists from an in progress frame
    	if n := len(r.remaining); n > 0 {
    		if n <= len(data) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 13:33:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. 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)
Back to top