Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,116 for binaryA (0.18 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/swift/SwiftBinary.java

        /**
         * Returns the Swift source files of this binary.
         */
        FileCollection getSwiftSource();
    
        /**
         * Returns the modules to use to compile this binary. Includes the module file of this binary's dependencies.
         *
         * @since 4.4
         */
        FileCollection getCompileModules();
    
        /**
         * Returns the link libraries to use to link this binary. Includes the link libraries of the component's dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/platform/base/plugins/BinaryBasePlugin.java

                binary.setBuildTask(binaryLifecycleTask);
            }
    
            @Finalize
            void addSourceSetsOwnedByBinariesToTheirInputs(@Each BinarySpecInternal binary) {
                if (binary.isLegacyBinary()) {
                    return;
                }
                binary.getInputs().addAll(binary.getSources().values());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/resources/META-INF/gradle-plugins/org.gradle.binary-base.properties

    Tom Tresansky <******@****.***> 1697026569 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 71 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.platform.base.Binary.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/plugins/BinaryBasePluginTest.groovy

            when:
            dsl {
                apply plugin: BinaryBasePlugin
            }
    
            then:
            realizeBinaries() != null
        }
    
        def "defines a build lifecycle task for each binary"() {
            when:
            dsl {
                apply plugin: BinaryBasePlugin
                model {
                    binaries {
                        bin1(BinarySpec)
                        bin2(BinarySpec)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. fastapi/datastructures.py

                field_schema.update({"type": "string", "format": "binary"})
    
        @classmethod
        def __get_pydantic_json_schema__(
            cls, core_schema: CoreSchema, handler: GetJsonSchemaHandler
        ) -> JsonSchemaValue:
            return {"type": "string", "format": "binary"}
    
        @classmethod
        def __get_pydantic_core_schema__(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 5.6K bytes
    - Viewed (1)
  7. common-protos/k8s.io/apimachinery/pkg/api/resource/generated.proto

    // <sign>            ::= "+" | "-"
    // <signedNumber>    ::= <number> | <sign><number>
    // <suffix>          ::= <binarySI> | <decimalExponent> | <decimalSI>
    // <binarySI>        ::= Ki | Mi | Gi | Ti | Pi | Ei
    //
    // 	(International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)
    //
    // <decimalSI>       ::= m | "" | k | M | G | T | P | E
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/resource/generated.proto

    // <sign>            ::= "+" | "-"
    // <signedNumber>    ::= <number> | <sign><number>
    // <suffix>          ::= <binarySI> | <decimalExponent> | <decimalSI>
    // <binarySI>        ::= Ki | Mi | Gi | Ti | Pi | Ei
    //
    // 	(International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)
    //
    // <decimalSI>       ::= m | "" | k | M | G | T | P | E
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  9. src/cmd/test2json/main.go

    //
    // Note that "go test -json" takes care of invoking test2json correctly,
    // so "go tool test2json" is only needed when a test binary is being run
    // separately from "go test". Use "go test -json" whenever possible.
    //
    // Note also that test2json is only intended for converting a single test
    // binary's output. To convert the output of a "go test" command that
    // runs multiple packages, again use "go test -json".
    //
    // # Output Format
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/script/scripttest/scripttest.go

    	}
    	return s.msg
    }
    
    // CachedExec returns a Condition that reports whether the PATH of the test
    // binary itself (not the script's current environment) contains the named
    // executable.
    func CachedExec() script.Cond {
    	return script.CachedCondition(
    		"<suffix> names an executable in the test binary's PATH",
    		func(name string) (bool, error) {
    			_, err := cfg.LookPath(name)
    			return err == nil, nil
    		})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 11 20:12:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top