Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for alpine (0.18 sec)

  1. src/cmd/dist/test.go

    				ldflags:  "-linkmode=internal -libgcc=none",
    				runTests: run,
    				pkg:      pkg,
    			})
    	}
    
    	// Stub out following test on alpine until 54354 resolved.
    	builderName := os.Getenv("GO_BUILDER_NAME")
    	disablePIE := strings.HasSuffix(builderName, "-alpine")
    
    	// Test internal linking of PIE binaries where it is supported.
    	if t.internalLinkPIE() && !disablePIE {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/defaults_test.go

    				Spec: v1.ReplicationControllerSpec{
    					Template: &v1.PodTemplateSpec{
    						Spec: v1.PodSpec{
    							InitContainers: []v1.Container{
    								{
    									Name:  "fun",
    									Image: "alpine",
    									Env: []v1.EnvVar{
    										{
    											Name: "MY_POD_IP",
    											ValueFrom: &v1.EnvVarSource{
    												FieldRef: &v1.ObjectFieldSelector{
    													APIVersion: "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    		t.Skipf("skipping test because buildmode=pie is not supported on %s/%s", runtime.GOOS, runtime.GOARCH)
    	}
    	// Skip on alpine until https://go.dev/issues/54354 resolved.
    	if strings.HasSuffix(testenv.Builder(), "-alpine") {
    		t.Skip("skipping PIE tests on alpine; see https://go.dev/issues/54354")
    	}
    	t.Run("non-cgo", func(t *testing.T) {
    		testBuildmodePIE(t, false, true)
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/BUILD

            "//learning/brain/mlir/...",
            "//third_party/iree/...",
            "//third_party/odml/infra/...",
            "//tensorflow/compiler/mlir/...",
            "//tensorflow/lite/python/...",
            "//waymo/accelerator/alpine/tools/...",
            "//waymo/ml/compiler/mlir/...",
            # Allow visibility from the mlir language server.
            "//learning/brain/mlir/mlir_lsp_server/...",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	containers := []v1.Container{
    		{
    			Name:            "foo1",
    			Image:           "busybox",
    			ImagePullPolicy: v1.PullIfNotPresent,
    		},
    		{
    			Name:            "foo2",
    			Image:           "alpine",
    			ImagePullPolicy: v1.PullIfNotPresent,
    		},
    	}
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			UID:       "12345678",
    			Name:      "foo",
    			Namespace: "new",
    		},
    		Spec: v1.PodSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    	var save [][]byte
    	var skipLines int
    	for _, line := range bytes.SplitAfter(out, []byte("\n")) {
    		// golang.org/issue/26073 - Apple Xcode bug
    		if bytes.Contains(line, []byte("ld: warning: text-based stub file")) {
    			continue
    		}
    
    		if skipLines > 0 {
    			skipLines--
    			continue
    		}
    
    		// Remove TOC overflow warning on AIX.
    		if bytes.Contains(line, []byte("ld: 0711-783")) {
    			skipLines = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  7. src/math/all_test.go

    		}
    	}
    	for i := 0; i < len(vfy0SC); i++ {
    		if f := Yn(2, vfy0SC[i]); !alike(y2SC[i], f) {
    			t.Errorf("Yn(2, %g) = %g, want %g", vfy0SC[i], f, y2SC[i])
    		}
    		if f := Yn(-3, vfy0SC[i]); !alike(yM3SC[i], f) {
    			t.Errorf("Yn(-3, %g) = %g, want %g", vfy0SC[i], f, yM3SC[i])
    		}
    	}
    	if f := Yn(0, 0); !alike(Inf(-1), f) {
    		t.Errorf("Yn(0, 0) = %g, want %g", f, Inf(-1))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/deadness_analysis.cc

        // Output 0 is alive iff all inputs are alive and the condition is false.
        input_preds.push_back(false_switch);
        SetPredicate(n, 0, predicate_factory_.MakeAndPredicate(input_preds),
                     should_revisit);
        input_preds.pop_back();
    
        // Output 1 is alive iff all inputs are alive and the condition is true.
        input_preds.push_back(true_switch);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  9. src/math/big/float_test.go

    		{"+Inf", +1},
    	} {
    		x := makeFloat(test.x)
    		s := x.Sign()
    		if s != test.s {
    			t.Errorf("%s.Sign() = %d; want %d", test.x, s, test.s)
    		}
    	}
    }
    
    // alike(x, y) is like x.Cmp(y) == 0 but also considers the sign of 0 (0 != -0).
    func alike(x, y *Float) bool {
    	return x.Cmp(y) == 0 && x.Signbit() == y.Signbit()
    }
    
    func alike32(x, y float32) bool {
    	// we can ignore NaNs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  10. src/runtime/map.go

    	buckets     unsafe.Pointer // bucket ptr at hash_iter initialization time
    	bptr        *bmap          // current bucket
    	overflow    *[]*bmap       // keeps overflow buckets of hmap.buckets alive
    	oldoverflow *[]*bmap       // keeps overflow buckets of hmap.oldbuckets alive
    	startBucket uintptr        // bucket iteration started at
    	offset      uint8          // intra-bucket offset to start from during iteration (should be big enough to hold bucketCnt-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top