Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 78 for Binary1 (0.46 sec)

  1. cmd/peer-rest-server.go

    }
    
    // HealthHandler - returns true of health
    func (s *peerRESTServer) HealthHandler(w http.ResponseWriter, r *http.Request) {
    	s.IsValid(w, r)
    }
    
    // VerifyBinary - verifies the downloaded binary is in-tact
    func (s *peerRESTServer) VerifyBinaryHandler(w http.ResponseWriter, r *http.Request) {
    	if !s.IsValid(w, r) {
    		s.writeErrorResponse(w, errors.New("Invalid request"))
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

                        }
                        expectResolve()
                    }
                }
            }
    
            when:
            // bouncycastle has .properties files that are actually binary files
            // see https://github.com/bcgit/bc-java/commit/0aacc38aefe7e79a6d9cca76bd690c24671c3feb
            executer.withStackTraceChecksDisabled()
            run 'checkDeps', '--debug'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            }
    
            where:
            binaryHasValidContent | asciiArmoredHasValidContent | keyringFormat | expectError | hint
            true                  | false                       | 'binary'      | false       | 'gpg exists and ascii armored has invalid content'
            true                  | false                       | 'armored'     | true        | 'gpg exists and ascii armored has invalid content'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/filesystem_interface.h

    ///
    /// All pointers defined in this structure point to memory allocated by the DSO
    /// using an allocator provided by core TensorFlow when calling `TF_InitPlugin`.
    ///
    /// IMPORTANT: To maintain binary compatibility, the layout of this structure
    /// must not change! In the unlikely case that a new type of file needs to be
    /// supported, add the new ops and metadata at the end of the structure.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.platform.base.binary.BaseBinarySpec.getBuildAbility()> has arguments/return type org.gradle.platform.base.internal.BinaryBuildAbility that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (BaseBinarySpec.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  6. tensorflow/BUILD

    # correspond to a particular, finalized design; rather, it relates to
    # developing one.
    #
    # The current aim of the 'v2' implementation is to allow 'unused' ops and
    # kernels to be discarded by the linker (to the benefit of binary size).
    bool_flag(
        name = "enable_registration_v2",
        build_setting_default = False,
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "registration_v1",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    	}
    
    	p.xnest = outer
    	return
    }
    
    // emphasize returns a string representation of x, with (top-level)
    // binary expressions emphasized by enclosing them in parentheses.
    func emphasize(x Expr) string {
    	s := String(x)
    	if op, _ := x.(*Operation); op != nil && op.Y != nil {
    		// binary expression
    		return "(" + s + ")"
    	}
    	return s
    }
    
    func (p *parser) ifStmt() *IfStmt {
    	if trace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/decode.go

    // Copyright 2017 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.
    
    package arm64asm
    
    import (
    	"encoding/binary"
    	"fmt"
    )
    
    type instArgs [5]instArg
    
    // An instFormat describes the format of an instruction encoding.
    // An instruction with 32-bit value x matches the format if x&mask == value
    // and the predicator: canDecode(x) return true.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 76.9K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: switched kubeadm to start using the CRI client library instead of shelling out of the `crictl` binary
      for actions against a CRI endpoint. The kubeadm deb/rpm packages will continue to install the `cri-tools`
      package for one more release, but in you must adapt your scripts to install `crictl` manually from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // All rights reserved.
    //
    // Redistribution and use in source and binary forms, with or without
    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    //     * Redistributions in binary form must reproduce the above
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top