Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 937 for Binary1 (0.23 sec)

  1. test/fixedbugs/issue11656.dir/issue11656.go

    	case "arm":
    		binary.LittleEndian.PutUint32(ill[0:4], 0xe3a00000) // MOVW $0, R0
    		binary.LittleEndian.PutUint32(ill[4:8], 0xe5800000) // MOVW R0, (R0)
    	case "arm64":
    		binary.LittleEndian.PutUint32(ill, 0xf90003ff) // MOVD ZR, (ZR)
    	case "ppc64":
    		binary.BigEndian.PutUint32(ill, 0xf8000000) // MOVD R0, (R0)
    	case "ppc64le":
    		binary.LittleEndian.PutUint32(ill, 0xf8000000) // MOVD R0, (R0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 15:28:40 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. platforms/native/tooling-native/src/main/java/org/gradle/language/cpp/internal/tooling/CppModelBuilder.java

                    binaries.add(new DefaultCppExecutableModel(binary.getName(), cppBinary.getIdentity().getName(), binary.getBaseName().get(), compilationDetails, linkageDetails));
                } else if (binary instanceof CppSharedLibrary) {
                    CppSharedLibrary sharedLibrary = (CppSharedLibrary) binary;
                    LinkSharedLibrary linkTask = sharedLibrary.getLinkTask().get();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/binary/BaseBinarySpecTest.groovy

        }
    
        def "binary has name and sensible display name"() {
            def binary = create(SampleBinary, MySampleBinary, "sampleBinary")
    
            expect:
            binary instanceof SampleBinary
            binary.name == "sampleBinary"
            binary.projectScopedName == "sampleBinary"
            binary.displayName == "SampleBinary 'sampleBinary'"
            binary.namingScheme.description == "sample binary 'sampleBinary'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/internal/DefaultSwiftApplicationTest.groovy

            binary.targetPlatform == targetPlatform
            binary.toolChain == toolChain
            binary.platformToolProvider == platformToolProvider
    
            app.binaries.realizeNow()
            app.binaries.get() == [binary] as Set
        }
    
        def "throws exception when development binary is not available"() {
            given:
            app.binaries.realizeNow()
    
            when:
            app.developmentBinary.get()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. bin/init.sh

    ISTIO_ENVOY_LINUX_RELEASE_PATH="${ISTIO_ENVOY_LINUX_RELEASE_PATH:-${ISTIO_ENVOY_LINUX_RELEASE_DIR}/${ISTIO_ENVOY_LINUX_RELEASE_NAME}}"
    
    # There is no longer an Istio built Envoy binary available for the Mac. Copy the Linux binary as the Mac binary was
    # very old and likely no one was really using it (at least temporarily).
    
    # Download Envoy debug and release binaries for Linux x86_64. They will be included in the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 19:11:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. pkg/controller/nodeipam/ipam/cidrset/cidr_set.go

    		if cidr.IP.To4() != nil {
    			ipInt := binary.BigEndian.Uint32(cidr.IP) | (^binary.BigEndian.Uint32(cidr.Mask))
    			binary.BigEndian.PutUint32(ip, ipInt)
    		} else {
    			// ipIntLeft          |         ipIntRight
    			// 2001:0DB8:1234:0000:0000:0000:0000:0000
    			ipIntLeft := binary.BigEndian.Uint64(cidr.IP[:net.IPv6len/2]) | (^binary.BigEndian.Uint64(cidr.Mask[:net.IPv6len/2]))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 08:53:03 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/metadata/CompilerMetaDataProviderFactoryTest.groovy

            def binary = new File("any")
            when:
            def metadata = metadataProvider(compiler).getCompilerMetaData([]) { it.executable(binary) }
    
            then:
            interaction compilerShouldBeExecuted
    
            when:
            def newMetadata = metadataProvider(compiler).getCompilerMetaData([]) { it.executable(binary) }
    
            then:
            0 * _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentBinarySourcesIntegrationTest.groovy

        }
        tasks {
            verify(Task) {
                doLast {
                    def comp = $.components.mylib
                    def binary = comp.binaries.main
                    assert comp.sources.size() == 1
                    assert binary.sources.size() == 1
                    assert binary.inputs == comp.sources + binary.sources as Set
                }
            }
        }
    }
    '''
    
            expect:
            succeeds "verify"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/dependencies/implementation.go

    //
    // Basic selection logic is as follows:
    // 1. see if we have `nft` binary set in our $PATH
    // 2. see if we have existing rules in `nft` in our netns
    // 3. If so, use `nft` binary set
    // 4. Otherwise, see if we have `legacy` binary set, and use that.
    // 5. Otherwise, see if we have `iptables` binary set, and use that (detecting whether it's nft or legacy).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 19:54:50 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/list_goroot_symlink.txt

    exec $WORK/lib/goroot/bin/go list -f '{{.ImportPath}}: {{.Dir}}' encoding/binary
    stdout '^encoding/binary: '$WORK${/}lib${/}goroot${/}src${/}encoding${/}binary'$'
    
    exec $WORK/lib/goroot/bin/go list -f '{{.ImportPath}}: {{.Dir}}' std
    stdout '^encoding/binary: '$WORK${/}lib${/}goroot${/}src${/}encoding${/}binary'$'
    
    # Most path lookups in GOROOT are not sensitive to symlinks. However, patterns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:01:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top