Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,689 for resort (0.14 sec)

  1. src/runtime/tls_ppc64x.s

    #include "go_asm.h"
    #include "go_tls.h"
    #include "funcdata.h"
    #include "textflag.h"
    
    // We have to resort to TLS variable to save g (R30).
    // One reason is that external code might trigger
    // SIGSEGV, and our runtime.sigtramp don't even know we
    // are in external code, and will continue to use R30,
    // this might well result in another SIGSEGV.
    
    // save_g saves the g register into pthread-provided
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/runtime/tls_s390x.s

    #include "go_asm.h"
    #include "go_tls.h"
    #include "funcdata.h"
    #include "textflag.h"
    
    // We have to resort to TLS variable to save g (R13).
    // One reason is that external code might trigger
    // SIGSEGV, and our runtime.sigtramp don't even know we
    // are in external code, and will continue to use R13,
    // this might well result in another SIGSEGV.
    
    // save_g saves the g register into pthread-provided
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 07 18:56:54 UTC 2016
    - 1.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultNodeValidator.java

                    // Because our deprecation warning system doesn't support multiline strings (bummer!) both in rendering
                    // **and** testing (no way to capture multiline deprecation warnings), we have to resort to removing details
                    // and rendering
                    String warning = convertToSingleLine(renderMinimalInformationAbout(problem, false, false));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 04 07:42:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ResettableConfiguration.java

    /**
     * A {@link Configuration} which can reset its resolution state. This interface is
     * separate from {@code ConfigurationInternal} since that interface lives in
     * {@code :dependency-management} and is not accessible from {@code :core}.
     */
    public interface ResettableConfiguration extends Configuration {
    
        /**
         * Call this factory (which presumably resolves this Configuration) and then reset the resolution state
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 27 17:33:18 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. src/archive/tar/strconv.go

    	if len(record) != size {
    		size = len(record)
    		record = strconv.Itoa(size) + " " + k + "=" + v + "\n"
    	}
    	return record, nil
    }
    
    // validPAXRecord reports whether the key-value pair is valid where each
    // record is formatted as:
    //
    //	"%d %s=%s\n" % (size, key, value)
    //
    // Keys and values should be UTF-8, but the number of bad writers out there
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:28:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. src/net/interface.go

    	zoneCache.RUnlock()
    	if !ok && !updated {
    		zoneCache.update(nil, true)
    		zoneCache.RLock()
    		name, ok = zoneCache.toName[index]
    		zoneCache.RUnlock()
    	}
    	if !ok { // last resort
    		name = itoa.Uitoa(uint(index))
    	}
    	return name
    }
    
    func (zc *ipv6ZoneCache) index(name string) int {
    	if name == "" {
    		return 0
    	}
    	updated := zoneCache.update(nil, false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/JvmInstallationMetadataComparatorTest.groovy

            given:
            def metadata = [jre, jdk]
    
            when:
            metadata.sort(new JvmInstallationMetadataComparator(getJavaHome()))
    
            then:
            metadata == [jdk, jre]
        }
    
        @Issue("https://github.com/gradle/gradle/issues/17195")
        def "compares installation paths as a last resort"() {
            given:
            def prevJdk = jvmMetadata("8.0.1", true, ADOPTOPENJDK, "/jdks/openjdk-8.0.1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirNamedClassOrObjectSymbol.kt

        /**
         * We can use [FirRegularClassSymbol.rawStatus] to avoid unnecessary resolve unless there are status transformers present.
         * If they are present, we have to resort to [FirRegularClassSymbol.resolvedStatus] instead - otherwise we can observe incorrect status
         * properties.
         *
         * TODO This optimization should become obsolete after KT-56551 is fixed.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/INSTALL.md

    and update to use a newer version of that library, if possible:
    ```sh
    go mod graph | grep " k8s.io/client-go@"
    ```
    
    As a last resort, you can force the build to use a specific version of client-go,
    even if some of your dependencies still want `...+incompatible` versions. For example:
    ```sh
    go mod edit -replace=k8s.io/client-go=k8s.io/client-go@v0.20.4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/storage/storage_codec.go

    	}
    	decoders := []runtime.Decoder{
    		// selected decoder as the primary
    		s,
    		// universal deserializer as a fallback
    		opts.StorageSerializer.UniversalDeserializer(),
    		// base64-wrapped universal deserializer as a last resort.
    		// this allows reading base64-encoded protobuf, which should only exist if etcd2+protobuf was used at some point.
    		// data written that way could exist in etcd2, or could have been migrated to etcd3.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 15:03:23 UTC 2022
    - 3.8K bytes
    - Viewed (0)
Back to top