Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,495 for Gester (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/testing/tester.go

    	t.tester = t.tester.ClusterScope()
    	return t
    }
    
    func (t *Tester) Namer(namer func(int) string) *Tester {
    	t.tester = t.tester.Namer(namer)
    	return t
    }
    
    func (t *Tester) AllowCreateOnUpdate() *Tester {
    	t.tester = t.tester.AllowCreateOnUpdate()
    	return t
    }
    
    func (t *Tester) GeneratesName() *Tester {
    	t.tester = t.tester.GeneratesName()
    	return t
    }
    
    func (t *Tester) ReturnDeletedObject() *Tester {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 16:50:16 UTC 2019
    - 4.8K bytes
    - Viewed (0)
  2. src/unicode/letter.go

    	}
    	return false
    }
    
    // IsUpper reports whether the rune is an upper case letter.
    func IsUpper(r rune) bool {
    	// See comment in IsGraphic.
    	if uint32(r) <= MaxLatin1 {
    		return properties[uint8(r)]&pLmask == pLu
    	}
    	return isExcludingLatin(Upper, r)
    }
    
    // IsLower reports whether the rune is a lower case letter.
    func IsLower(r rune) bool {
    	// See comment in IsGraphic.
    	if uint32(r) <= MaxLatin1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/tasks/Nested.java

    /**
     * <p>Marks a property as specifying a nested bean, whose properties should be checked for annotations.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <p>Gradle will attempt to instantiate a nested bean on abstract getter methods annotated with this annotation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 27 22:03:08 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. test/typeparam/nested.out

    Matthew Dempsky <******@****.***> 1660860983 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 18:13:48 UTC 2022
    - 143 bytes
    - Viewed (0)
  5. cluster/gce/gci/master.yaml

          ExecStartPre=/bin/chmod 544 /home/kubernetes/bin/kube-master-internal-route.sh
          ExecStart=/home/kubernetes/bin/kube-master-internal-route.sh
    
          [Install]
          WantedBy=kubernetes.target
    
      - path: /etc/systemd/system/kube-master-configuration.service
        permissions: 0644
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 12 16:22:20 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  6. src/mime/multipart/testdata/nested-mime

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.1K bytes
    - Viewed (0)
  7. test/typeparam/nested.go

    //
    // 2. A few of the instantiations are constructed to be identical, and
    //    it tests that exactly these pairs are duplicated (by golden
    //    output comparison to nested.out).
    //
    // In both cases, we're effectively using the compiler's existing
    // runtime.Type handling (which is well tested) of type identity of A
    // and B as a way to help bootstrap testing and validate its new
    // runtime.Type handling of F[A].T[B].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:23:27 UTC 2022
    - 3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/lister.go

    		}}
    	}
    	result = obj.(T)
    	return result, nil
    }
    
    type lister[T runtime.Object] struct {
    	indexer cache.Indexer
    }
    
    func (w lister[T]) List(selector labels.Selector) (ret []T, err error) {
    	err = cache.ListAll(w.indexer, selector, func(m interface{}) {
    		ret = append(ret, m.(T))
    	})
    	return ret, err
    }
    
    func (w lister[T]) Get(name string) (T, error) {
    	var result T
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/artifacts/deeply-nested.yaml

    Maciej Szulik <******@****.***> 1534848399 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 21 15:08:30 UTC 2018
    - 314 bytes
    - Viewed (0)
  10. cluster/gce/gci/master-helper.sh

      metadata="${metadata},kube-master-certs=${KUBE_TEMP}/kube-master-certs.yaml"
      metadata="${metadata},cluster-location=${KUBE_TEMP}/cluster-location.txt"
      metadata="${metadata},kube-master-internal-route=${KUBE_ROOT}/cluster/gce/gci/kube-master-internal-route.sh"
      metadata="${metadata},${MASTER_EXTRA_METADATA}"
    
      local disk="name=${master_name}-pd"
      disk="${disk},device-name=master-pd"
      disk="${disk},mode=rw"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 19:00:22 UTC 2022
    - 8.7K bytes
    - Viewed (0)
Back to top