Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,363 for inter (0.07 sec)

  1. staging/src/k8s.io/api/core/v1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
      // +optional
      optional PodStatus status = 3;
    }
    
    // Pod affinity is a group of inter pod affinity scheduling rules.
    message PodAffinity {
      // If the affinity requirements specified by this field are not met at
      // scheduling time, the pod will not be scheduled onto the node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  2. bin/build_ztunnel.sh

    #   $2: The full path of the output binary.
    #   $3: Non-versioned name to use
    function download_ztunnel_if_necessary () {
      if [[ -f "$2" ]]; then
        return
      fi
      # Enter the output directory.
      mkdir -p "$(dirname "$2")"
      pushd "$(dirname "$2")"
    
      # Download and make the binary executable
      echo "Downloading ztunnel: $1 to $2"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:46:06 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/shape_inference.cc

          }
        }
    
        // Sometimes we have VariableShape nodes in while loop (after Enter nodes).
        // They won't be constant-folded because TensorFlow constant folding does
        // not handle Enter nodes (and thus does not handle any nodes after Enter
        // nodes). We try to replace such VariableShape nodes with Const nodes here.
        if (n->type_string() == "VariableShape") {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/executor_island_coarsening.mlir

    // CHECK:        %[[ENTER:.*]], %[[ENTER_control:.*]] = tf_executor.Enter %[[ISLAND_0]]
    // CHECK-NEXT:   %[[ISLAND_1:.*]] = tf_executor.island wraps "tf.opB"()
    // CHECK:        %[[NEXTIT_SRC:.*]], %[[NEXTIT_SRC_token:.*]], %[[NEXTIT_SRC_control:.*]] = tf_executor.NextIteration.Source
    // CHECK-NEXT:   %[[MERGE:.*]], %[[MERGE_index:.*]], %[[MERGE_control:.*]] = tf_executor.Merge %[[NEXTIT_SRC]], %[[ENTER]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/CustomLambdasTest.kt

    class Outer {
        @get:Restricted
        val inner: Inner = Inner()
    
        @Configuring(propertyName = "inner")
        fun configureInner(fn: Functional) {
            fn.configure(inner)
        }
    
        @Configuring(propertyName = "inner")
        fun configureInnerWithGeneric(fn: GenericFunctional<Inner>) {
            fn.configure(inner)
        }
    }
    
    
    interface Functional {
        fun configure(inner: Inner)
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/SettableFutureTest.java

        SettableFuture<Object> async = SettableFuture.create();
        SettableFuture<Object> inner = SettableFuture.create();
        async.setFuture(inner);
        async.cancel(true);
        assertTrue(inner.isCancelled());
        assertTrue(inner.wasInterrupted());
        assertThrows(CancellationException.class, () -> inner.get());
      }
    
      public void testCancel_resultCancelsInner() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/MonitorTestCase.java

      private String leave() {
        return "leave";
      }
    
      public final void testMutualExclusion() throws Exception {
        thread1.callAndAssertReturns(enter());
        thread2.callAndAssertBlocks(enter());
        thread1.callAndAssertReturns(leave());
        thread2.assertPriorCallReturns(enter());
      }
    
      public final void testTryEnter() throws Exception {
        thread1.callAndAssertReturns(true, tryEnter());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    signal over the inner-most dimension of `input`.
    
    The inner-most dimension of `input` is assumed to be the result of `RFFT`: the
    `fft_length / 2 + 1` unique components of the DFT of a real-valued signal. If
    `fft_length` is not provided, it is computed from the size of the inner-most
    dimension of `input` (`fft_length = 2 * (inner - 1)`). If the FFT length used to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/requested_to_capacity_ratio_test.go

    	extendedResources1 := map[string]int64{
    		"intel.com/foo": 4,
    		"intel.com/bar": 8,
    	}
    	extendedResources2 := map[string]int64{
    		"intel.com/foo": 8,
    		"intel.com/bar": 4,
    	}
    
    	extendedResourcePod1 := map[v1.ResourceName]string{
    		"intel.com/foo": "2",
    		"intel.com/bar": "2",
    	}
    	extendedResourcePod2 := map[v1.ResourceName]string{
    		"intel.com/foo": "4",
    		"intel.com/bar": "2",
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/match/match_test.go

    			name: "empty map at depth = 1",
    			given: func() Mapper {
    				// root (dest port)
    				//   15001:
    				//     inner (dest ip):
    				//       <no matches>
    				//       fallback: chain
    				inner := NewDestinationIP()
    				inner.OnNoMatch = ToChain("chain")
    
    				root := NewDestinationPort()
    				root.Map["15001"] = ToMatcher(inner.Matcher)
    				return root
    			},
    			want: func() *matcher.Matcher {
    				// dest port
    				// 15001: chain
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top