Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 167 for pkglist (0.3 sec)

  1. src/internal/coverage/pods/pods_test.go

    	mkmeta(o2, "m1")
    	mkcounter(o2, "m1", 11, 35)
    
    	// Collect pods.
    	podlist, err := pods.CollectPods([]string{o1, o2}, true)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Verify pods
    	if len(podlist) != 2 {
    		t.Fatalf("expected 2 pods got %d pods", len(podlist))
    	}
    
    	for k, p := range podlist {
    		t.Logf("%d: mf=%s\n", k, p.MetaFile)
    	}
    
    	expected := []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 14:00:17 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/example/zz_generated.deepcopy.go

    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodList.
    func (in *PodList) DeepCopy() *PodList {
    	if in == nil {
    		return nil
    	}
    	out := new(PodList)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *PodList) DeepCopyObject() runtime.Object {
    	if c := in.DeepCopy(); c != nil {
    		return c
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_json.txt

    module m
    
    go 1.16
    -- skipper/skip_test.go --
    package skipper
    
    import "testing"
    
    func Test(t *testing.T) {
    	t.Skip("skipping")
    }
    -- empty/pkg/pkg.go --
    package p
    -- empty/pkgtest/pkg.go --
    package p
    -- empty/pkgtest/test_test.go --
    package p
    -- empty/pkgtestxtest/pkg.go --
    package p
    -- empty/pkgtestxtest/test_test.go --
    package p
    -- empty/pkgtestxtest/xtest_test.go --
    package p_test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  4. pkg/kubelet/config/http.go

    	}
    
    	// That didn't work, so try a list of pods.
    	parsed, podList, multiPodErr := tryDecodePodList(data, s.applyDefaults)
    	if parsed {
    		if multiPodErr != nil {
    			// It parsed but could not be used.
    			return multiPodErr
    		}
    		pods := make([]*v1.Pod, 0, len(podList.Items))
    		for i := range podList.Items {
    			pods = append(pods, &podList.Items[i])
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 01 07:19:44 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  5. src/internal/pkgbits/support.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package pkgbits
    
    import "fmt"
    
    func assert(b bool) {
    	if !b {
    		panic("assertion failed")
    	}
    }
    
    func errorf(format string, args ...any) {
    	panic(fmt.Errorf(format, args...))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 07:36:05 UTC 2022
    - 336 bytes
    - Viewed (0)
  6. pkg/apis/core/install/install_test.go

    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	if version != "10" {
    		t.Errorf("unexpected version %v", version)
    	}
    
    	podList := internal.PodList{ListMeta: metav1.ListMeta{ResourceVersion: "10"}}
    	version, err = meta.NewAccessor().ResourceVersion(&podList)
    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	if version != "10" {
    		t.Errorf("unexpected version %v", version)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 27 06:11:15 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  7. maven-compat/src/test/java/org/apache/maven/artifact/resolver/DefaultArtifactResolverTest.java

            while (tg.getParent() == null) {
                tg = tg.getParent();
            }
    
            ThreadGroup[] tgList = new ThreadGroup[tg.activeGroupCount()];
            tg.enumerate(tgList);
    
            boolean seen = false;
    
            for (ThreadGroup aTgList : tgList) {
                if (!aTgList.getName().equals(DefaultArtifactResolver.DaemonThreadCreator.THREADGROUP_NAME)) {
                    continue;
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/suggest/normalizer/DefaultNormalizerTest.java

                settingsBuilder.put("http.cors.enabled", true);
                settingsBuilder.put("discovery.type", "single-node");
                // settingsBuilder.putList("discovery.seed_hosts", "127.0.0.1:9301");
                // settingsBuilder.putList("cluster.initial_master_nodes", "127.0.0.1:9301");
            }).build(newConfigs().clusterName("DefaultNormalizerTest").numOfNode(1)
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/call.go

    	if sig.variadic {
    		if ddd {
    			// variadic_func(a, b, c...)
    			if len(call.ArgList) == 1 && nargs > 1 {
    				// f()... is not permitted if f() is multi-valued
    				//check.errorf(call.Ellipsis, "cannot use ... with %d-valued %s", nargs, call.ArgList[0])
    				check.errorf(call, InvalidDotDotDot, "cannot use ... with %d-valued %s", nargs, call.ArgList[0])
    				return
    			}
    		} else {
    			// variadic_func(a, b, c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  10. test-site/app/Global.java

                settingsBuilder.put("index.number_of_shards", 1);
                settingsBuilder.put("index.number_of_replicas", 0);
                settingsBuilder.putList("discovery.seed_hosts", "127.0.0.1:9301");
                settingsBuilder.putList("cluster.initial_master_nodes", "127.0.0.1:9301");
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Sat Feb 23 14:02:03 UTC 2019
    - 2.2K bytes
    - Viewed (0)
Back to top