Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,003 for Binary1 (0.25 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/CompileTaskConfig.java

            task.getToolChain().set(binary.getToolChain());
            task.getTargetPlatform().set(binary.getTargetPlatform());
            task.setPositionIndependentCode(binary instanceof SharedLibraryBinarySpec);
    
            task.includes(((HeaderExportingSourceSet) sourceSet).getExportedHeaders().getSourceDirectories());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/language/base/plugins/ComponentModelBasePlugin.java

                    for (BinarySpecInternal binary : component.getBinaries().withType(BinarySpecInternal.class)) {
                        if (binary.isBuildable()) {
                            assemble.dependsOn(binary);
                            hasBuildableBinaries = true;
                        } else {
                            notBuildable.add(binary);
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftBasePluginTest.groovy

        def "adds compile task for binary"() {
            def binary = Stub(DefaultSwiftBinary)
            binary.name >> name
            binary.names >> Names.of(name)
            binary.module >> project.objects.property(String)
            binary.targetMachine >> Stub(TargetMachine)
            binary.targetPlatform >> Stub(SwiftPlatform)
            binary.sourceCompatibility >> project.objects.property(SwiftVersion)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. tests/binary/binaries_test.go

    			if strings.Contains(string(out), denylist) {
    				t.Fatalf("binary contains unexpected flags: %v", string(out))
    			}
    		}
    	})
    }
    
    // Test that binary sizes do not bloat
    func TestBinarySizes(t *testing.T) {
    	cases := map[string]struct {
    		minMb int64
    		maxMb int64
    	}{
    		// TODO: shrink the ranges here once the active work to reduce binary size is complete
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/maven-publish/conditional-publishing/groovy/build.gradle

            (repository == publishing.repositories.external &&
                publication == publishing.publications.binary) ||
            (repository == publishing.repositories.internal &&
                publication == publishing.publications.binaryAndSources)
        }
        onlyIf("publishing binary to the external repository, or binary and sources to the internal one") {
            predicate.get()
        }
    }
    tasks.withType(PublishToMavenLocal) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/internal/goobj/objfile.go

    func (n *RefName) Sym() SymRef {
    	return SymRef{binary.LittleEndian.Uint32(n[:]), binary.LittleEndian.Uint32(n[4:])}
    }
    func (n *RefName) Name(r *Reader) string {
    	len := binary.LittleEndian.Uint32(n[8:])
    	off := binary.LittleEndian.Uint32(n[12:])
    	return r.StringAt(off, len)
    }
    
    func (n *RefName) SetSym(x SymRef) {
    	binary.LittleEndian.PutUint32(n[:], x.PkgIdx)
    	binary.LittleEndian.PutUint32(n[4:], x.SymIdx)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/internal/DefaultCppBinaryTest.groovy

        }
    
        def "creates configurations for the binary"() {
            expect:
            binary.compileIncludePath == headerDirs
            binary.linkLibraries
            binary.runtimeLibraries
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/AbstractNativeComponentPluginTest.groovy

                        test(NativeExecutableSpec) {
                            binaries.all { NativeBinary binary ->
                                binary."${this.pluginName}Compiler".define "NDEBUG"
                                binary."${this.pluginName}Compiler".define "LEVEL", "1"
                                binary."${this.pluginName}Compiler".args "ARG1", "ARG2"
                            }
                            sources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. platforms/software/test-suites-base/src/main/java/org/gradle/testing/base/plugins/TestingModelBasePlugin.java

                for (TestSuiteSpec testSuite : testSuites.values()) {
                    for (BinarySpecInternal binary : testSuite.getBinaries().withType(BinarySpecInternal.class).values()) {
                        binaries.put(binary.getProjectScopedName(), binary);
                    }
                }
            }
    
            @Finalize
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 16:02:04 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. src/debug/gosym/pclntab.go

    	case leMagic == go118magic:
    		t.binary, possibleVersion = binary.LittleEndian, ver118
    	case beMagic == go118magic:
    		t.binary, possibleVersion = binary.BigEndian, ver118
    	case leMagic == go120magic:
    		t.binary, possibleVersion = binary.LittleEndian, ver120
    	case beMagic == go120magic:
    		t.binary, possibleVersion = binary.BigEndian, ver120
    	default:
    		return
    	}
    	t.version = possibleVersion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
Back to top