Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for stage1 (0.25 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	//   and the bookmark event is send when the state is synced
    	//   to a `resourceVersion` at least as fresh as the one provided by the ListOptions.
    	//   If `resourceVersion` is unset, this is interpreted as "consistent read" and the
    	//   bookmark event is send when the state is synced at least to the moment
    	//   when request started being processed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	if uss.evalExecutingMetrics && len(uss.expectedConcurrencyInUse) > 0 {
    		e := `
    				# HELP apiserver_flowcontrol_request_concurrency_in_use [ALPHA] Concurrency (number of seats) occupied by the currently executing (initial stage for a WATCH, any stage otherwise) requests in the API Priority and Fairness subsystem
    				# TYPE apiserver_flowcontrol_request_concurrency_in_use gauge
    ` + uss.expectedConcurrencyInUse
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      def MoveBinaryOpBeforeReshape#BinaryOp : Pat<
        (BinaryOp (TFL_ReshapeOp:$lhs $input1, (Arith_ConstantOp:$shape1 $s1)),
                  (TFL_ReshapeOp:$rhs $input2, (Arith_ConstantOp:$shape2 $s2)),
                  $act_fn),
        (TFL_ReshapeOp (BinaryOp $input1, $input2, $act_fn), $shape1),
        [(IsTailOfShape $rhs, $lhs),
          (IsTailOfShape $lhs, $rhs),
          (IsTailOfShape $input1, $input2),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier.go

    	}
    }
    
    // This will cleanup stale load balancers which are pending delete
    // in last iteration. This function will act like a self healing of stale
    // loadbalancer entries.
    func (proxier *Proxier) cleanupStaleLoadbalancers() {
    	i := 0
    	countStaleLB := len(proxier.mapStaleLoadbalancers)
    	if countStaleLB == 0 {
    		return
    	}
    	klog.V(3).InfoS("Cleanup of stale loadbalancers triggered", "LB Count", countStaleLB)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    Such a failure indicates that a **dependency may have been compromised**.
    At this stage, you **must** perform manual verification and check what happens.
    Several things can happen:
    
    * a dependency was tampered in the local dependency cache of Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. pilot/pkg/security/authn/policy_applier_test.go

    						CreationTimestamp: now.Add(time.Second * -1),
    					},
    					Spec: &v1beta1.PeerAuthentication{
    						Selector: &type_beta.WorkloadSelector{
    							MatchLabels: map[string]string{
    								"stage": "prod",
    							},
    						},
    						Mtls: &v1beta1.PeerAuthentication_MutualTLS{
    							Mode: v1beta1.PeerAuthentication_MutualTLS_STRICT,
    						},
    					},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    			// state is produced for test.existingPods (without test.addedPod).
    			ipa, cycleState, state, snapshot := getState(test.existingPods)
    			// clone the state so that we can compare it later when performing Remove.
    			originalState := state.Clone()
    
    			// Add test.addedPod to state1 and verify it is equal to allPodsState.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        if (!TFIntListIs1XY1(op, "strides", &height, &width)) return failure();
    
        ConvertTFConvOpMatchState state;
        state.stride_height = height;
        state.stride_width = width;
    
        if (TFIntListIs1XY1(op, "dilations", &height, &width)) {
          state.dilation_height_factor = height;
          state.dilation_width_factor = width;
        } else {
          // If the 'dilations' attribute is missing, we use the default value (1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      // CHECK-DAG: %[[SHAPE1:.*]] = "tf.Shape"(%[[INPUT]]) : (tensor<?x?xf32>) -> tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  10. src/crypto/tls/conn.go

    	var state ConnectionState
    	state.HandshakeComplete = c.isHandshakeComplete.Load()
    	state.Version = c.vers
    	state.NegotiatedProtocol = c.clientProtocol
    	state.DidResume = c.didResume
    	state.testingOnlyDidHRR = c.didHRR
    	// c.curveID is not set on TLS 1.0–1.2 resumptions. Fix that before exposing it.
    	state.testingOnlyCurveID = c.curveID
    	state.NegotiatedProtocolIsMutual = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top