Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for tid1 (0.06 sec)

  1. pkg/test/framework/suite_test.go

    	}
    
    	var exit2Called bool
    	var errCode2 int
    	exitFn2 := func(errCode int) {
    		exit2Called = true
    		errCode2 = errCode
    	}
    
    	s := newTestSuite("tid1", runFn1, exitFn1, defaultSettingsFn)
    
    	s2 := newTestSuite("tid2", runFn2, exitFn2, defaultSettingsFn)
    
    	go s.Run()
    	waitForRun1.Wait()
    
    	s2.Run()
    	waitForTestCompletion.Done()
    	waitForExit1Call.Wait()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	QUIESCE_UNFREEZE   int32 = 5
    	FREEZE_THIS_THREAD int32 = 6
    	FREEZE_EXIT        int32 = 8
    	QUIESCE_SRB        int32 = 9
    )
    
    type Pgtha struct {
    	Pid        uint32 // 0
    	Tid0       uint32 // 4
    	Tid1       uint32
    	Accesspid  byte    // C
    	Accesstid  byte    // D
    	Accessasid uint16  // E
    	Loginname  [8]byte // 10
    	Flag1      byte    // 18
    	Flag1b2    byte    // 19
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. hack/update-vendor.sh

            | xargs -L 100 go mod edit
      )
    done
    
    
    # Phase 5: sort and tidy staging components
    
    kube::log::status "go.mod: sorting staging modules" >&11
    # tidy staging repos in reverse dependency order.
    # the content of dependencies' go.mod files affects what `go mod tidy` chooses to record in a go.mod file.
    tidy_unordered="${TMP_DIR}/tidy_unordered.txt"
    kube::util::list_staging_repos \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. src/cmd/go/script_test.go

    		}
    	}
    	if gomodIdx < 0 {
    		return false
    	}
    
    	var cmd string
    	switch *testSum {
    	case "tidy":
    		cmd = "go mod tidy"
    	case "listm":
    		cmd = "go list -m -mod=mod all"
    	case "listall":
    		cmd = "go list -mod=mod all"
    	default:
    		t.Fatalf(`unknown value for -testsum %q; may be "tidy", "listm", or "listall"`, *testSum)
    	}
    
    	log := new(strings.Builder)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. pkg/scheduler/extender_test.go

    					Pods: []*extenderv1.MetaPod{
    						{UID: "uid1"},
    						{UID: "uid3"},
    					},
    					NumPDBViolations: 1,
    				},
    				"node2": {
    					Pods: []*extenderv1.MetaPod{
    						{UID: "uid2"},
    						{UID: "uid4"},
    					},
    					NumPDBViolations: 2,
    				},
    			},
    			nodeNames: []string{"node1", "node2"},
    			podsInNodeList: []*v1.Pod{
    				st.MakePod().Name("pod1").UID("uid1").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. src/cmd/internal/moddeps/moddeps_test.go

    				t.Logf("(Run 'go mod tidy' in %s to ensure that no extraneous dependencies were added, or 'go mod vendor' to copy in imported packages.)", m.Dir)
    			}
    		})
    	}
    
    	// We now get to the slow, but more thorough part of the test.
    	// Only run it in long test mode.
    	if testing.Short() {
    		return
    	}
    
    	// Ensure that all modules within GOROOT are tidy, vendored, and bundled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/dra/claiminfo_test.go

    					"test-plugin1": {
    						{
    							Name:  "cdi.k8s.io/test-plugin1_claim-uid1",
    							Value: "vendor.com/device=device1",
    						},
    						{
    							Name:  "cdi.k8s.io/test-plugin1_claim-uid2",
    							Value: "vendor.com/device=device2",
    						},
    					},
    					"test-plugin2": {
    						{
    							Name:  "cdi.k8s.io/test-plugin2_claim-uid1",
    							Value: "vendor.com/device=device1",
    						},
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. tensorflow/cc/saved_model/fingerprinting.cc

    namespace tensorflow::saved_model::fingerprinting {
    
    namespace {
    
    using ::tensorflow::protobuf::Map;
    // NOLINTNEXTLINE: clang-tidy missing-includes false positive
    using ::tensorflow::protobuf::io::CodedOutputStream;
    // NOLINTNEXTLINE: clang-tidy missing-includes false positive
    using ::tensorflow::protobuf::io::StringOutputStream;
    
    // TODO(b/290063184): remove when USM is GA
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 26 00:24:44 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/fingerprinting_utils_test.cc

    using ::tensorflow::protobuf::Message;
    using ::tensorflow::protobuf::RepeatedPtrField;
    using ::tensorflow::protobuf::TextFormat;
    // NOLINTNEXTLINE: clang-tidy missing-includes false positive
    using ::tensorflow::protobuf::io::ArrayInputStream;
    // NOLINTNEXTLINE: clang-tidy missing-includes false positive
    using ::tensorflow::protobuf::util::MessageDifferencer;
    using tools::proto_splitter::GetChunkMetadata;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/builder_test.go

    		},
    		{
    			name:     "trust-domain-one-alias",
    			tdBundle: trustdomain.NewBundle("td1", []string{"cluster.local"}),
    			input:    "simple-policy-td-aliases-in.yaml",
    			want:     []string{"simple-policy-td-aliases-out.yaml"},
    		},
    		{
    			name:     "trust-domain-multiple-aliases",
    			tdBundle: trustdomain.NewBundle("td1", []string{"cluster.local", "some-td"}),
    			input:    "simple-policy-multiple-td-aliases-in.yaml",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top