Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 151 for hiding (0.19 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1beta1/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 Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pkg/controller/volume/persistentvolume/binder_test.go

    			expectedEvents:  []string{"Normal FailedBinding"},
    			errors:          noerrors,
    			test:            testSyncClaim,
    		},
    		{
    			// syncClaim does not do anything when binding is delayed
    			name:            "1-13 - delayed binding",
    			initialVolumes:  newVolumeArray("volume1-1", "1Gi", "", "", v1.VolumeAvailable, v1.PersistentVolumeReclaimRetain, classWait),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K 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. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

    import org.gradle.model.internal.manage.binding.BridgeMethodBinding;
    import org.gradle.model.internal.manage.binding.DelegateMethodBinding;
    import org.gradle.model.internal.manage.binding.DirectMethodBinding;
    import org.gradle.model.internal.manage.binding.ManagedProperty;
    import org.gradle.model.internal.manage.binding.ManagedPropertyMethodBinding;
    import org.gradle.model.internal.manage.binding.StructBindings;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier.go

    	vservers, err = ipvs.GetVirtualServers()
    	if err != nil {
    		logger.Error(err, "ipvs.GetVirtualServers")
    		return err
    	}
    	logger.V(5).Info("Virtual Servers after adding dummy", "count", len(vservers))
    	if len(vservers) == 0 {
    		logger.Info("Dummy VS not created", "scheduler", scheduler)
    		return fmt.Errorf("Ipvs not supported") // This is a BUG work-around
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    There are many real world examples of tools compromised by adding a malicious dependency.
    Dependency verification is meant to protect yourself from those attacks, by forcing you to ensure that the artifacts you include in your build are the ones that you expect.
    It is not meant, however, to prevent you from including _vulnerable_ dependencies.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top