Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,411 for hiding (0.13 sec)

  1. CHANGELOG/CHANGELOG-1.8.md

    * Fix a scalability issue where high rates of event writes degraded etcd performance. ([#64539](https://github.com/kubernetes/kubernetes/pull/64539), [@ccding](https://github.com/ccding))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/UnboundRulesProcessor.java

                    ModelBinding binding = binder.getInputBindings().get(i);
                    builder.immutableInput(toInputBuilder(binding));
                }
    
                unboundRules.add(builder.build());
            }
            return unboundRules;
        }
    
        private UnboundRuleInput.Builder toInputBuilder(ModelBinding binding) {
            ModelReference<?> reference = binding.getPredicate().getReference();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/ProjectConfigurationIntegrationTest.groovy

            buildFile << '''
                allprojects { p ->
                    println "[1] Adding afterEvaluate for $p.name"
                    p.afterEvaluate {
                        println "[1] afterEvaluate $p.name"
                    }
                }
    
                project(':a') {
                    println "[2] Adding evaluationDependsOn"
                    evaluationDependsOn(':b')
                }
    
                allprojects { p ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/TestSchema.kt

    import org.gradle.declarative.dsl.model.annotations.Adding
    import org.gradle.declarative.dsl.model.annotations.Restricted
    
    
    class MyClass {
        @get:Restricted
        lateinit var my: MyClass
    }
    
    
    class TopLevel {
        @Adding
        fun my1(): MyClass = MyClass()
    
        @Adding
        fun my2(): MyClass = MyClass()
    
        @Adding
        fun my(configure: MyClass.() -> Unit) = MyClass().also(configure)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 443 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. testing/performance/src/templates/project-with-source/build.gradle

        maven {
            url rootProject.file("${repository.rootDir.name}").toURI().toURL()
        }
    <% } %>
        mavenCentral()
    }
    
    <% if (binding.hasVariable("projectDependencies")) { %>
        configurations {
            compile.extendsFrom projectsConfiguration
        }
    <% } %>
    
    <% if (binding.hasVariable("springDmPluginVersion")) {%>
    apply plugin: "io.spring.dependency-management"
    dependencyManagement {
        imports {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/BasicScript.java

         */
        private static final class ScriptDynamicObject extends AbstractDynamicObject {
    
            private final Binding binding;
            private final DynamicObject scriptObject;
            private DynamicObject dynamicTarget;
    
            ScriptDynamicObject(BasicScript script) {
                this.binding = script.getBinding();
                scriptObject = new BeanDynamicObject(script).withNotImplementsMissing();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/scope.go

    	}
    	s.elems[name] = obj
    }
    
    // Squash merges s with its parent scope p by adding all
    // objects of s to p, adding all children of s to the
    // children of p, and removing s from p's children.
    // The function f is called for each object obj in s which
    // has an object alt in p. s should be discarded after
    // having been squashed.
    func (s *Scope) Squash(err func(obj, alt Object)) {
    	p := s.parent
    	assert(p != nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top