Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 135 for 1223 (0.06 sec)

  1. src/cmd/go/internal/cache/cache_test.go

    	if err := os.Mkdir(cdir, 0777); err != nil {
    		t.Fatal(err)
    	}
    
    	c1, err := Open(cdir)
    	if err != nil {
    		t.Fatalf("Open(c1) (create): %v", err)
    	}
    	if err := c1.putIndexEntry(dummyID(1), dummyID(12), 13, true); err != nil {
    		t.Fatalf("addIndexEntry: %v", err)
    	}
    	if err := c1.putIndexEntry(dummyID(1), dummyID(2), 3, true); err != nil { // overwrite entry
    		t.Fatalf("addIndexEntry: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:49:37 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    https://blog.jetbrains.com/kotlin/2018/01/kotlin-1-2-20-is-out/[You can opt into it] (which is recommended) by adding the following to build scripts:
    
    ====
    include::sample[dir="snippets/buildCache/caching-android-projects/kotlin",files="build.gradle.kts[tags=cacheKapt]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/math/cmplx/tan.go

    		t = float64(int64(t)) // int64(t) = the multiple
    		return ((x - t*PI1) - t*PI2) - t*PI3
    	}
    	// Must apply Payne-Hanek range reduction
    	const (
    		mask     = 0x7FF
    		shift    = 64 - 11 - 1
    		bias     = 1023
    		fracMask = 1<<shift - 1
    	)
    	// Extract out the integer and exponent such that,
    	// x = ix * 2 ** exp.
    	ix := math.Float64bits(x)
    	exp := int(ix>>shift&mask) - bias - shift
    	ix &= fracMask
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/discovery/v1/generated.proto

      // Multiple endpoints which use the same hostname should be considered
      // fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS
      // Label (RFC 1123) validation.
      // +optional
      optional string hostname = 3;
    
      // targetRef is a reference to a Kubernetes object that represents this
      // endpoint.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/cc_ops_test.cc

      Split p(root, 0, {{1}, {2}}, 2);
      auto c = Concat(root, {p[0], p[1]}, 0);
      TF_EXPECT_OK(root.status());
      Tensor out;
      test::GetTensor(root, c, &out);
      test::ExpectTensorEqual<int>(out, test::AsTensor<int>({1, 2}, {2, 1}));
    }
    
    TEST(CCOpTest, CompositeOp) {
      Scope root = Scope::NewRootScope();
      auto l = Linear(root.WithOpName("layer0"), {{10.0f, -3.0f}},
                      {{.8f, .5f}, {.1f, .6f}}, {-8.0f, 31.0f});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/discovery/v1beta1/generated.proto

      // Multiple endpoints which use the same hostname should be considered
      // fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS
      // Label (RFC 1123) validation.
      // +optional
      optional string hostname = 3;
    
      // targetRef is a reference to a Kubernetes object that represents this
      // endpoint.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/discovery/v1/types_swagger_doc_generated.go

    	"targetRef":          "targetRef is a reference to a Kubernetes object that represents this endpoint.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 15:36:48 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/sparsetree.go

    //
    // This is the in-order sequence of assigned and reserved numbers
    // for the last example:
    //   root     left     left      right       right       root
    //  1 2e 3 | 4 5e 6 | 7 8x 9 | 10 11e 12 | 13 14x 15 | 16 17x 18
    
    func (t SparseTree) numberBlock(b *Block, n int32) int32 {
    	// reserve n for entry-1, assign n+1 to entry
    	n++
    	t[b.ID].entry = n
    	// reserve n+1 for entry+1, n+2 is next free number
    	n += 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  9. test/codegen/bits.go

    func bitOpOnMem(a []uint32, b, c, d uint32) {
    	// amd64:`ANDL\s[$]200,\s\([A-Z][A-Z0-9]+\)`
    	a[0] &= 200
    	// amd64:`ORL\s[$]220,\s4\([A-Z][A-Z0-9]+\)`
    	a[1] |= 220
    	// amd64:`XORL\s[$]240,\s8\([A-Z][A-Z0-9]+\)`
    	a[2] ^= 240
    }
    
    func bitcheckMostNegative(b uint8) bool {
    	// amd64:"TESTB"
    	return b&0x80 == 0x80
    }
    
    // Check AND masking on arm64 (Issue #19857)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. pkg/env/var_test.go

    	reset()
    
    	ev := RegisterStringVar(testVar, "123", "")
    	v, present := ev.Lookup()
    	if v != "123" {
    		t.Errorf("Expected 123, got %s", v)
    	}
    	if present {
    		t.Errorf("Expected not present")
    	}
    
    	v = ev.Get()
    	if v != "123" {
    		t.Errorf("Expected 123, got %s", v)
    	}
    
    	_ = os.Setenv(testVar, "ABC")
    
    	ev = RegisterStringVar(testVar, "123", "")
    	v, present = ev.Lookup()
    	if v != "ABC" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top