Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,094 for Binary1 (0.17 sec)

  1. src/strconv/testdata/testfp.txt

    # The rest have four fields per line: type, format, input, and output.
    # The input is given either in decimal or binary scientific notation.
    # The output is the string that should be produced by formatting the
    # input with the given format.
    #
    # The formats are as in C's printf, except that %b means print
    # binary scientific notation: NpE = N x 2^E.
    
    # TODO:
    #	Powers of 10.
    #	Powers of 2.
    #	%.20g versions.
    #	random sources
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 7.9K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/rc/plugins/WindowsResourceScriptPlugin.java

            }
    
            @Override
            public boolean applyToBinary(BinarySpec binary) {
                return binary instanceof NativeBinarySpec && shouldProcessResources((NativeBinarySpec) binary);
            }
    
            private boolean shouldProcessResources(NativeBinarySpec binary) {
                return binary.getTargetPlatform().getOperatingSystem().isWindows();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/SwiftXCTestBinary.java

    /**
     * An test binary built from Swift source.
     *
     * @since 4.4
     */
    public interface SwiftXCTestBinary extends SwiftBinary, TestComponent {
        /**
         * Returns the executable test file for this binary.
         *
         * @since 4.5
         */
        Provider<RegularFile> getExecutableFile();
    
        /**
         * Returns the installation directory for this binary.
         *
         * @since 4.4
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomManagedBinaryIntegrationTest.groovy

        def "setup"() {
            buildFile << """
    @Managed
    interface SampleBinary extends BinarySpec {
        String getVersion()
        void setVersion(String version)
    }
    """
        }
    
        def "custom managed binary type can be registered and created"() {
            when:
            buildWithCustomBinaryPlugin()
    
            and:
            buildFile << '''
    model {
        tasks {
            checkModel(Task) {
                doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/DefaultVisualStudioProjectTest.groovy

            def binary = Mock(VisualStudioTargetBinary)
            2 * binary.sourceFiles >> fileCollection(sourceFiles)
            2 * binary.resourceFiles >> fileCollection(resourceFiles)
            2 * binary.headerFiles >> fileCollection(headerFiles)
            return binary
        }
    
        private FileCollection fileCollection(List<File> files) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. src/crypto/internal/hpke/hpke.go

    }
    
    func SuiteID(kemID, kdfID, aeadID uint16) []byte {
    	suiteID := make([]byte, 0, 4+2+2+2)
    	suiteID = append(suiteID, []byte("HPKE")...)
    	suiteID = binary.BigEndian.AppendUint16(suiteID, kemID)
    	suiteID = binary.BigEndian.AppendUint16(suiteID, kdfID)
    	suiteID = binary.BigEndian.AppendUint16(suiteID, aeadID)
    	return suiteID
    }
    
    func ParseHPKEPublicKey(kemID uint16, bytes []byte) (*ecdh.PublicKey, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. test/checkbce.go

    		useInt(a[i+51]) // ERROR "Found IsInBounds$"
    	}
    }
    
    func decode1(data []byte) (x uint64) {
    	for len(data) >= 32 {
    		x += binary.BigEndian.Uint64(data[:8])
    		x += binary.BigEndian.Uint64(data[8:16])
    		x += binary.BigEndian.Uint64(data[16:24])
    		x += binary.BigEndian.Uint64(data[24:32])
    		data = data[32:]
    	}
    	return x
    }
    
    func decode2(data []byte) (x uint64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/cpp/plugins/CppLibraryPlugin.java

                    return getDebugStaticStream().filter(binary -> Architectures.forInput(binary.getTargetMachine().getArchitecture().getName()).equals(DefaultNativePlatform.host().getArchitecture()));
                }
            }));
    
            library.getBinaries().whenElementKnown(binary -> {
                library.getMainPublication().addVariant(binary);
            });
    
            project.afterEvaluate(p -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 30 15:38:28 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. src/net/http/fcgi/fcgi.go

    		c.closed = true
    	}
    	return c.closeErr
    }
    
    type record struct {
    	h   header
    	buf [maxWrite + maxPad]byte
    }
    
    func (rec *record) read(r io.Reader) (err error) {
    	if err = binary.Read(r, binary.BigEndian, &rec.h); err != nil {
    		return err
    	}
    	if rec.h.Version != 1 {
    		return errors.New("fcgi: invalid header version")
    	}
    	n := int(rec.h.ContentLength) + int(rec.h.PaddingLength)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 18:51:39 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. tools/go-stress-test

            -stress.time) TIME="${2}"; shift ;;
        esac
        shift
    done
    
    RESULTS=/tmp/test-results"$(dirname ${binary})"
    mkdir -p "${RESULTS}"
    code=0
    
    for testname in $("${binary}" -test.list "${RUN}" | grep '^Test'); do
      stress -f --max-time "${TIME:-10s}" --max-runs "${RUNS:-1000}" "${binary}" -test.run '^'"${testname}"'$' -test.count "${COUNT}" -test.v &> "${RESULTS}/${testname}"
      # shellcheck disable=SC2181
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 04 23:04:41 UTC 2022
    - 2.3K bytes
    - Viewed (0)
Back to top