Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for tid1 (0.13 sec)

  1. src/cmd/go/internal/modload/load.go

    // module that would resolve any remaining missing package.
    //
    // If the main module is “tidy” (that is, if "go mod tidy" is a no-op for it)
    // and all requested packages are in "all", then loading completes in a single
    // iteration.
    // TODO(bcmills): We should also be able to load in a single iteration if the
    // requested packages all come from modules that are themselves tidy, regardless
    // of whether those packages are in "all". Today, that requires two iterations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/buildlist.go

    					roots = append(roots, m)
    					pathIsRoot[m.Path] = true
    				}
    			}
    		}
    
    		if len(roots) > len(tidy.rootModules) {
    			gover.ModSort(roots)
    			tidy = newRequirements(pruned, roots, tidy.direct)
    		}
    	}
    
    	roots = tidy.rootModules
    	_, err := tidy.Graph(ctx)
    	if err != nil {
    		return nil, err
    	}
    
    	// We try to avoid adding explicit requirements for test-only dependencies of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. pkg/kubelet/status/status_manager_test.go

    			}
    		})
    	}
    }
    
    func TestSetContainerReadiness(t *testing.T) {
    	cID1 := kubecontainer.ContainerID{Type: "test", ID: "1"}
    	cID2 := kubecontainer.ContainerID{Type: "test", ID: "2"}
    	containerStatuses := []v1.ContainerStatus{
    		{
    			Name:        "c1",
    			ContainerID: cID1.String(),
    			Ready:       false,
    		}, {
    			Name:        "c2",
    			ContainerID: cID2.String(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            given:
            containerSupportsBuildOperations()
    
            UserCodeApplicationId id1 = null
            userCodeApplicationContext.apply(Stub(UserCodeSource)) {
                id1 = it
                container.whenObjectAdded {
                    assert userCodeApplicationContext.current().id == id1
                }
            }
    
            when:
            addToContainer(a)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	reconciler := NewReconciler(
    		reconcilerLoopPeriod, maxWaitForUnmountDuration, syncLoopPeriod, false, false, dsw, asw, ad, nsu, nodeLister, fakeRecorder)
    	podName1 := "pod-uid1"
    	podName2 := "pod-uid2"
    	volumeName := v1.UniqueVolumeName("volume-name")
    	volumeSpec := controllervolumetesting.GetTestVolumeSpec(string(volumeName), volumeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    		return fmt.Sprintf("updates to go.mod needed, disabled by -mod=%v; to update it:\n\tgo mod tidy", cfg.BuildMod)
    	}
    	if cfg.BuildModReason != "" {
    		return fmt.Sprintf("updates to go.mod needed, disabled by -mod=%s\n\t(%s)\n\tto update it:\n\tgo mod tidy", cfg.BuildMod, cfg.BuildModReason)
    	}
    	return "updates to go.mod needed; to update it:\n\tgo mod tidy"
    }
    
    var errGoModDirty error = goModDirtyError{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    	if err != nil {
    		return
    	}
    	if c.id1 != (cache.ActionID{}) {
    		if cache.DebugTest {
    			fmt.Fprintf(os.Stderr, "testcache: %s: save test ID %x => input ID %x => %x\n", a.Package.ImportPath, c.id1, testInputsID, testAndInputKey(c.id1, testInputsID))
    		}
    		cache.PutNoVerify(cache.Default(), c.id1, bytes.NewReader(testlog))
    		cache.PutNoVerify(cache.Default(), testAndInputKey(c.id1, testInputsID), bytes.NewReader(a.TestOutput.Bytes()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. src/internal/trace/order.go

    	if err := validateCtx(curCtx, event.UserGoReqs); err != nil {
    		return curCtx, false, err
    	}
    	tid := TaskID(ev.args[0])
    	nameID := stringID(ev.args[1])
    	name, ok := evt.strings.get(nameID)
    	if !ok {
    		return curCtx, false, fmt.Errorf("invalid string ID %v for %v event", nameID, ev.typ)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    	sid = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Gettid() (tid int) {
    	r0, _ := RawSyscallNoError(SYS_GETTID, 0, 0, 0)
    	tid = int(r0)
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Getxattr(path string, attr string, dest []byte) (sz int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    //sys	isWellKnownSid(sid *SID, sidType WELL_KNOWN_SID_TYPE) (isWellKnown bool) = advapi32.IsWellKnownSid
    //sys	FreeSid(sid *SID) (err error) [failretval!=0] = advapi32.FreeSid
    //sys	EqualSid(sid1 *SID, sid2 *SID) (isEqual bool) = advapi32.EqualSid
    //sys	getSidIdentifierAuthority(sid *SID) (authority *SidIdentifierAuthority) = advapi32.GetSidIdentifierAuthority
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top