Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 172 for excluded (0.15 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        }
      }
      if (VLOG_IS_ON(2) && !excludelist.empty()) {
        std::vector<string> vexcludelist(excludelist.begin(), excludelist.end());
        absl::c_sort(vexcludelist);
        VLOG(2) << "XLA clustering will exclude following TF operations from auto "
                   "clustering: "
                << absl::StrJoin(vexcludelist, " ");
      }
      return excludelist;
    }
    
    absl::flat_hash_set<string> GetOrCreateAllowlist() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. src/net/http/request.go

    	// needed.
    	// To prevent DNS rebinding attacks, server Handlers should
    	// validate that the Host header has a value for which the
    	// Handler considers itself authoritative. The included
    	// ServeMux supports patterns registered to particular host
    	// names and thus protects its registered Handlers.
    	//
    	// For client requests, Host optionally overrides the Host
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    		// cgocallback does write SP to switch from the g0 to the curg stack,
    		// but it carefully arranges that during the transition BOTH stacks
    		// have cgocallback frame valid for unwinding through.
    		// So we don't need to exclude it with the other SP-writing functions.
    		flag &^= abi.FuncFlagSPWrite
    	}
    	if isSyscall {
    		// Some Syscall functions write to SP, but they do so only after
    		// saving the entry PC/SP using entersyscall.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    type SPDIT uint32
    
    const (
    	SPDIT_NODRIVER     SPDIT = 0x00000000
    	SPDIT_CLASSDRIVER  SPDIT = 0x00000001
    	SPDIT_COMPATDRIVER SPDIT = 0x00000002
    )
    
    // DIGCF flags control what is included in the device information set built by SetupDiGetClassDevs
    type DIGCF uint32
    
    const (
    	DIGCF_DEFAULT         DIGCF = 0x00000001 // only valid with DIGCF_DEVICEINTERFACE
    	DIGCF_PRESENT         DIGCF = 0x00000002
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v2.go

    	if !ver.Valid() {
    		return errors.New("attempted to add invalid version")
    	}
    	encoded, err := ver.MarshalMsg(nil)
    	if err != nil {
    		return err
    	}
    
    	// returns error if we have exceeded configured object max versions
    	if int64(len(x.versions)+1) > globalAPIConfig.getObjectMaxVersions() {
    		return errMaxVersionsExceeded
    	}
    
    	// Add space at the end.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    	//     load = read ... oldmem
    	//   newmem = write ... oldmem
    	//     arg0 = read ... newmem
    	//   target = add arg0 load
    	//
    	// If the argument comes from a different block then we can exclude
    	// it immediately because it must dominate load (which is in the
    	// same block as target).
    	var args []*Value
    	for _, a := range target.Args {
    		if a != load && a.Block.ID == target.Block.ID {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    		length, err := KeyctlBuffer(cmd, id, buffer, 0)
    		if err != nil {
    			return "", err
    		}
    
    		// Check if the data was written
    		if length <= len(buffer) {
    			// Exclude the null terminator
    			return string(buffer[:length-1]), nil
    		}
    
    		// Make a bigger buffer if needed
    		buffer = make([]byte, length)
    	}
    }
    
    // Keyctl commands with special signatures.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge.go

    			if hugePageBelow >= end-run {
    				// We're in danger of breaking apart a huge page since start+size crosses
    				// a huge page boundary and rounding down start to the nearest huge
    				// page boundary is included in the full run we found. Include the entire
    				// huge page in the bound by rounding down to the huge page size.
    				size = size + (start - hugePageBelow)
    				start = hugePageBelow
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. src/html/template/exec_test.go

    	}
    	tmpl := Must(New("tmpl").Parse(`{{template "tmpl" .}}`))
    	err := tmpl.Execute(io.Discard, nil)
    	got := "<nil>"
    	if err != nil {
    		got = err.Error()
    	}
    	const want = "exceeded maximum template depth"
    	if !strings.Contains(got, want) {
    		t.Errorf("got error %q; want %q", got, want)
    	}
    }
    
    func TestAddrOfIndex(t *testing.T) {
    	// golang.org/issue/14916.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top