Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 151 for oldR (0.08 sec)

  1. src/cmd/dist/build.go

    	}
    	xmkdirall(tooldir)
    
    	// Remove tool binaries from before the tool/gohostos_gohostarch
    	xremoveall(pathf("%s/bin/tool", goroot))
    
    	// Remove old pre-tool binaries.
    	for _, old := range oldtool {
    		xremove(pathf("%s/bin/%s", goroot, old))
    	}
    
    	// Special release-specific setup.
    	if isRelease {
    		// Make sure release-excluded things are excluded.
    		for _, dir := range unreleased {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. tests/integration/ambient/baseline_test.go

    		runTestContext(t, func(t framework.TestContext, src echo.Instance, dst echo.Instance, opt echo.CallOptions) {
    			if opt.Scheme != scheme.TCP {
    				return
    			}
    			// Ensure we don't get stuck on old connections with old RBAC rules. This causes 45s test times
    			// due to draining.
    			opt.NewConnectionPerRequest = true
    
    			t.NewSubTest("permissive").Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/buildlist.go

    func tidyPrunedRoots(ctx context.Context, mainModule module.Version, old *Requirements, pkgs []*loadPkg) (*Requirements, error) {
    	var (
    		roots      []module.Version
    		pathIsRoot = map[string]bool{mainModule.Path: true}
    	)
    	if v, ok := old.rootSelected("go"); ok {
    		roots = append(roots, module.Version{Path: "go", Version: v})
    		pathIsRoot["go"] = true
    	}
    	if v, ok := old.rootSelected("toolchain"); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. src/os/os_test.go

    	switch err := err.(type) {
    	case *LinkError:
    		if err.Op != "link" {
    			t.Errorf("Link(%q, %q) err.Op = %q; want %q", to, from, err.Op, "link")
    		}
    		if err.Old != to {
    			t.Errorf("Link(%q, %q) err.Old = %q; want %q", to, from, err.Old, to)
    		}
    		if err.New != from {
    			t.Errorf("Link(%q, %q) err.New = %q; want %q", to, from, err.New, from)
    		}
    		if !IsExist(err.Err) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  5. pkg/controller/endpointslice/endpointslice_controller_test.go

    				time.Sleep(update.delay)
    
    				old, exists, err := esController.podStore.GetByKey(fmt.Sprintf("%s/%s", ns, update.podName))
    				assert.Nil(t, err, "error while retrieving old value of %q: %v", update.podName, err)
    				assert.Equal(t, true, exists, "pod should exist")
    				esController.podStore.Delete(old)
    				esController.deletePod(old)
    			}
    
    			time.Sleep(tc.finalDelay)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    // flags were newly-set.
    func (af *atomicLoadPkgFlags) update(flags loadPkgFlags) (old loadPkgFlags) {
    	for {
    		old := af.bits.Load()
    		new := old | int32(flags)
    		if new == old || af.bits.CompareAndSwap(old, new) {
    			return loadPkgFlags(old)
    		}
    	}
    }
    
    // has reports whether all of the flags in cond are set in af.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	}
    
    	return testContext
    }
    
    func attributeRecord(
    	old, new runtime.Object,
    	operation admission.Operation,
    ) *FakeAttributes {
    	if old == nil && new == nil {
    		panic("both `old` and `new` may not be nil")
    	}
    
    	// one of old/new may be nil, but not both
    	example := new
    	if example == nil {
    		example = old
    	}
    
    	accessor, err := meta.Accessor(example)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    				Obj: scheduling,
    			},
    			expectedHint: framework.QueueSkip,
    		},
    		"backoff-wrong-old-object": {
    			pod:         podWithClaimTemplate,
    			oldObj:      "not-a-scheduling-context",
    			newObj:      scheduling,
    			expectedErr: true,
    		},
    		"backoff-missed-wrong-old-object": {
    			pod: podWithClaimTemplate,
    			oldObj: cache.DeletedFinalStateUnknown{
    				Obj: "not-a-scheduling-context",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  9. pkg/controller/endpoint/endpoints_controller_test.go

    				time.Sleep(update.delay)
    
    				old, exists, err := endpoints.podStore.GetByKey(fmt.Sprintf("%s/%s", ns, update.podName))
    				if err != nil {
    					t.Fatalf("Error while retrieving old value of %q: %v", update.podName, err)
    				}
    				if !exists {
    					t.Fatalf("Pod %q doesn't exist", update.podName)
    				}
    				endpoints.podStore.Delete(old)
    				endpoints.deletePod(old)
    			}
    
    			time.Sleep(tc.finalDelay)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        @Override
        Listener gasListeners(AbstractFuture<?> future, Listener update) {
          synchronized (future) {
            Listener old = future.listeners;
            if (old != update) {
              future.listeners = update;
            }
            return old;
          }
        }
    
        /** Performs a GAS operation on the {@link #waiters} field. */
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
Back to top