Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 154 for oldR (0.05 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      func::FuncOp lifted_callee;
      // Mapping from old resource outputs to their aliasing output inputs.
      llvm::SmallDenseMap<int64_t, int64_t> old_outputs_aliasing_old_inputs;
      // Mapping from old to new output indices in case any output is removed.
      llvm::SmallVector<int64_t, 4> old_to_new_output_indices;
      // ResourceArgUseInfo for each old resource argument.
      llvm::SmallDenseMap<int64_t, ResourceArgUseInfo> use_info;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K 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. 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)
  6. 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)
  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. 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
    - 62.8K bytes
    - Viewed (1)
  9. 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)
  10. 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)
Back to top