Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 187 for IsSkip (0.14 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// delete) or an object that cannot have labels (like a
    	// DeploymentRollback or a PodProxyOptions object) is not considered to
    	// match.
    	// Use the object selector only if the webhook is opt-in, because end
    	// users may skip the admission webhook by setting the labels.
    	// Default to the empty LabelSelector, which matches everything.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

          VLOG(2) << "Rejecting " << node->name()
                  << ": could not find JIT device for " << device_type.type();
          continue;
        }
    
        // Skip nodes early that won't be compilable for efficiency.
        bool is_xla_compile_attr_true =
            GetNodeOrFuncAttr(node, flib_def_, kXlaCompileAttr) ||
            (global_jit_level_ != OptimizerOptions::OFF &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// delete) or an object that cannot have labels (like a
    	// DeploymentRollback or a PodProxyOptions object) is not considered to
    	// match.
    	// Use the object selector only if the webhook is opt-in, because end
    	// users may skip the admission webhook by setting the labels.
    	// Default to the empty LabelSelector, which matches everything.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    val javaComponent = components["java"] as AdhocComponentWithVariants
    javaComponent.withVariantsFromConfiguration(configurations["apiElements"]) { skip() }
    javaComponent.withVariantsFromConfiguration(configurations["runtimeElements"]) { skip() }
    ----
    =====
    [.multi-language-sample]
    =====
    .build.gradle
    [source,groovy]
    ----
    publishing {
        publications {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/deadness_analysis.cc

          if (IsNextIteration(curr_node) && IsMerge(out)) {
            // Edge NextIteration->Merge has been counted.
            continue;
          }
          ++num_ready_inputs[out->id()];
          if (!out->IsOp()) continue;  // Skip Sink/Source nodes.
          if (num_ready_inputs[out->id()] != out->in_edges().size()) continue;
    
          absl::string_view frame_name = control_flow_info_[out_id].frame_name;
          if (IsRootEnter(out)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

            builder.getContext(), func_names.at(subgraph_idx));
    
        op_state.addAttribute(kScatterRegionFuncName, subgraph_attr);
    
        return absl::OkStatus();
      }
      // skip if not supported
      return absl::OkStatus();
    }
    
    Status AddOpIntermediatesForLstm(
        const tflite::OperatorT& op,
        const std::vector<mlir::TensorType>& intermediate_types,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	var apiResourceList []apidiscoveryv2.APIResourceDiscovery
    	parentResources := make(map[string]int)
    
    	// Loop through all top-level resources
    	for _, r := range list {
    		if strings.Contains(r.Name, "/") {
    			// Skip subresources for now so we can get the list of resources
    			continue
    		}
    
    		var scope apidiscoveryv2.ResourceScope
    		if r.Namespaced {
    			scope = apidiscoveryv2.ScopeNamespace
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. src/math/big/int_test.go

    }
    
    func TestMulRangeZ(t *testing.T) {
    	var tmp Int
    	// test entirely positive ranges
    	for i, r := range mulRangesN {
    		// skip mulRangesN entries that overflow int64
    		if int64(r.a) < 0 || int64(r.b) < 0 {
    			continue
    		}
    		prod := tmp.MulRange(int64(r.a), int64(r.b)).String()
    		if prod != r.prod {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		if err != nil {
    			return err
    		}
    		// The claim name might be nil if no underlying resource claim
    		// was generated for the referenced claim. There are valid use
    		// cases when this might happen, so we simply skip it.
    		if claimName == nil {
    			continue
    		}
    		claim, err := pl.claimLister.ResourceClaims(pod.Namespace).Get(*claimName)
    		if err != nil {
    			return err
    		}
    
    		if claim.DeletionTimestamp != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    			for _, namespaceIsSet := range []bool{false, true} {
    				if paramIsClusterScoped && namespaceIsSet {
    					// Skip invalid configuration
    					continue
    				}
    
    				for _, selectorIsSet := range []bool{false, true} {
    					if selectorIsSet && nameIsSet {
    						// SKip invalid configuration
    						continue
    					}
    
    					for _, denyNotFound := range []bool{false, true} {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top