Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 72 for from_version (0.37 sec)

  1. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/NestedInputKotlinImplementationTrackingIntegrationTest.groovy

                }
    
                tasks.withType<KotlinCompile>().configureEach {
                    compilerOptions {
                        apiVersion.set(KotlinVersion.fromVersion("${kotlinLanguageVersion}"))
                        languageVersion.set(KotlinVersion.fromVersion("${kotlinLanguageVersion}"))
                    }
                    // Work around JVM validation issue: https://youtrack.jetbrains.com/issue/KT-66919
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 06:52:58 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/route/sys.go

    	i := uint32(1)
    	b := (*[4]byte)(unsafe.Pointer(&i))
    	if b[0] == 1 {
    		nativeEndian = littleEndian
    	} else {
    		nativeEndian = bigEndian
    	}
    	// might get overridden in probeRoutingStack
    	rtmVersion = syscall.RTM_VERSION
    	kernelAlign, wireFormats = probeRoutingStack()
    }
    
    func roundup(l int) int {
    	if l == 0 {
    		return kernelAlign
    	}
    	return (l + kernelAlign - 1) &^ (kernelAlign - 1)
    }
    
    type wireFormat struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 940 bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/route/route_openbsd.go

    	"syscall"
    )
    
    func (m *RouteMessage) marshal() ([]byte, error) {
    	l := sizeofRtMsghdr + addrsSpace(m.Addrs)
    	b := make([]byte, l)
    	nativeEndian.PutUint16(b[:2], uint16(l))
    	if m.Version == 0 {
    		b[2] = syscall.RTM_VERSION
    	} else {
    		b[2] = byte(m.Version)
    	}
    	b[3] = byte(m.Type)
    	nativeEndian.PutUint16(b[4:6], uint16(sizeofRtMsghdr))
    	nativeEndian.PutUint32(b[16:20], uint32(m.Flags))
    	nativeEndian.PutUint16(b[6:8], uint16(m.Index))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGenerator.java

        private static final String POM_FILE_ENCODING = "UTF-8";
        private static final String POM_VERSION = "4.0.0";
    
        private MavenPomFileGenerator() {}
    
        public static MavenPomSpec generateSpec(MavenPomInternal pom) {
            Model model = new Model();
            model.setModelVersion(POM_VERSION);
    
            MavenPublicationCoordinates coordinates = pom.getCoordinates();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/route/route.go

    // The Type field specifies a type of manipulation, the Flags field
    // specifies a class of target information and the Addrs field
    // specifies target information like the following:
    //
    //	route.RouteMessage{
    //		Version: RTM_VERSION,
    //		Type: RTM_GET,
    //		Flags: RTF_UP | RTF_HOST,
    //		ID: uintptr(os.Getpid()),
    //		Seq: 1,
    //		Addrs: []route.Addrs{
    //			RTAX_DST: &route.Inet4Addr{ ... },
    //			RTAX_IFP: &route.LinkAddr{ ... },
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. api/except.txt

    pkg syscall (openbsd-386), const BIOCSRTIMEOUT = 2148024941
    pkg syscall (openbsd-386), const ImplementsGetwd = false
    pkg syscall (openbsd-386), const RTF_FMASK = 63496
    pkg syscall (openbsd-386), const RTM_VERSION = 4
    pkg syscall (openbsd-386), const SIOCBRDGDADDR = 2150132039
    pkg syscall (openbsd-386), const SIOCBRDGGPARAM = 3224922456
    pkg syscall (openbsd-386), const SIOCBRDGSADDR = 3223873860
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  7. src/syscall/route_bsd.go

    func ParseRoutingMessage(b []byte) (msgs []RoutingMessage, err error) {
    	nmsgs, nskips := 0, 0
    	for len(b) >= anyMessageLen {
    		nmsgs++
    		any := (*anyMessage)(unsafe.Pointer(&b[0]))
    		if any.Version != RTM_VERSION {
    			b = b[any.Msglen:]
    			continue
    		}
    		if m := any.toRoutingMessage(b); m == nil {
    			nskips++
    		} else {
    			msgs = append(msgs, m)
    		}
    		b = b[any.Msglen:]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. .idea/inspectionProfiles/idea_default.xml

        <inspection_tool class="PyCompatibilityInspection" enabled="true" level="ERROR" enabled_by_default="true">
          <option name="fromVersion" value="2.4" />
          <option name="toVersion" value="3.1" />
        </inspection_tool>
        <inspection_tool class="Reformat" enabled="true" level="WEAK WARNING" enabled_by_default="true">
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Nov 09 20:59:03 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  9. src/syscall/zerrors_darwin_arm64.go

    	RTM_OLDADD                        = 0x9
    	RTM_OLDDEL                        = 0xa
    	RTM_REDIRECT                      = 0x6
    	RTM_RESOLVE                       = 0xb
    	RTM_RTTUNIT                       = 0xf4240
    	RTM_VERSION                       = 0x5
    	RTV_EXPIRE                        = 0x4
    	RTV_HOPCOUNT                      = 0x2
    	RTV_MTU                           = 0x1
    	RTV_RPIPE                         = 0x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
  10. src/syscall/zerrors_aix_ppc64.go

    	RTM_RESOLVE                   = 0xb
    	RTM_RTLOST                    = 0x10
    	RTM_RTTUNIT                   = 0xf4240
    	RTM_SAMEADDR                  = 0x12
    	RTM_SET                       = 0x13
    	RTM_VERSION                   = 0x2
    	RTM_VERSION_GR                = 0x4
    	RTM_VERSION_GR_COMPAT         = 0x3
    	RTM_VERSION_POLICY            = 0x5
    	RTM_VERSION_POLICY_EXT        = 0x6
    	RTM_VERSION_POLICY_PRFN       = 0x7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 16:18:12 UTC 2019
    - 47.2K bytes
    - Viewed (0)
Back to top