Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,662 for hiding (1.85 sec)

  1. 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)
  2. 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)
  3. pilot/pkg/config/kube/ingress/testdata/simple.yaml

                  number: 4202
          # Regex ending with .*
          - path: /regex1.*
            backend:
              service:
                name: service1
                port:
                  number: 4203
          # Regex ending with *
          - path: /regex2*
            backend:
              service:
                name: service1
                port:
                  number: 4204
          # Regex ending with /*
          - path: /regex3/*
            backend:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. pkg/apis/rbac/v1/helpers.go

    	}
    	return r
    }
    
    // BindingOrDie calls the binding method and panics if there is an error.
    func (r *RoleBindingBuilder) BindingOrDie() rbacv1.RoleBinding {
    	ret, err := r.Binding()
    	if err != nil {
    		panic(err)
    	}
    	return ret
    }
    
    // Binding builds and returns the RoleBinding API object from the builder
    // object.
    func (r *RoleBindingBuilder) Binding() (rbacv1.RoleBinding, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 15:37:57 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/go/types/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.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/LambdaOverloadResolutionTest.kt

            val addedObjects = mutableListOf<AddedObject>()
    
            @Adding
            @Suppress("unused")
            fun addSomething(x: Int, configure: AddedObject.() -> Unit): AddedObject =
                AddedObject("addSomething($x) { ... }")
                    .also(configure)
                    .also(addedObjects::add)
    
            @Adding
            fun addSomething(x: Int): AddedObject =
                AddedObject("addSomething($x)")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 12:27:49 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. samples/security/spire/README.md

      $ kubectl delete clusterrolebinding spire-server-cluster-role-binding spire-agent-cluster-role-binding manager-role-binding
      $ kubectl delete role spire-server-role leader-election-role
      $ kubectl delete rolebinding spire-server-role-binding leader-election-role-binding
      $ kubectl delete ValidatingWebhookConfiguration spire-controller-manager-webhook
      $ kubectl delete csidriver csi.spiffe.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top