Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for touchMem (0.13 sec)

  1. android/guava/src/com/google/common/graph/Graph.java

       */
      @Override
      Set<EndpointPair<N>> incidentEdges(N node);
    
      /**
       * Returns the count of {@code node}'s incident edges, counting self-loops twice (equivalently,
       * the number of times an edge touches {@code node}).
       *
       * <p>For directed graphs, this is equal to {@code inDegree(node) + outDegree(node)}.
       *
       * <p>For undirected graphs, this is equal to {@code incidentEdges(node).size()} + (number of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/graph/Graph.java

       */
      @Override
      Set<EndpointPair<N>> incidentEdges(N node);
    
      /**
       * Returns the count of {@code node}'s incident edges, counting self-loops twice (equivalently,
       * the number of times an edge touches {@code node}).
       *
       * <p>For directed graphs, this is equal to {@code inDegree(node) + outDegree(node)}.
       *
       * <p>For undirected graphs, this is equal to {@code incidentEdges(node).size()} + (number of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. src/image/draw/draw_test.go

    	// is only 1x2. The Draw call should affect dst's pixels at (1, 10) and (2,
    	// 10) but the pixel at (0, 10) should be untouched.
    	//
    	// The src image is entirely transparent (and the Draw operator is Src) so
    	// the two touched pixels should be set to transparent colors.
    	//
    	// In general, Go's color.Color type (and specifically the Color.RGBA
    	// method) works in premultiplied alpha, where there's no difference
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_main_function.mlir

        %0 = "tf.Mul"(%arg0, %arg1) : (tensor<1xf32>, tensor<1xf32>) -> tensor<1xf32>
        func.return %0 : tensor<1xf32>
      }
    // `@main_0` remains touched.
    // CHECK: func.func private @main_0
    // CHECK-SAME: z:0
    
    // `@main` should be renamed to `@main_1` instead of `@main_0` to avoid
    // conflict.
    // CHECK: func.func private @main_1
    // CHECK-SAME: x:0
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  5. pkg/kubelet/config/config_test.go

    		CreatePodUpdate(kubetypes.UPDATE, TestSource, pod))
    }
    
    func TestNewPodAddedSetReconciled(t *testing.T) {
    	tCtx := ktesting.Init(t)
    
    	// Create and touch new test pods, return the new pods and touched pod. We should create new pod list
    	// before touching to avoid data race.
    	newTestPods := func(touchStatus, touchSpec bool) ([]*v1.Pod, *v1.Pod) {
    		pods := []*v1.Pod{
    			CreateValidPod("changeable-pod-0", "new"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            when:
            file("ci").text = "true"
            configurationCacheRun "run"
    
            then:
            output.count("ON CI") == 1
            configurationCache.assertStateStored()
    
            when: "file is touched but unchanged"
            file("ci").text = "true"
            configurationCacheRun "run"
    
            then: "cache is still valid"
            output.count("ON CI") == 1
            configurationCache.assertStateLoaded()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/ValueGraph.java

       */
      @Override
      Set<EndpointPair<N>> incidentEdges(N node);
    
      /**
       * Returns the count of {@code node}'s incident edges, counting self-loops twice (equivalently,
       * the number of times an edge touches {@code node}).
       *
       * <p>For directed graphs, this is equal to {@code inDegree(node) + outDegree(node)}.
       *
       * <p>For undirected graphs, this is equal to {@code incidentEdges(node).size()} + (number of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. src/runtime/select.go

    	// the G that calls select runnable again and schedules it for execution.
    	// When the G runs on another M, it locks all the locks and frees sel.
    	// Now if the first M touches sel, it will access freed memory.
    	for i := len(lockorder) - 1; i >= 0; i-- {
    		c := scases[lockorder[i]].c
    		if i > 0 && c == scases[lockorder[i-1]].c {
    			continue // will unlock it on the next iteration
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. guava/src/com/google/common/graph/ValueGraph.java

       */
      @Override
      Set<EndpointPair<N>> incidentEdges(N node);
    
      /**
       * Returns the count of {@code node}'s incident edges, counting self-loops twice (equivalently,
       * the number of times an edge touches {@code node}).
       *
       * <p>For directed graphs, this is equal to {@code inDegree(node) + outDegree(node)}.
       *
       * <p>For undirected graphs, this is equal to {@code incidentEdges(node).size()} + (number of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/graph/Network.java

       */
      Set<E> outEdges(N node);
    
      /**
       * Returns the count of {@code node}'s {@link #incidentEdges(Object) incident edges}, counting
       * self-loops twice (equivalently, the number of times an edge touches {@code node}).
       *
       * <p>For directed networks, this is equal to {@code inDegree(node) + outDegree(node)}.
       *
       * <p>For undirected networks, this is equal to {@code incidentEdges(node).size()} + (number of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top