Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 934 for Binary1 (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/vendor/golang.org/x/crypto/sha3/xor.go

    // license that can be found in the LICENSE file.
    
    package sha3
    
    import (
    	"crypto/subtle"
    	"encoding/binary"
    	"unsafe"
    
    	"golang.org/x/sys/cpu"
    )
    
    // xorIn xors the bytes in buf into the state.
    func xorIn(d *state, buf []byte) {
    	if cpu.IsBigEndian {
    		for i := 0; len(buf) >= 8; i++ {
    			a := binary.LittleEndian.Uint64(buf)
    			d.a[i] ^= a
    			buf = buf[8:]
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 854 bytes
    - Viewed (0)
  10. samples/addons/loki.yaml

          port: 9095
          targetPort: grpc
          protocol: TCP
      selector:
        app.kubernetes.io/name: loki
        app.kubernetes.io/instance: loki
        app.kubernetes.io/component: single-binary
    ---
    # Source: loki/templates/single-binary/statefulset.yaml
    apiVersion: apps/v1
    kind: StatefulSet
    metadata:
      name: loki
      namespace: istio-system
      labels:
        helm.sh/chart: loki-6.6.3
        app.kubernetes.io/name: loki
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top