Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for relocs (0.25 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

            CrossBuildInMemoryCache<Class<?>, GeneratedClassImpl> generatedClasses;
            if (enabledInjectAnnotations.isEmpty()) {
                // TODO wolfs: We use `_Decorated` here, since IDEA import currently relies on this
                // See https://github.com/gradle/gradle/issues/8244
                suffix = "_Decorated";
                // Because the same suffix is used for all decorating class generator instances, share the same cache as well
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    		RemoteRuntimeService: rtSvc,
    		RemoteImageService:   fakeRuntime.ImageService,
    		Subpather:            &subpath.FakeSubpath{},
    		OOMAdjuster:          oom.NewOOMAdjuster(),
    		OSInterface:          kubecontainer.RealOS{},
    		DynamicPluginProber:  prober,
    		TLSOptions:           tlsOptions,
    	}
    	crOptions := &config.ContainerRuntimeOptions{}
    
    	testMainKubelet, err := NewMainKubelet(
    		kubeCfg,
    		kubeDep,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        assertThat(response.code).isEqualTo(200)
        assertContent("Body", response)
        response.close()
        assertThat(server.requestCount).isEqualTo(2)
      }
    
      @Test
      fun readTimeouts() {
        // This relies on the fact that MockWebServer doesn't close the
        // connection after a response has been sent. This causes the client to
        // try to read more bytes than are sent, which results in a timeout.
        server.enqueue(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        future1.addListener(
            new Runnable() {
              @Override
              public void run() {
                assertTrue(future1.isCancelled());
                /*
                 * This test relies on behavior that's unspecified but currently
                 * guaranteed by the implementation: Cancellation of inputs is
                 * performed in the order they were provided to the constructor. Verify
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        future1.addListener(
            new Runnable() {
              @Override
              public void run() {
                assertTrue(future1.isCancelled());
                /*
                 * This test relies on behavior that's unspecified but currently
                 * guaranteed by the implementation: Cancellation of inputs is
                 * performed in the order they were provided to the constructor. Verify
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    	// Capacity of the channel for receiving pod lifecycle events. This number
    	// is a bit arbitrary and may be adjusted in the future.
    	plegChannelCapacity = 1000
    
    	// Generic PLEG relies on relisting for discovering container events.
    	// A longer period means that kubelet will take longer to detect container
    	// changes and to update pod status. On the other hand, a shorter period
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

      // CHECK: return %[[IDENTITY]] : tensor<?xf32>
        %ret = "tf.Identity"(%arg0) : (tensor<?xf32>) -> tensor<*xf32>
        func.return %ret : tensor<*xf32>
      }
    
    
      // Tests the case where an inference opportunity relies on folding.
    
      // CHECK-LABEL: func @simple_folding
      func.func @simple_folding(%arg0: tensor<1x1x1x1xi32>, %arg1: tensor<1x1x1x1xf32>) -> tensor<?x?x?x?xf32> {
        // CHECK: %[[SHAPE:.*]] = "tf.Shape"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  8. src/crypto/sha512/sha512_test.go

    	in := []byte("hello, world!")
    	out := make([]byte, 0, Size)
    	h := New()
    	n := int(testing.AllocsPerRun(10, func() {
    		h.Reset()
    		h.Write(in)
    		out = h.Sum(out[:0])
    	}))
    	if n > 0 {
    		t.Errorf("allocs = %d, want 0", n)
    	}
    }
    
    var bench = New()
    var buf = make([]byte, 8192)
    
    func benchmarkSize(b *testing.B, size int) {
    	sum := make([]byte, bench.Size())
    	b.Run("New", func(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  9. src/net/http/transport_test.go

    	}
    }
    
    func TestTransportIgnores408(t *testing.T) {
    	run(t, testTransportIgnores408, []testMode{http1Mode}, testNotParallel)
    }
    func testTransportIgnores408(t *testing.T, mode testMode) {
    	// Not parallel. Relies on mutating the log package's global Output.
    	defer log.SetOutput(log.Writer())
    
    	var logout strings.Builder
    	log.SetOutput(&logout)
    
    	const target = "backend:443"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. src/net/http/serve_test.go

    			rw.Write([]byte("too short"))
    		default:
    			rw.Write([]byte("foo"))
    		}
    	})
    
    	ts := newClientServerTest(t, mode, handler).ts
    	c := ts.Client()
    
    	// Note: this relies on the assumption (which is true) that
    	// Get sends HTTP/1.1 or greater requests. Otherwise the
    	// server wouldn't have the choice to send back chunked
    	// responses.
    	for _, te := range []string{"", "identity"} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top