Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 288 for mypair (0.1 sec)

  1. src/cmd/cgo/internal/test/test.go

    	{"GoBytes", C.GoBytes(unsafe.Pointer(C.greeting), 5), []byte(greeting[:5])},
    }
    
    func testHelpers(t *testing.T) {
    	for _, pair := range testPairs {
    		if !reflect.DeepEqual(pair.Got, pair.Want) {
    			t.Errorf("%s: got %#v, want %#v", pair.Name, pair.Got, pair.Want)
    		}
    	}
    }
    
    // basic test cases
    
    const EINVAL = C.EINVAL /* test #define */
    
    var KILO = C.KILO
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_vendor_auto.txt

    go list -m -f '{{.Dir}}' all
    stdout '^'$WORK'[/\\]auto$'
    stdout '^'$GOPATH'[/\\]pkg[/\\]mod[/\\]example.com[/\\]printversion@v1.0.0$'
    stdout '^'$WORK'[/\\]auto[/\\]replacement-version$'
    
    # 'go mod vendor' should repair vendor/modules.txt so that the implicit
    # -mod=vendor works again.
    env GOFLAGS=
    
    go mod edit -go=1.14
    go mod vendor
    
    go list -f {{.Dir}} -tags tools -e all
    stdout '^'$WORK'[/\\]auto$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. cni/test/install_cni.go

    	expectedPostCleanFile, tempCNIConfDir, tempCNIBinDir, tempK8sSvcAcctDir string,
    ) {
    	t.Logf("prior cni-conf='%v', expected result='%v'", preConfFile, resultFileName)
    
    	// disable monitoring & repair
    	viper.Set(constants.MonitoringPort, 0)
    	viper.Set(constants.RepairEnabled, false)
    
    	// Don't set the CNI conf file env var if preConfFile is not set
    	var envPreconf string
    	if preConfFile != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. okhttp-tls/src/test/java/okhttp3/tls/HeldCertificateTest.kt

        val privateKey =
          keyFactory.generatePrivate(
            PKCS8EncodedKeySpec(privateKeyBytes.toByteArray()),
          )
        val heldCertificate =
          HeldCertificate.Builder()
            .keyPair(publicKey, privateKey)
            .commonName("cash.app")
            .validityInterval(0L, 1000L)
            .rsa2048()
            .build()
        assertThat(
          """
          |-----BEGIN CERTIFICATE-----
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/diagnosticsProvider/codeFragmentDiagnostics/localFunction.fragment.kt

    fun foo(): Pair<Int, Int> {
        return x to y
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 07 16:22:01 UTC 2023
    - 54 bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v2.go

    	}
    	x.versions = x.versions[:versions]
    	x.data = data
    	x.metaV = metaV
    	if err = x.data.validate(); err != nil {
    		x.data.repair()
    		storageLogIf(GlobalContext, fmt.Errorf("xlMetaV2.loadIndexed: data validation failed: %v. %d entries after repair", err, x.data.entries()))
    	}
    	return decodeVersions(buf, versions, func(i int, hdr, meta []byte) error {
    		ver := &x.versions[i]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/LogContent.java

        /**
         * Locates the log content starting with the first line that matches the given pattern, or null if no such line.
         *
         * @return a pair containing (content-before-matching-line, content-from-matching-line) or null if no match.
         */
        public @Nullable
        Pair<LogContent, LogContent> splitOnFirstMatchingLine(Pattern pattern) {
            for (int i = 0; i < lines.size(); i++) {
                String line = lines.get(i);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/saved_model/saved_model.cc

        // TODO(chky): Support cases where index_path is not a single string.
        return mlir::cast<mlir::StringAttr>(index_path[0]).getValue();
      }
      return "";
    }
    
    absl::StatusOr<std::pair<tensorflow::DataType, tensorflow::PartialTensorShape>>
    ProcessTensorSpec(mlir::TensorType type) {
      tensorflow::DataType dtype;
      TF_RETURN_IF_ERROR(
          ConvertScalarTypeToDataType(type.getElementType(), &dtype));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. cni/pkg/repair/repair_test_helpers.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 repair
    
    import (
    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/istio/tools/istio-iptables/pkg/constants"
    )
    
    type makePodArgs struct {
    	PodName             string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 12 17:39:53 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. src/cmd/internal/objabi/reloctype.go

    	// R_RISCV_CALL resolves a 32 bit PC-relative address for an AUIPC + JALR
    	// instruction pair.
    	R_RISCV_CALL
    
    	// R_RISCV_PCREL_ITYPE resolves a 32 bit PC-relative address for an
    	// AUIPC + I-type instruction pair.
    	R_RISCV_PCREL_ITYPE
    
    	// R_RISCV_PCREL_STYPE resolves a 32 bit PC-relative address for an
    	// AUIPC + S-type instruction pair.
    	R_RISCV_PCREL_STYPE
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top