Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for setnle (0.11 sec)

  1. pilot/pkg/xds/discovery.go

    	// This will delay the push by at least this interval, plus
    	// the time getting subsequent events. If no change is
    	// detected the push will happen, otherwise we'll keep
    	// delaying until things settle.
    	DebounceAfter time.Duration
    
    	// debounceMax is the maximum time to wait for events
    	// while debouncing. Defaults to 10 seconds. If events keep
    	// showing up with no break for this time, we'll trigger a push.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    	vs := ValueOf(&xs).Elem()
    	shouldPanic("SetLen", func() { vs.SetLen(10) })
    	shouldPanic("SetCap", func() { vs.SetCap(10) })
    	shouldPanic("SetLen", func() { vs.SetLen(-1) })
    	shouldPanic("SetCap", func() { vs.SetCap(-1) })
    	shouldPanic("SetCap", func() { vs.SetCap(6) }) // smaller than len
    	vs.SetLen(5)
    	if len(xs) != 5 || cap(xs) != 8 {
    		t.Errorf("after SetLen(5), len, cap = %d, %d, want 5, 8", len(xs), cap(xs))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

      if (func_uses.has_value() && llvm::hasSingleElement(func_uses.value()))
        return func;
      func::FuncOp cloned = func.clone();
      cloned.setPrivate();
      cloned.setName(
          StringAttr::get(func.getContext(), func.getName().str() + "_lifted"));
      SymbolTable(module).insert(cloned);
      return cloned;
    }
    
    // Eliminates unused results for If/Case operations. Also patches up the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	ECONNREFUSED       = Errno(1128)
    	EHOSTDOWN          = Errno(1129)
    	EHOSTUNREACH       = Errno(1130)
    	EPROCLIM           = Errno(1131)
    	EUSERS             = Errno(1132)
    	EDQUOT             = Errno(1133)
    	ESTALE             = Errno(1134)
    	EREMOTE            = Errno(1135)
    	ENOSTR             = Errno(1136)
    	ETIME              = Errno(1137)
    	ENOSR              = Errno(1138)
    	ENOMSG             = Errno(1139)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

        auto clone = func.clone();
        if (clone.getName() == entry_func.getName()) {
          // We can simply change name of TPU program's main function because there
          // should be no other reference to it.
          clone.setName(StringAttr::get(clone.getContext(), "main"));
          clone.setPublic();
        } else {
          clone.setPrivate();
        }
        symbol_table.insert(clone);
      }
    
      *serialized_func_module =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. src/syscall/zerrors_solaris_amd64.go

    	EROFS           = Errno(0x1e)
    	ESHUTDOWN       = Errno(0x8f)
    	ESOCKTNOSUPPORT = Errno(0x79)
    	ESPIPE          = Errno(0x1d)
    	ESRCH           = Errno(0x3)
    	ESRMNT          = Errno(0x45)
    	ESTALE          = Errno(0x97)
    	ESTRPIPE        = Errno(0x5c)
    	ETIME           = Errno(0x3e)
    	ETIMEDOUT       = Errno(0x91)
    	ETOOMANYREFS    = Errno(0x90)
    	ETXTBSY         = Errno(0x1a)
    	EUNATCH         = Errno(0x2a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  7. src/net/lookup_test.go

    		// to check for cancellation on the fast path.
    		// (For example, it could use a local cache to avoid blocking entirely.)
    
    		// The lookup may deduplicate in-flight requests, so give it time to settle
    		// in between.
    		time.Sleep(time.Millisecond * 1)
    	}
    
    	_, err = LookupHost(google)
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    type lookupCustomResolver struct {
    	*Resolver
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    	{ASETGT, yscond, Pb, opBytes{0x0f, 0x9f, 00}},
    	{ASETHI, yscond, Pb, opBytes{0x0f, 0x97, 00}},
    	{ASETLE, yscond, Pb, opBytes{0x0f, 0x9e, 00}},
    	{ASETLS, yscond, Pb, opBytes{0x0f, 0x96, 00}},
    	{ASETLT, yscond, Pb, opBytes{0x0f, 0x9c, 00}},
    	{ASETMI, yscond, Pb, opBytes{0x0f, 0x98, 00}},
    	{ASETNE, yscond, Pb, opBytes{0x0f, 0x95, 00}},
    	{ASETOC, yscond, Pb, opBytes{0x0f, 0x91, 00}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/opGen.go

    	},
    	{
    		name:   "SETLE",
    		argLen: 1,
    		asm:    x86.ASETLE,
    		reg: regInfo{
    			outputs: []outputInfo{
    				{0, 239}, // AX CX DX BX BP SI DI
    			},
    		},
    	},
    	{
    		name:   "SETG",
    		argLen: 1,
    		asm:    x86.ASETGT,
    		reg: regInfo{
    			outputs: []outputInfo{
    				{0, 239}, // AX CX DX BX BP SI DI
    			},
    		},
    	},
    	{
    		name:   "SETGE",
    		argLen: 1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

      local actual_device
      mountpoint="$1"
      actual_device="$2"
    
      # Trigger udev refresh so that newly formatted devices are propagated in by-uuid
      udevadm control --reload-rules
      udevadm trigger
      udevadm settle
    
      # find uuid for actual_device
      local myuuid
      myuuid=$(find -L /dev/disk/by-uuid -maxdepth 1 -samefile /dev/"${actual_device}" -printf '%P')
      # myuuid should be the uuid of the device as found in /dev/disk/by-uuid/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top