Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 682 for sBoxes (0.18 sec)

  1. src/crypto/des/block.go

    		bit := (src >> n) & 1
    		block |= bit << uint((len(permutation)-1)-position)
    	}
    	return
    }
    
    func initFeistelBox() {
    	for s := range sBoxes {
    		for i := 0; i < 4; i++ {
    			for j := 0; j < 16; j++ {
    				f := uint64(sBoxes[s][i][j]) << (4 * (7 - uint(s)))
    				f = permuteBlock(f, permutationFunction[:])
    
    				// Row is determined by the 1st and 6th bit.
    				// Column is the middle four bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. cni/pkg/scopes/scopes.go

    //  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    //  See the License for the specific language governing permissions and
    //  limitations under the License.
    
    package scopes
    
    import (
    	"istio.io/istio/cni/pkg/constants"
    	"istio.io/istio/pkg/log"
    )
    
    // Required to get global logging to work
    var (
    	CNIAgent  = log.RegisterScope(constants.CNIAgentLogScope, "CNI agent scope")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 894 bytes
    - Viewed (0)
  3. docs/en/docs/advanced/security/oauth2-scopes.md

        Nevertheless, you still enforce those scopes, or any other security/authorization requirement, however you need, in your code.
    
        In many cases, OAuth2 with scopes can be an overkill.
    
        But if you know you need it, or you are curious, keep reading.
    
    ## OAuth2 scopes and OpenAPI
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/resources/META-INF/services/org.gradle.internal.service.scopes.GradleModuleServices

    org.gradle.internal.service.scopes.CoreServices
    org.gradle.caching.internal.BuildCacheServices
    org.gradle.internal.service.scopes.ExecutionServices
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 209 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/utils/nms_utils.cc

    }
    
    }  // namespace
    
    void ConvertNMSPaddedFunc::RewriteFunc() {
      func_->setAttr(kTFImplements,
                     StringAttr::get(func_.getContext(), kTfNMSPadded));
      Value boxes = func_.getArgument(0);
      Value scores = func_.getArgument(1);
      Value max_output_size = func_.getArgument(2);
      Value iou_threshold = func_.getArgument(3);
      Value score_threshold = func_.getArgument(4);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    def LegalizeNonMaxSuppressionV4 : Pat<
      (TF_NonMaxSuppressionV4Op $boxes, $scores, $max_output_size, $iou_threshold,
        $score_threshold, $pad_to_max_output_size),
      (TFL_NonMaxSuppressionV4Op $boxes, $scores, $max_output_size, $iou_threshold,
        $score_threshold)>;
    
    def LegalizeNonMaxSuppressionV5 : Pat<
      (TF_NonMaxSuppressionV5Op $boxes, $scores, $max_output_size, $iou_threshold,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-services/src/main/resources/META-INF/services/org.gradle.internal.service.scopes.GradleModuleServices

    Alex Semin <******@****.***> 1716373676 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 51 bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/main/resources/META-INF/services/org.gradle.internal.service.scopes.GradleModuleServices

    Alex Semin <******@****.***> 1716373676 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 61 bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/main/resources/META-INF/services/org.gradle.internal.service.scopes.GradleModuleServices

    Alex Semin <******@****.***> 1716373676 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 71 bytes
    - Viewed (0)
  10. platforms/software/resources-http/src/main/resources/META-INF/services/org.gradle.internal.service.scopes.GradleModuleServices

    Alex Semin <******@****.***> 1716381850 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 67 bytes
    - Viewed (0)
Back to top