Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for hiding (0.31 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: only enable the klog flags that are still supported for kubeadm, rather than hiding the unwanted flags. This means that the previously unrecommended hidden flags about klog (including `--alsologtostderr`, `--log-backtrace-at`, `--log-dir`, `--logtostderr`, `--log-file`, `--log-file-max-size`, `--one-output`, `--skip-log-headers`,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // `parameterNotFoundAction` controls the behavior of the binding when the resource
      // exists, and name or selector is valid, but there are no parameters
      // matched by the binding. If the value is set to `Allow`, then no
      // matched parameters will be treated as successful validation by the binding.
      // If set to `Deny`, then no matched parameters will be subject to the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/types.go

    //
    // For a given admission request, each binding will cause its policy to be
    // evaluated N times, where N is 1 for policies/bindings that don't use
    // params, otherwise N is the number of parameters selected by the binding.
    //
    // The CEL expressions of a policy must have a computed CEL cost below the maximum
    // CEL budget. Each evaluation of the policy is given an independent CEL cost budget.
    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/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                }
                synchronized (this) {
                    if (state == BindState.BINDING) {
                        throw new ServiceValidationException("Cycle in dependencies of " + getDisplayName() + " detected");
                    }
                    if (state == BindState.UNBOUND) {
                        state = BindState.BINDING;
                        try {
                            bind();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue.go

    		if err != nil {
    			logger.V(4).Info("Pod doesn't exist in podLister, aborted adding it to the nominator", "pod", klog.KObj(pi.Pod))
    			return
    		}
    		if updatedPod.Spec.NodeName != "" {
    			logger.V(4).Info("Pod is already scheduled to a node, aborted adding it to the nominator", "pod", klog.KObj(pi.Pod), "node", updatedPod.Spec.NodeName)
    			return
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    			return rs, mg, rsErr
    		}
    		rs = newRS
    		mg, mgErr = rs.Graph(ctx)
    	}
    
    	return rs, mg, mgErr
    }
    
    // EditBuildList edits the global build list by first adding every module in add
    // to the existing build list, then adjusting versions (and adding or removing
    // requirements as needed) until every module in mustSelect is selected at the
    // given version.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            return new DependencyState(md, resolveState.getComponentSelectorConverter());
        }
    
        /**
         * Iterate over the dependencies originating in this node, adding them either as a 'pending' dependency
         * or adding them to the `discoveredEdges` collection (and `this.outgoingEdges`)
         */
        private void visitDependencies(ExcludeSpec resolutionFilter, Collection<EdgeState> discoveredEdges) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			EndpointPort: 6060,
    		},
    	}
    
    	for _, wi := range []*model.WorkloadInstance{wiRatings1, wiDetails1, wiReviews1, wiReviews2, wiProduct1} {
    		ctl.workloadInstanceHandler(wi, model.EventAdd) // simulate adding a workload entry
    	}
    
    	cases := []struct {
    		name  string
    		proxy *model.Proxy
    		want  []model.ServiceTarget
    	}{
    		{
    			name:  "proxy with unspecified IP",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    For the following use cases, consider these alternatives when replacing a `beforeResolve` hook:
    
    * **Adding dependencies**: Use link:{javadocPath}/org/gradle/api/artifacts/Configuration.html#withDependencies-org.gradle.api.Action-[`withDependencies`].
    * **Changing dependency versions**: Use <<using_preferred_versions,preferred version constraints>>.
    * **Adding excludes**: Use <<component_metadata_rules.adoc#sec:component_metadata_rules,Component Metadata Rules>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. src/internal/trace/order.go

    			// appear as having the G currently bound to this M.
    			curCtx.G = ms.g
    		} else if !ok {
    			// The M hasn't been seen yet. That means this goroutine
    			// has just been sitting in a syscall on this M. Create
    			// a state for it.
    			o.mStates[mid] = &mState{g: gid, p: NoProc}
    			// Don't set curCtx.G in this case because this event is the
    			// binding event (and curCtx represents the "before" state).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
Back to top