Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 58 for mkcounter (0.13 sec)

  1. pilot/pkg/networking/core/listener_test.go

    					TotalMatch:     true,
    				},
    			},
    		})
    	})
    }
    
    func TestOutboundListenerConflict_HTTPWithCurrentUnknown(t *testing.T) {
    	// The oldest service port is unknown.  We should encounter conflicts when attempting to add the HTTP ports. Purposely
    	// storing the services out of time order to test that it's being sorted properly.
    	testOutboundListenerConflict(t,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  2. src/go/printer/nodes.go

    	// style so that we always get the same decision; print
    	// in RawFormat
    	cfg := Config{Mode: RawFormat}
    	var counter sizeCounter
    	if err := cfg.fprint(&counter, p.fset, n, p.nodeSizes); err != nil {
    		return
    	}
    	if counter.size <= maxSize && !counter.hasNewline {
    		// n fits in a single line
    		size = counter.size
    		p.nodeSizes[n] = size
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

    // CHECK:             %[[COUNTER:.*]], %{{.*}} = tf_executor.island wraps "tf.Add"(%[[ARG_0]], %[[ONE]]) : (tensor<i32>, tensor<i32>) -> tensor<i32>
    // CHECK:             tf_executor.fetch %[[COUNTER]], %[[ARG_1]] : tensor<i32>, tensor<f32>
    // CHECK:           }
    // CHECK:           return %[[GRAPH]]#0, %[[GRAPH]]#1 : tensor<i32>, tensor<f32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    		//
    		counter := 0
    		return wait.PollUntilContextCancel(context.TODO(), 100*time.Millisecond, true, func(_ context.Context) (done bool, err error) {
    			counter += 1
    			err = applyPatchOperation{
    				gvr:  myCRDV1Beta1,
    				name: "sentinel-resource",
    				patch: map[string]interface{}{
    					sentinelName: fmt.Sprintf("invalid-%d", counter),
    				}}.Do(ctx)
    
    			if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  5. src/runtime/traceback.go

    //   - pc is the PC in the running function.
    //   - sp is the stack pointer at that program counter.
    //   - For the innermost frame on LR machines, lr is the program counter that called fn.
    //
    // On return, u.frame contains:
    //   - fp is the stack pointer of the caller.
    //   - lr is the program counter that called fn.
    //   - varp, argp, and continpc are populated for the current frame.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    // and by the end of the GC mark phase, the heap tends to be densely packed. Releasing
    // memory in these densely packed chunks while they're being packed is counter-productive,
    // and worse, it breaks up huge pages on systems that support them. The scavenger (invoked
    // during memory allocation) further ensures that chunks it identifies as "dense" are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Sets.java

       * with an implementation specialized for enums. Unlike {@link ImmutableSet#toImmutableSet}, the
       * resulting set will iterate over elements in their enum definition order, not encounter order.
       *
       * @since 33.2.0 (available since 21.0 in guava-jre)
       */
      @SuppressWarnings({"AndroidJdkLibsChecker", "Java7ApiChecker"})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/Futures.java

       * Future}.
       *
       * <p>Usage example:
       *
       * <pre>{@code
       * ListenableFuture<Integer> fetchCounterFuture = ...;
       *
       * // Falling back to a zero counter in case an exception happens when
       * // processing the RPC to fetch counters.
       * ListenableFuture<Integer> faultTolerantFuture = Futures.catching(
       *     fetchCounterFuture, FetchException.class, x -> 0, directExecutor());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier.go

    			for name := range proxier.nfAcctCounters {
    				if err := proxier.nfacct.Ensure(name); err != nil {
    					proxier.nfAcctCounters[name] = false
    					proxier.logger.Error(err, "Failed to create nfacct counter; the corresponding metric will not be updated", "counter", name)
    				} else {
    					proxier.nfAcctCounters[name] = true
    				}
    			}
    		}
    	}
    
    	//
    	// Below this point we will not return until we try to write the iptables rules.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Sets.java

       * with an implementation specialized for enums. Unlike {@link ImmutableSet#toImmutableSet}, the
       * resulting set will iterate over elements in their enum definition order, not encounter order.
       *
       * @since 21.0
       */
      public static <E extends Enum<E>> Collector<E, ?, ImmutableSet<E>> toImmutableEnumSet() {
        return CollectCollectors.toImmutableEnumSet();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
Back to top