Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,032 for xoring (0.18 sec)

  1. src/crypto/internal/boring/build-goboring.sh

    	exit exitcode
    }
    EOF
    
    cat >boringh.awk <<'EOF'
    /^\/\/ #include/ {sub(/\/\//, ""); print > "goboringcrypto0.h"; next}
    /typedef struct|enum ([a-z_]+ )?{|^[ \t]/ {print >"goboringcrypto1.h";next}
    {gsub(/GO_/, ""); gsub(/enum go_/, "enum "); gsub(/go_point_conv/, "point_conv"); print >"goboringcrypto1.h"}
    EOF
    
    awk -f boringx.awk goboringcrypto.h # writes goboringcrypto.x
    awk -f boringh.awk goboringcrypto.h # writes goboringcrypto[01].h
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/build.sh

    #!/bin/bash
    # Copyright 2022 The Go Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    # This shell script uses Docker to run build-boring.sh and build-goboring.sh,
    # which build goboringcrypto_linux_$GOARCH.syso according to the Security Policy.
    # Currently, amd64 and arm64 are permitted.
    
    set -e
    set -o pipefail
    
    GOARCH=${GOARCH:-$(go env GOARCH)}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. testing/precondition-tester/build.gradle.kts

            because("Basic precondition framework and unit test preconditions are coming from here")
        }
        testImplementation(testFixtures(project(":internal-integ-testing"))) {
            because("Integration testing preconditions are coming from here")
        }
        testImplementation(testFixtures(project(":signing"))) {
            because("Signing preconditions are coming from here")
        }
        testImplementation(testFixtures(project(":test-kit"))) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 04:59:12 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/testing/defaults/defaults.go

    		Enabled: []config.Plugin{
    			// Weight is tripled because:
    			// - This is a score coming from user preference.
    			// - Usage of node tainting to group nodes in the cluster is increasing becoming a use-case
    			// for many user workloads
    			{Name: names.TaintToleration, Weight: 3},
    			// Weight is doubled because:
    			// - This is a score coming from user preference.
    			{Name: names.NodeAffinity, Weight: 2},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/spring-boot-application/src/main/groovy/com.example.spring-boot-application.gradle

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 243 bytes
    - Viewed (0)
  6. docs/distributed/DESIGN.md

    - Erasure coding used by MinIO is [Reed-Solomon](https://github.com/klauspost/reedsolomon) erasure coding scheme, which has a total shard maximum of 256 i.e 128 data and 128 parity. MinIO design goes beyond this limitation by doing some practical architecture choices.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. manifests/profiles/preview.yaml

    # The preview profile contains features that are experimental.
    # This is intended to explore new features coming to Istio.
    # Stability, security, and performance are not guaranteed - use at your own risk.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      values:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 18 16:33:33 UTC 2024
    - 300 bytes
    - Viewed (0)
  8. releasenotes/notes/35111.yaml

    kind: feature
    area: security
    issue:
      - https://github.com/istio/istio/issues/35111
    releaseNotes:
      - |
        **Added** TLS settings to the sidecar API in order to enable TLS/mTLS termination on the sidecar proxy for requests 
        coming from outside the mesh.
    docs:
      - https://docs.google.com/document/d/15Qhr7errbylXEzxxCK7ij_oUpn4E5SFU2uDdl_n2GIc/edit#heading=h.h3lxcxfhqndp
    securityNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 14 00:19:57 UTC 2022
    - 580 bytes
    - Viewed (0)
  9. manifests/charts/default/files/profile-preview.yaml

    # If you want to make a change in this file, edit the original one and run "make gen".
    
    # The preview profile contains features that are experimental.
    # This is intended to explore new features coming to Istio.
    # Stability, security, and performance are not guaranteed - use at your own risk.
    meshConfig:
      defaultConfig:
        proxyMetadata:
          # Enable Istio agent to handle DNS requests for known hosts
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 670 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build-logic/spring-boot-application/src/main/kotlin/com.example.spring-boot-application.gradle.kts

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 243 bytes
    - Viewed (0)
Back to top