Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 92 for DELETE (0.15 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/header.html

      </div>
    </div>
    
    <div class="dialog" id="delete-dialog">
      <div class="dialog-header" id="delete-dialog-title">Delete config</div>
      <div id="delete-prompt"></div>
      <div class="dialog-footer">
        <span class="dialog-error" id="delete-error"></span>
        <button id="delete-cancel">Cancel</button>
        <button id="delete-confirm">Delete</button>
      </div>
    </div>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. test/codegen/maps.go

    	for k := range m {
    		delete(m, k)
    	}
    }
    
    func MapClearNotReflexive(m map[float64]int) {
    	// amd64:`.*runtime\.mapiterinit`
    	// amd64:-`.*runtime\.mapclear`
    	for k := range m {
    		delete(m, k)
    	}
    }
    
    func MapClearInterface(m map[interface{}]int) {
    	// amd64:`.*runtime\.mapiterinit`
    	// amd64:-`.*runtime\.mapclear`
    	for k := range m {
    		delete(m, k)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 23 15:51:32 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. src/runtime/cgo/handle.go

    //		val := h.Value().(string)
    //		println(val)
    //		h.Delete()
    //	}
    //
    //	func main() {
    //		val := "hello Go"
    //		h := cgo.NewHandle(val)
    //		C.myprint(unsafe.Pointer(&h))
    //		// Output: hello Go
    //	}
    type Handle uintptr
    
    // NewHandle returns a handle for a given value.
    //
    // The handle is valid until the program calls Delete on it. The handle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. src/sync/map_reference_test.go

    	m.mu.Lock()
    	value, loaded = m.dirty[key]
    	if !loaded {
    		m.mu.Unlock()
    		return nil, false
    	}
    	delete(m.dirty, key)
    	m.mu.Unlock()
    	return value, loaded
    }
    
    func (m *RWMutexMap) Delete(key any) {
    	m.mu.Lock()
    	delete(m.dirty, key)
    	m.mu.Unlock()
    }
    
    func (m *RWMutexMap) CompareAndSwap(key, old, new any) (swapped bool) {
    	m.mu.Lock()
    	defer m.mu.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 15:34:22 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. test/typeparam/builtins.go

    func f4[T C5[X], X any](ch T) {
    	close(ch)
    }
    
    // delete
    
    type M0 interface{ int }
    type M1 interface{ map[string]int }
    type M2 interface {
    	map[string]int | map[string]float64
    }
    type M3 interface{ map[string]int | map[rune]int }
    type M4[K comparable, V any] interface{ map[K]V | map[rune]V }
    
    func g1[T M1](m T) {
    	delete(m, "foo")
    }
    
    func g2[T M2](m T) {
    	delete(m, "foo")
    }
    
    func g3[T M4[rune, V], V any](m T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 09:04:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/builtins1.go

    func _[T M1](m T) {
    	delete(m, "foo")
    }
    
    func _[T M2](m T) {
    	delete(m, "foo")
    	delete(m, 0 /* ERRORx `cannot use .* as string` */)
    }
    
    func _[T M3](m T) {
    	delete(m /* ERROR "must have identical key types" */, "foo")
    }
    
    func _[T M4[rune, V], V any](m T) {
    	delete(m, 'k')
    }
    
    func _[T M4[K, V], K comparable, V any](m T) {
    	delete(m /* ERROR "must have identical key types" */, "foo")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 21:16:29 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_clean_cache.txt

    replace example.com/r/replaced => ../replaced
    -- r/r.go --
    package r
    import _ "example.com/r/replaced"
    -- r/test.out --
    DELETE ME
    
    -- replaced/go.mod --
    module example.com/r/replaced
    -- replaced/replaced.go --
    package replaced
    -- replaced/test.out --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/flagdefs_test.go

    			missing[name] = true
    		}
    	}
    	if len(missing) > 0 {
    		t.Errorf("passFlagToTest is missing entries: %v", missing)
    	}
    
    	extra := maps.Clone(passFlagToTest)
    	for _, name := range wantNames {
    		delete(extra, name)
    	}
    	if len(extra) > 0 {
    		t.Errorf("passFlagToTest contains extra entries: %v", extra)
    	}
    
    	if t.Failed() {
    		t.Logf("To regenerate:\n\tgo generate cmd/go/internal/test")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 09 13:37:58 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_fuzz_cache.txt

    go test -fuzz=FuzzY -fuzztime=100x .
    go run ./contains_files $GOCACHE/fuzz/example.com/y/FuzzY
    
    # 'go clean -cache' should not delete the fuzz cache.
    go clean -cache
    exists $GOCACHE/fuzz
    
    # 'go clean -fuzzcache' should delete the fuzz cache but not the build cache.
    go build -x ./empty
    stderr '(compile|gccgo)( |\.exe).*empty.go'
    go clean -fuzzcache
    ! exists $GOCACHE/fuzz
    go build -x ./empty
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/util.go

    	if nerrors > 20 {
    		Exitf("too many errors")
    	}
    }
    
    // Errorf logs an error message.
    //
    // If more than 20 errors have been printed, exit with an error.
    //
    // Logging an error means that on exit cmd/link will delete any
    // output file and return a non-zero error code.
    //
    // TODO: remove. Use ctxt.Errorf instead.
    // All remaining calls use nil as first arg.
    func Errorf(dummy *int, format string, args ...interface{}) {
    	format += "\n"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 20:39:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top