Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 778 for hiding (1.97 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    		Message:           decision.Message,
    		ValidationActions: binding.Spec.ValidationActions,
    		Binding:           binding.Name,
    		Policy:            binding.Spec.PolicyName,
    	}})
    	if err != nil {
    		klog.Warningf("Failed to set admission audit annotation %s for ValidatingAdmissionPolicy %s and ValidatingAdmissionPolicyBinding %s: %v", key, binding.Spec.PolicyName, binding.Name, err)
    	}
    	value := string(valueJSON)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

                                + binding.getScope().annotationType()))
                        .get();
                compiled = scope.scope((Key<Q>) binding.getOriginalKey(), binding.getScope(), compiled);
            }
            return compiled;
        }
    
        protected void doBindImplicit(Key<?> key, Binding<?> binding) {
            if (binding != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. maven-di/src/main/java/org/apache/maven/di/impl/ReflectionUtils.java

        }
    
        public static <T> @Nullable Binding<T> generateImplicitBinding(Key<T> key) {
            Binding<T> binding = generateConstructorBinding(key);
            if (binding != null) {
                Annotation scope = scopeOf(key.getRawType());
                if (scope != null) {
                    binding = binding.scope(scope);
                }
                binding = binding.initializeWith(generateInjectingInitializer(key));
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlayTest.kt

            )
        }
    
    
        @Test
        fun `underlay adding blocks appear before overlay ones`() {
            val underlay = resolvedDocument(
                """
                adding(1) {
                    a = 1
                }
                """.trimIndent()
            )
    
            val overlay = resolvedDocument(
                """
                adding(1) {
                    b = 2
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/RuleBindings.java

            for (ModelBinding binding : ruleBinder.getInputBindings()) {
                addRule(ruleBinder, rulesByInput, binding);
            }
        }
    
        private void addRule(RuleBinder rule, NodeAtStateIndex index, ModelBinding binding) {
            Reference reference = new Reference(rule, index, binding);
            BindingPredicate predicate = binding.getPredicate();
            if (predicate.getPath() != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    //
    //	-compile=<rewrite>
    //
    // This flag is equivalent to adding an environment variable
    // “GOCOMPILEDEBUG=<rewrite>hash=PATTERN”,
    // which, as discussed in more detail in the example below,
    // allows bisect to identify the specific source locations where the
    // compiler rewrite causes the target to fail.
    //
    //	-godebug=<name>=<value>
    //
    // This flag is equivalent to adding an environment variable
    // “GODEBUG=<name>=<value>#PATTERN”,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_dispatcher.go

    	Resource schema.GroupVersionResource
    
    	// Relevant binding for this hook.
    	// May be empty if there was an error with the policy's configuration itself
    	Binding B
    
    	// Compiled policy evaluator
    	Evaluator E
    
    	// Params fetched by the binding to use to evaluate the policy
    	Param runtime.Object
    
    	// Error is set if there was an error with the policy or binding or its
    	// params, etc
    	Error error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/FunctionCallResolver.kt

                }
            }
    
            if (!typeCheckFunctionCall(binding, argResolution)) {
                // TODO: return type mismatch in args
                return@mapNotNull null
            }
    
            FunctionResolutionAndBinding(receiver, candidate, binding)
        }
    
        private
        fun TypeRefContext.typeCheckFunctionCall(
            binding: ParameterArgumentBinding,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. pkg/registry/core/pod/storage/storage_test.go

    		if err != nil {
    			t.Fatalf("%s: unexpected error: %v", k, err)
    		}
    
    		binding := validNewBinding()
    		binding.UID = testCase.podUIDGetter(podCreated.(*api.Pod))
    		binding.ResourceVersion = testCase.podResourceVersionGetter(podCreated.(*api.Pod))
    
    		if _, err := bindingStorage.Create(ctx, binding.Name, binding, rest.ValidateAllObjectFunc, &metav1.CreateOptions{}); !testCase.errOK(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 07:18:44 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  10. src/net/textproto/reader.go

    // should be reading from an [io.LimitReader] or similar Reader to bound
    // the size of responses.
    func NewReader(r *bufio.Reader) *Reader {
    	return &Reader{R: r}
    }
    
    // ReadLine reads a single line from r,
    // eliding the final \n or \r\n from the returned string.
    func (r *Reader) ReadLine() (string, error) {
    	line, err := r.readLineSlice(-1)
    	return string(line), err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top