Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 782 for doBind (0.24 sec)

  1. cmd/kubeadm/app/util/marshal_test.go

    apiVersion: foo.k8s.io/v1
    fooField: foo
    `),
    	"bar": []byte(`
    apiVersion: bar.k8s.io/v2
    barField: bar
    kind: Bar
    `),
    	"baz": []byte(`
    apiVersion: baz.k8s.io/v1
    kind: Baz
    baz:
    	foo: bar
    `),
    	"nokind": []byte(`
    apiVersion: baz.k8s.io/v1
    foo: foo
    bar: bar
    `),
    	"noapiversion": []byte(`
    kind: Bar
    foo: foo
    bar: bar
    `),
    }
    
    func TestMarshalUnmarshalYaml(t *testing.T) {
    	pod := &corev1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. src/math/rand/v2/pcg.go

    	// bits in the multiplier reduces the effect of low bits on the highest bits,
    	// and it only saves 1 multiply out of 3.
    	// (On 32-bit systems, it saves 1 out of 6, since Mul64 is doing 4.)
    	const (
    		mulHi = 2549297995355413924
    		mulLo = 4865540595714422341
    		incHi = 6364136223846793005
    		incLo = 1442695040888963407
    	)
    
    	// state = state * mul + inc
    	hi, lo = bits.Mul64(p.lo, mulLo)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/GradleMetadataResolveRunner.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures
    
    import groovy.transform.CompileStatic
    
    // TODO: rename the class. Not doing it as part of Spock2 upgrade change so that there is less non-essential changes noise
    @CompileStatic
    class GradleMetadataResolveRunner  {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/util/transport/Transport.java

         * @param timeout
         * @return
         * @throws IOException
         */
        protected <T extends Response> long doSend ( Request request, T response, Set<RequestParam> params, long timeout ) throws IOException {
            long firstKey = prepareRequests(request, response, params, timeout);
            doSend(request);
            return firstKey;
        }
    
    
        /**
         * @param request
         * @param response
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 01 18:12:21 UTC 2020
    - 24.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/toolchain/exec.go

    	if dir == "" {
    		os.Unsetenv("GOROOT")
    	} else {
    		os.Setenv("GOROOT", dir)
    	}
    
    	// On Windows, there is no syscall.Exec, so the best we can do
    	// is run a subprocess and exit with the same status.
    	// Doing the same on Unix would be a problem because it wouldn't
    	// propagate signals and such, but there are no signals on Windows.
    	// We also use the exec case when GODEBUG=gotoolchainexec=0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. pkg/apis/abac/latest/latest.go

    	_ "k8s.io/kubernetes/pkg/apis/abac/v1beta1"
    )
    
    // TODO: this file is totally wrong, it should look like other latest files.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 26 08:30:35 UTC 2019
    - 919 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/cases/fold.go

    // license that can be found in the LICENSE file.
    
    package cases
    
    import "golang.org/x/text/transform"
    
    type caseFolder struct{ transform.NopResetter }
    
    // caseFolder implements the Transformer interface for doing case folding.
    func (t *caseFolder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
    	c := context{dst: dst, src: src, atEOF: atEOF}
    	for c.next() {
    		foldFull(&c)
    		c.checkpoint()
    	}
    	return c.ret()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 935 bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailForm.java

    import java.util.Map;
    
    import javax.validation.constraints.Size;
    
    import org.lastaflute.web.validation.Required;
    
    public class ThumbnailForm {
    
        @Required
        @Size(max = 100)
        public String docId;
    
        @Required
        public String queryId;
    
        // for error page
    
        public String q;
    
        public String num;
    
        public String sort;
    
        public String lang;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelSchemaExtractionStrategy.java

    public interface ModelSchemaExtractionStrategy {
        /**
         * Potentially extracts the schema for a type. If this strategy does not recognize the type, this method should return without doing anything.
         *
         * If the strategy does recognize the type, it should call {@link ModelSchemaExtractionContext#found(org.gradle.model.internal.manage.schema.ModelSchema)} with the resulting schema, or one of the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. src/net/rlimit_unix.go

    // license that can be found in the LICENSE file.
    
    //go:build unix || wasip1
    
    package net
    
    import "syscall"
    
    // concurrentThreadsLimit returns the number of threads we permit to
    // run concurrently doing DNS lookups via cgo. A DNS lookup may use a
    // file descriptor so we limit this to less than the number of
    // permitted open files. On some systems, notably Darwin, if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top