Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,104 for Binary (0.13 sec)

  1. src/cmd/go/note_test.go

    				t.Log("skipping gold test")
    				break
    			}
    			t.Fatalf("building hello binary: %v", err)
    		}
    		id, err = buildid.ReadFile(tg.path("hello3.exe"))
    		if err != nil {
    			t.Fatalf("reading build ID from hello binary (linkmode=external -extldflags=-fuse-ld=gold): %v", err)
    		}
    		if id != buildID {
    			t.Fatalf("buildID in hello binary = %q, want %q (linkmode=external -extldflags=-fuse-ld=gold)", id, buildID)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 17:26:46 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinaryTest.groovy

            checkNames targetBinary, "exeNameExe", 'platformOneBuildTypeOneFlavorOne'
        }
    
        private static checkNames(VisualStudioTargetBinary binary, def projectName, def configurationName) {
            assert binary.getVisualStudioProjectName() == projectName
            assert binary.getVisualStudioConfigurationName() == configurationName
            true
        }
    
        private HeaderExportingSourceSet headerSourceSet(File... files) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.3K 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/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)
  5. 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)
  6. README.md

    BSD-style license found in the LICENSE file.
    
    ### Download and Install
    
    #### Binary Distributions
    
    Official binary distributions are available at https://go.dev/dl/.
    
    After downloading a binary release, visit https://go.dev/doc/install
    for installation instructions.
    
    #### Install From Source
    
    If a binary distribution is not available for your combination of
    operating system and architecture, visit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 20:14:56 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/PCHCompileTaskConfig.java

                }
            }));
    
            // This is so that VisualCpp has the object file of the generated source file available at link time
            binary.binaryInputs(task.getOutputs().getFiles().getAsFileTree().matching(new PatternSet().include("**/*.obj", "**/*.o")));
    
            PreCompiledHeader pch = binary.getPrefixFileToPCH().get(sourceSet.getPrefixHeaderFile());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/idn/IdnaMappingTable.kt

        return when {
          offset >= 0 -> offset * 4 // This section was found by binary search.
          else -> (-offset - 2) * 4 // Not found? Use the preceding element.
        }
      }
    
      /**
       * Binary search [ranges] for [codePoint], looking at its bottom 7 bits.
       *
       * This binary searches over 4-byte entries, and so it needs to adjust binary search indices
       * in (by dividing by 4) and out (by multiplying by 4).
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Apr 02 11:39:58 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top