Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for closeDot (0.29 sec)

  1. guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

        assertInterrupted();
      }
    
      public void testJoinTimeoutMultiInterruptExpired() {
        /*
         * We don't "need" to schedule a thread completion at all here, but by doing
         * so, we come the closest we can to testing that the wait time is
         * appropriately decreased on each progressive join() call.
         */
        TimedThread thread = TimedThread.createWithDelay(LONG_DELAY_MS);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 16:06:39 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    			continue
    		}
    		addVarSlot(inp.Name, inp.Type)
    		params = append(params, inp)
    	}
    	if needCloCtx {
    		addVarSlot(f.CloSlot, f.CloSlot.Type())
    		cloAssign := abi.ABIParamAssignment{
    			Type:      f.CloSlot.Type(),
    			Name:      f.CloSlot,
    			Registers: []abi.RegIndex{0}, // dummy
    		}
    		params = append(params, cloAssign)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. schema/schema.go

    	if field, ok := schema.FieldsByDBName[name]; ok {
    		return field
    	}
    	if field, ok := schema.FieldsByName[name]; ok {
    		return field
    	}
    	return nil
    }
    
    // LookUpFieldByBindName looks for the closest field in the embedded struct.
    //
    //	type Struct struct {
    //		Embedded struct {
    //			ID string // is selected by LookUpFieldByBindName([]string{"Embedded", "ID"}, "ID")
    //		}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/func.go

    	RegArgs []Spill
    	// OwnAux describes parameters and results for this function.
    	OwnAux *AuxCall
    	// CloSlot holds the compiler-synthesized name (".closureptr")
    	// where we spill the closure pointer for range func bodies.
    	CloSlot *ir.Name
    
    	freeValues *Value // free Values linked by argstorage[0].  All other fields except ID are 0/nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    			sym := &types.Sym{Name: ".closureptr", Pkg: types.LocalPkg}
    			cloSlot := s.curfn.NewLocal(src.NoXPos, sym, s.f.Config.Types.BytePtr)
    			cloSlot.SetUsed(true)
    			cloSlot.SetEsc(ir.EscNever)
    			cloSlot.SetAddrtaken(true)
    			s.f.CloSlot = cloSlot
    			s.vars[memVar] = s.newValue1Apos(ssa.OpVarDef, types.TypeMem, cloSlot, s.mem(), false)
    			addr := s.addr(cloSlot)
    			s.store(s.f.Config.Types.BytePtr, addr, clo)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

      local devel=""
      if [[ "${gitref}" != "${version}" ]]; then
        devel="
    Note: This looks like a development version, which might not be present on GitHub.
    If it isn't, the closest tag is at:
      https://github.com/kubernetes/kubernetes/tree/${gitref}
    "
        gitref="${version//*+/}"
      fi
      cat > /etc/motd <<EOF
    
    Welcome to Kubernetes ${version}!
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
    }
    
    def TF_RintOp : TF_Op<"Rint", [Pure, TF_Idempotent, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Returns element-wise integer closest to x.";
    
      let description = [{
    If the result is midway between two representable values,
    the even representable is chosen.
    For example:
    
    ```
    rint(-1.5) ==> -2.0
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top