Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 126 for indices (0.19 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      // This means MutexBase has to be a POD and its member variables
      // have to be public.
     public:
      pthread_mutex_t mutex_;  // The underlying pthread mutex.
      // has_owner_ indicates whether the owner_ field below contains a valid thread
      // ID and is therefore safe to inspect (e.g., to use in pthread_equal()). All
      // accesses to the owner_ field should be protected by a check of this field.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier.go

    			return nil, err
    		}
    	}
    
    	// Configure IPVS timeouts if any one of the timeout parameters have been set.
    	// This is the equivalent to running ipvsadm --set, a value of 0 indicates the
    	// current system timeout should be preserved
    	if tcpTimeout > 0 || tcpFinTimeout > 0 || udpTimeout > 0 {
    		if err := ipvs.ConfigureTimeouts(tcpTimeout, tcpFinTimeout, udpTimeout); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64.rules

            && isInlinableMemmove(dst, src, sz, config)
            && clobber(call)
            => (Move [sz] dst src mem)
    
    // Prefetch instructions (TH specified using aux field)
    // For DCBT Ra,Rb,TH, A value of TH indicates:
    //     0, hint this cache line will be used soon. (PrefetchCache)
    //     16, hint this cache line will not be used for long. (PrefetchCacheStreamed)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  4. src/runtime/map.go

    	// during map writes and thus no one else can observe the map during that time).
    	emptyRest      = 0 // this cell is empty, and there are no more non-empty cells at higher indexes or overflows.
    	emptyOne       = 1 // this cell is empty
    	evacuatedX     = 2 // key/elem is valid.  Entry has been evacuated to first half of larger table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool.go

    		}
    	}
    
    	result := HealthResult{
    		Healthy:       true,
    		HealthyRead:   true,
    		WriteQuorum:   maximumWriteQuorum,
    		ReadQuorum:    maximumReadQuorum,
    		UsingDefaults: usingDefaults, // indicates if config was not initialized and we are using defaults on this node.
    	}
    
    	for poolIdx := range erasureSetUpCount {
    		for setIdx := range erasureSetUpCount[poolIdx] {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.h

    // `oper` and `num_dims` with the corresponding number of dimensions. On return,
    // for every i where `num_dims[i]` > 0, `dims[i]` will be an array of
    // `num_dims[i]` elements. A value of -1 for `num_dims[i]` indicates that the
    // i-th shape in the list is unknown.
    //
    // The elements of `dims` will point to addresses in `storage` which must be
    // large enough to hold at least `storage_size` int64_ts.  Ideally, `num_shapes`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof_test.go

    	}
    
    	// Ignore the failure if the tests are running in a QEMU-based emulator,
    	// QEMU is not perfect at emulating everything.
    	// IN_QEMU environmental variable is set by some of the Go builders.
    	// IN_QEMU=1 indicates that the tests are running in QEMU. See issue 9605.
    	if os.Getenv("IN_QEMU") == "1" {
    		t.Skip("ignore the failure in QEMU; see golang.org/issue/9605")
    	}
    	t.FailNow()
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    		}
    		b = b[1:]
    		i %= d
    	}
    	return string(buf)
    }
    
    func printBool(b bool) string {
    	if b {
    		return "true"
    	}
    	return "false"
    }
    
    var (
    	// ErrNotStarted indicates that the prerequisite information isn't
    	// available yet because the previous records haven't been appropriately
    	// parsed, skipped or finished.
    	ErrNotStarted = errors.New("parsing/packing of this type isn't available yet")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    	"math/bits"
    	"os"
    	"path/filepath"
    	"strings"
    )
    
    type deadValueChoice bool
    
    const (
    	leaveDeadValues  deadValueChoice = false
    	removeDeadValues                 = true
    )
    
    // deadcode indicates whether rewrite should try to remove any values that become dead.
    func applyRewrite(f *Func, rb blockRewriter, rv valueRewriter, deadcode deadValueChoice) {
    	// repeat rewrites until we find no more rewrites
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. src/go/parser/parser.go

    			if p.pos == p.syncPos && p.syncCnt < 10 {
    				p.syncCnt++
    				return
    			}
    			if p.pos > p.syncPos {
    				p.syncPos = p.pos
    				p.syncCnt = 0
    				return
    			}
    			// Reaching here indicates a parser bug, likely an
    			// incorrect token list in this function, but it only
    			// leads to skipping of possibly correct code if a
    			// previous error is present, and thus is preferred
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
Back to top