Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,648 for Binary1 (0.67 sec)

  1. src/vendor/golang.org/x/crypto/chacha20/chacha_generic.go

    	c.key = [8]uint32{
    		binary.LittleEndian.Uint32(key[0:4]),
    		binary.LittleEndian.Uint32(key[4:8]),
    		binary.LittleEndian.Uint32(key[8:12]),
    		binary.LittleEndian.Uint32(key[12:16]),
    		binary.LittleEndian.Uint32(key[16:20]),
    		binary.LittleEndian.Uint32(key[20:24]),
    		binary.LittleEndian.Uint32(key[24:28]),
    		binary.LittleEndian.Uint32(key[28:32]),
    	}
    	c.nonce = [3]uint32{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/internal/DefaultSwiftBinaryTest.groovy

            given:
            compile.incoming >> incoming
    
            when:
            binary.compileModules.files
    
            then:
            1 * incoming.artifacts >> Stub(ArtifactCollection)
        }
    
        def "creates configurations for the binary" () {
            expect:
            binary.linkLibraries == link
            binary.runtimeLibraries == runtime
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CppBinary.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.model.cpp;
    
    /**
     * Represents a C++ binary.
     *
     * @since 4.10
     */
    public interface CppBinary {
        /**
         * Returns the name of this binary. This is used to disambiguate the binaries of a project. Each binary has a unique name within its project. However, these names are not unique across multiple projects.
         */
        String getName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltStaticLibraryBinaryTest.groovy

            binary.runtimeFiles.toString() == "runtime files for prebuilt static library 'lib:name'"
        }
    
        def "can set static library file"() {
            given:
            def file = createFile()
    
            when:
            binary.staticLibraryFile = file
    
            then:
            binary.staticLibraryFile == file
            binary.linkFiles.files == [file] as Set
    
            and:
            binary.runtimeFiles.empty
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/README.md

    This wrapper solves for that by fixing the wrapper lib to have binary detection logic that will work in *all* contexts where we use it, rely fully on binary autodetection in all spots, properly handling `iptables/ip6tables` variants..
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top