Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 2,003 for Binary1 (0.23 sec)

  1. build/pause/Makefile

    build: $(foreach binary, ${BIN}, bin/${binary}-${OS}-${ARCH})
    
    bin/${BIN.linux}-$(OS)-$(ARCH): $(SRCS)
    	mkdir -p bin
    	docker run --rm -u $$(id -u):$$(id -g) -v $$(pwd):/build \
    		$(KUBE_CROSS_IMAGE):$(KUBE_CROSS_VERSION) \
    		/bin/bash -c "\
    			cd /build && \
    			$(TRIPLE)-gcc $(CFLAGS) -o $@ $^ && \
    			$(TRIPLE)-strip $(foreach binary, $@, ${binary}${EXTENSION})"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/README.md

    ## CUnit Sample Limitations
    
    Currently, the Gradle model for Platform does not allow us to differentiate between different c-runtime, ABI or other binary variants.
    This means that it is not possible to differentiate between a prebuilt library binary compatible with VS2010 vs VS2013.
    
    As such, this sample will only work without modification on Windows with Visual Studio 2010. Uncomment the relevant line in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 486 bytes
    - Viewed (0)
  3. src/internal/coverage/cfile/hooks.go

    // MarkProfileEmitted to indicate that no more work needs to be
    // done. If however that call is never made, this is a sign that the
    // test binary is being used as a replacement binary for the tool
    // being tested, hence we do want to run exit hooks when the program
    // terminates.
    func InitHook(istest bool) {
    	// Note: hooks are run in reverse registration order, so
    	// register the counter data hook before the meta-data hook
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 02:32:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/lockedfile/transform_test.go

    				if !isPowerOf2(words) {
    					t.Errorf("read %d 8-byte words, but each write is a power-of-2 number of words", words)
    					return chunk, nil
    				}
    
    				u := binary.LittleEndian.Uint64(data)
    				for i := 1; i < words; i++ {
    					next := binary.LittleEndian.Uint64(data[i*8:])
    					if next != u+1 {
    						t.Errorf("wrote sequential integers, but read integer out of sequence at offset %d", i)
    						return chunk, nil
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 22:37:50 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. .idea/runConfigurations/Test__public_API_binary_compatibility_validator__overwrite_results.xml

    <component name="ProjectRunConfigurationManager">
      <configuration default="false" name="Test: public API binary compatibility validator, overwrite results" type="GradleRunConfiguration" factoryName="Gradle" folderName="Stdlib">
        <ExternalSystemSettings>
          <option name="executionName" />
          <option name="externalProjectPath" value="$PROJECT_DIR$/libraries/tools/binary-compatibility-validator" />
          <option name="externalSystemIdString" value="GRADLE" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 11 10:10:03 UTC 2021
    - 975 bytes
    - Viewed (0)
  6. test/fixedbugs/issue65962.go

    func isI(x any) {
    	_ = x.(I)
    }
    
    func test1() {
    	defer func() { recover() }()
    	ld[bool]() // add <bool,I> itab to binary
    	_ = any(false).(I)
    }
    
    type B bool
    
    func (B) f() {
    }
    func (B) g() {
    }
    
    func test2() {
    	defer func() { recover() }()
    	ld[B]() // add <B,I> itab to binary
    	_ = any(B(false)).(I)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 18:30:40 UTC 2024
    - 625 bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/AbstractComponentModelIntegrationTest.groovy

                            }
    
                            void configureTask(Task task, BinarySpec binary, LanguageSourceSet sourceSet, ServiceRegistry serviceRegistry) {
                            }
                        }
                    }
    
                    boolean applyToBinary(BinarySpec binary) {
                        true
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/SharedLibraryBinarySpec.java

    import java.io.File;
    
    /**
     * A shared library binary built by Gradle for a native library.
     */
    @Incubating
    public interface SharedLibraryBinarySpec extends NativeLibraryBinarySpec {
        /**
         * Provides access to key tasks used for building the binary.
         */
        interface TasksCollection extends BinaryTasksCollection {
            /**
             * Returns the link task for this binary.
             */
            Task getLink();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/customModel/languageType/groovy/buildSrc/src/main/groovy/sample/documentation/DocumentationBinary.groovy

    package sample.documentation
    
    import org.gradle.model.Managed
    import org.gradle.platform.base.BinarySpec
    
    // tag::binary-declaration[]
    @Managed
    interface DocumentationBinary extends BinarySpec {
        File getOutputDir()
        void setOutputDir(File outputDir)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 288 bytes
    - Viewed (0)
  10. src/go/doc/comment/testdata/text5.txt

    {"TextWidth": 20}
    -- input --
    Package gob manages streams of gobs - binary values exchanged between an
    Encoder (transmitter) and a Decoder (receiver). A typical use is
    transporting arguments and results of remote procedure calls (RPCs) such as
    those provided by package "net/rpc".
    
    The implementation compiles a custom codec for each data type in the stream
    and is most efficient when a single Encoder is used to transmit a stream of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 937 bytes
    - Viewed (0)
Back to top